From: Marco Feder Date: Sat, 4 Jan 2025 23:16:55 +0000 (+0000) Subject: Fix assert on distributed tria X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e1f917f8a11163ff56445b74ea3503a9776da30;p=dealii.git Fix assert on distributed tria --- diff --git a/source/non_matching/coupling.cc b/source/non_matching/coupling.cc index 33887b681c..8a1e65c6a3 100644 --- a/source/non_matching/coupling.cc +++ b/source/non_matching/coupling.cc @@ -221,7 +221,7 @@ namespace NonMatching ExcNotImplemented()); const bool tria_is_parallel = - (dynamic_cast *>( + (dynamic_cast *>( &space_dh.get_triangulation()) != nullptr); const auto &space_fe = space_dh.get_fe(); const auto &immersed_fe = immersed_dh.get_fe(); @@ -411,7 +411,7 @@ namespace NonMatching ExcNotImplemented()); const bool tria_is_parallel = - (dynamic_cast *>( + (dynamic_cast *>( &space_dh.get_triangulation()) != nullptr); const auto &space_fe = space_dh.get_fe();