From: Denis Davydov Date: Thu, 1 Sep 2016 15:47:13 +0000 (+0200) Subject: remove assert in distributed Tria for dim==1 X-Git-Tag: v8.5.0-rc1~715^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3050%2Fhead;p=dealii.git 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. --- 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; }