From: Marc Fehling Date: Sat, 22 Apr 2023 04:35:48 +0000 (-0600) Subject: Added changelog for #14866. X-Git-Tag: v9.5.0-rc1~293^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d9f86a4ea68b9323a8f74b6f34ca85e82ffbaab;p=dealii.git Added changelog for #14866. --- diff --git a/doc/news/changes/minor/20230421Fehling b/doc/news/changes/minor/20230421Fehling new file mode 100644 index 0000000000..eda51d4703 --- /dev/null +++ b/doc/news/changes/minor/20230421Fehling @@ -0,0 +1,11 @@ +Fixed: Consider the following scenario: You initialize a DoFHandler with a +parallel::distributed::Triangulation, and afterwards you want to create the +Triangulation by calling Triangulation::create_triangulation() that takes a +TriangulationDescription::Description as an argument. This caused an issue +as the active FE tables of the DoFHandler have not been properly updated +during the creation of the Triangulation. This is fixed now by treating the +resulting Triangultion as a 'fresh' one by triggering Triangulation::Signals::create +at the end of Triangulation::create_triangulation(), which in turn +reinitializes the DoFHandler. +
+(Marc Fehling, 2023/04/21)