We changed the datatype of serialized fe indices.
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() << " "
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!"));
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams