From: Pasquale Africa Date: Sun, 31 Jan 2021 17:02:46 +0000 (+0000) Subject: Fix missing call to update_cell_relations() X-Git-Tag: v9.3.0-rc1~529^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11657%2Fhead;p=dealii.git Fix missing call to update_cell_relations() --- diff --git a/source/distributed/fully_distributed_tria.cc b/source/distributed/fully_distributed_tria.cc index e01ea7cd48..5a964891fb 100644 --- a/source/distributed/fully_distributed_tria.cc +++ b/source/distributed/fully_distributed_tria.cc @@ -207,7 +207,7 @@ namespace parallel } this->update_number_cache(); - // this->update_cell_relations(); + this->update_cell_relations(); }