From: Luca 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-Tag: v8.0.0~5537 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=758b13566f117035452ea2cf924f33dd1d36d08e;p=dealii.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")); }