From: Marc Fehling Date: Fri, 26 Jul 2019 23:04:38 +0000 (-0600) Subject: Parallel distributed: Communicate active_fe_indices after refinement. X-Git-Tag: v9.2.0-rc1~1346^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8422%2Fhead;p=dealii.git Parallel distributed: Communicate active_fe_indices after refinement. --- diff --git a/source/hp/dof_handler.cc b/source/hp/dof_handler.cc index a94637d7af..45c7db666d 100644 --- a/source/hp/dof_handler.cc +++ b/source/hp/dof_handler.cc @@ -2149,6 +2149,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(); }