From a6eac1abd65a9a19bb61627f025b6fb848ac2a75 Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Fri, 26 Jul 2019 17:04:38 -0600 Subject: [PATCH] Parallel distributed: Communicate active_fe_indices after refinement. --- source/hp/dof_handler.cc | 4 ++++ 1 file changed, 4 insertions(+) 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(); } -- 2.39.5