From efa19afc98fc7d79e21c8c71598399f2d34a6cb7 Mon Sep 17 00:00:00 2001 From: Nils Margenberg Date: Tue, 17 Jan 2023 12:49:38 +0100 Subject: [PATCH] Fix vertex numbering from deal to UCD --- include/deal.II/base/geometry_info.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/base/geometry_info.h b/include/deal.II/base/geometry_info.h index 9f8832b8d4..76de3d69ac 100644 --- a/include/deal.II/base/geometry_info.h +++ b/include/deal.II/base/geometry_info.h @@ -157,7 +157,7 @@ namespace internal static constexpr std::array ucd_to_deal() { - return {{0, 1, 5, 4, 2, 3, 7, 6}}; + return {{0, 4, 5, 1, 2, 6, 7, 3}}; } static constexpr std::array -- 2.39.5