From 514aff2d48c675ca4e0aa10eeb796414207b5e51 Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Mon, 4 Mar 2019 22:39:52 +0100 Subject: [PATCH] Call post_distributed signals in the end of 'execute_coarsening_and_refinement' and 'repartition'. --- source/distributed/tria.cc | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/source/distributed/tria.cc b/source/distributed/tria.cc index 7541203735..f814270c31 100644 --- a/source/distributed/tria.cc +++ b/source/distributed/tria.cc @@ -4059,12 +4059,10 @@ namespace parallel this->update_number_cache(); - // signal that refinement is finished, - // this is triggered before update_periodic_face_map - // to be consistent with the serial triangulation class - this->signals.post_distributed_refinement(); - this->update_periodic_face_map(); + + // signal that refinement is finished + this->signals.post_distributed_refinement(); } @@ -4164,12 +4162,10 @@ namespace parallel // update how many cells, edges, etc, we store locally this->update_number_cache(); - // signal that repartitioning is finished, - // this is triggered before update_periodic_face_map - // to be consistent with the serial triangulation class - this->signals.post_distributed_repartition(); - this->update_periodic_face_map(); + + // signal that repartitioning is finished + this->signals.post_distributed_repartition(); } -- 2.39.5