From: Marc Fehling Date: Tue, 18 Oct 2022 19:38:10 +0000 (-0600) Subject: Bump distributed serialization version from 4 to 5. X-Git-Tag: v9.5.0-rc1~892^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1585147c394c3ac5181c449540768f3edba8ffa;p=dealii.git Bump distributed serialization version from 4 to 5. We changed the datatype of serialized fe indices. --- diff --git a/source/distributed/tria.cc b/source/distributed/tria.cc index 3b924636cc..b5af14046c 100644 --- a/source/distributed/tria.cc +++ b/source/distributed/tria.cc @@ -2022,7 +2022,7 @@ namespace parallel std::ofstream f(fname.c_str()); f << "version nproc n_attached_fixed_size_objs n_attached_variable_size_objs n_coarse_cells" << std::endl - << 4 << " " + << 5 << " " << Utilities::MPI::n_mpi_processes(this->mpi_communicator) << " " << this->cell_attached_data.pack_callbacks_fixed.size() << " " << this->cell_attached_data.pack_callbacks_variable.size() << " " @@ -2097,7 +2097,7 @@ namespace parallel attached_count_variable >> n_coarse_cells; } - AssertThrow(version == 4, + AssertThrow(version == 5, ExcMessage("Incompatible version found in .info file.")); Assert(this->n_cells(0) == n_coarse_cells, ExcMessage("Number of coarse cells differ!"));