From: heltai Date: Mon, 13 Sep 2010 08:21:52 +0000 (+0000) Subject: Removed check on number of boundary nodes for codimension one meshes in 2D. There... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e8ff30acb296021a8c9847fd30197e3e6a8c47f;p=dealii-svn.git Removed check on number of boundary nodes for codimension one meshes in 2D. There can be even more than two... git-svn-id: https://svn.dealii.org/trunk@21936 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/grid/tria.cc b/deal.II/deal.II/source/grid/tria.cc index 235eb1d221..7e13a79f6b 100644 --- a/deal.II/deal.II/source/grid/tria.cc +++ b/deal.II/deal.II/source/grid/tria.cc @@ -1393,7 +1393,7 @@ namespace internal // points at all) AssertThrow (((spacedim == 1) && (boundary_nodes == 2)) || - ((spacedim > 1) && (boundary_nodes <= 2)), + (spacedim > 1), ExcMessage("The Triangulation has too many end points")); }