From: Denis Davydov Date: Mon, 24 Aug 2015 17:03:53 +0000 (+0200) Subject: drop Assert in FESystem when neither FE dominate X-Git-Tag: v8.4.0-rc2~511^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88d86fc2e6d5bce2854b9b40318204ae7013ca8a;p=dealii.git drop Assert in FESystem when neither FE dominate --- diff --git a/source/fe/fe_system.cc b/source/fe/fe_system.cc index a9ec3d7856..458253c91c 100644 --- a/source/fe/fe_system.cc +++ b/source/fe/fe_system.cc @@ -2334,12 +2334,6 @@ compare_for_face_domination (const FiniteElement &fe_other) const domination = domination & base_domination; } - // if we've gotten here, then we've either found a winner or either - // element is fine being dominated - Assert (domination != - FiniteElementDomination::neither_element_dominates, - ExcInternalError()); - return domination; }