From d916cebc01fa708d75e086f388d2b28c9bf8025f Mon Sep 17 00:00:00 2001 From: Denis Davydov Date: Thu, 1 Sep 2016 17:47:13 +0200 Subject: [PATCH] remove assert in distributed Tria for dim==1 the assert was copy-pasted from p::d::Tria::locally_owned_subdomain() to the based class p::Tria. Not sure why it was there for distributed case, but for shared tria + metis, everything should work ok. --- source/distributed/tria_base.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/source/distributed/tria_base.cc b/source/distributed/tria_base.cc index e898831469..4c3ec5bd16 100644 --- a/source/distributed/tria_base.cc +++ b/source/distributed/tria_base.cc @@ -217,7 +217,6 @@ namespace parallel types::subdomain_id Triangulation::locally_owned_subdomain () const { - Assert (dim > 1, ExcNotImplemented()); return my_subdomain; } -- 2.39.5