From: Martin Kronbichler Date: Wed, 15 Jun 2022 10:45:04 +0000 (+0200) Subject: Also allow FE_RaviartThomasNodal in other project function X-Git-Tag: v9.4.0-rc1~13^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13978%2Fhead;p=dealii.git Also allow FE_RaviartThomasNodal in other project function --- diff --git a/include/deal.II/numerics/vector_tools_boundary.templates.h b/include/deal.II/numerics/vector_tools_boundary.templates.h index 58e7d964fa..ad0a9b9700 100644 --- a/include/deal.II/numerics/vector_tools_boundary.templates.h +++ b/include/deal.II/numerics/vector_tools_boundary.templates.h @@ -2599,7 +2599,9 @@ namespace VectorTools { AssertThrow( dynamic_cast *>( - &cell->get_fe()) != nullptr, + &cell->get_fe()) != nullptr || + dynamic_cast *>( + &cell->get_fe()) != nullptr, typename FiniteElement< dim>::ExcInterpolationNotImplemented()); } @@ -2651,7 +2653,9 @@ namespace VectorTools { AssertThrow( dynamic_cast *>( - &cell->get_fe()) != nullptr, + &cell->get_fe()) != nullptr || + dynamic_cast *>( + &cell->get_fe()) != nullptr, typename FiniteElement< dim>::ExcInterpolationNotImplemented()); }