From: Marc Fehling Date: Mon, 4 Mar 2019 21:39:52 +0000 (+0100) Subject: Call post_distributed signals in the end of 'execute_coarsening_and_refinement' and... X-Git-Tag: v9.1.0-rc1~293^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7776%2Fhead;p=dealii.git Call post_distributed signals in the end of 'execute_coarsening_and_refinement' and 'repartition'. --- 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(); }