From d1585147c394c3ac5181c449540768f3edba8ffa Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Tue, 18 Oct 2022 13:38:10 -0600 Subject: [PATCH] Bump distributed serialization version from 4 to 5. We changed the datatype of serialized fe indices. --- source/distributed/tria.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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!")); -- 2.39.5