From 321279d494956bae04ebdda4b663d27e8cd21403 Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Thu, 11 Jul 2019 11:20:30 +0200 Subject: [PATCH] Parallel distributed: Communicate active_fe_indices after deserialization. --- 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 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(); } -- 2.39.5