From: Wolfgang Bangerth Date: Fri, 17 May 2024 01:36:50 +0000 (-0600) Subject: Update supported gmsh cell types in exception message. X-Git-Tag: v9.6.0-rc1~262^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17035%2Fhead;p=dealii.git Update supported gmsh cell types in exception message. --- diff --git a/include/deal.II/grid/grid_in.h b/include/deal.II/grid/grid_in.h index bb255669fd..77cc5c4435 100644 --- a/include/deal.II/grid/grid_in.h +++ b/include/deal.II/grid/grid_in.h @@ -860,9 +860,11 @@ public: << "Supported elements are: \n" << "ELM-TYPE\n" << "1 Line (2 nodes, 1 edge).\n" + << "2 Triangle (3 nodes, 3 edges).\n" << "3 Quadrilateral (4 nodes, 4 edges).\n" + << "4 Tetrahedron (4 nodes, 6 edges, 4 faces) when in 3d.\n" << "5 Hexahedron (8 nodes, 12 edges, 6 faces) when in 3d.\n" - << "15 Point (1 node, ignored when read)"); + << "15 Point (1 node, ignored when read)."); DeclException2(