From: Marc Fehling Date: Thu, 11 Jul 2019 09:20:30 +0000 (+0200) Subject: Parallel distributed: Communicate active_fe_indices after deserialization. X-Git-Tag: v9.2.0-rc1~1252^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=321279d494956bae04ebdda4b663d27e8cd21403;p=dealii.git Parallel distributed: Communicate active_fe_indices after deserialization. --- diff --git a/source/hp/dof_handler.cc b/source/hp/dof_handler.cc index 45c7db666d..8c04804bba 100644 --- a/source/hp/dof_handler.cc +++ b/source/hp/dof_handler.cc @@ -2281,6 +2281,10 @@ namespace hp // Update all locally owned active_fe_indices. set_active_fe_indices(active_fe_index_transfer->active_fe_indices); + // Update active_fe_indices on ghost cells. + dealii::internal::hp::DoFHandlerImplementation::Implementation:: + communicate_active_fe_indices(*this); + // Free memory. active_fe_index_transfer.reset(); }