From: Marc Fehling Date: Wed, 7 Jul 2021 06:09:22 +0000 (-0600) Subject: tests: simplex/step-67: add mapping for non-p4est case X-Git-Tag: v9.4.0-rc1~1152^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1d090aab39005eec2a5f74c6cc719cefc15c750;p=dealii.git tests: simplex/step-67: add mapping for non-p4est case --- diff --git a/tests/simplex/step-67.cc b/tests/simplex/step-67.cc index d0f59b7f03..912b01b910 100644 --- a/tests/simplex/step-67.cc +++ b/tests/simplex/step-67.cc @@ -1901,15 +1901,19 @@ namespace Euler_DG #ifdef DEAL_II_WITH_P4EST # ifdef HEX parallel::distributed::Triangulation triangulation; - MappingQGeneric mapping; # else parallel::fullydistributed::Triangulation triangulation; - MappingFE mapping; # endif #else Triangulation triangulation; #endif +#ifdef HEX + MappingQGeneric mapping; +#else + MappingFE mapping; +#endif + FESystem fe; DoFHandler dof_handler;