From: Guido Kanschat Date: Mon, 17 Oct 2005 16:40:11 +0000 (+0000) Subject: the number of generalized support points may differ from the number of dofs. X-Git-Tag: v8.0.0~12989 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d14c7cb56049b772a31491358330b4f9683923d9;p=dealii.git the number of generalized support points may differ from the number of dofs. git-svn-id: https://svn.dealii.org/trunk@11614 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe.cc b/deal.II/deal.II/source/fe/fe.cc index 6759e03db9..30bcebe559 100644 --- a/deal.II/deal.II/source/fe/fe.cc +++ b/deal.II/deal.II/source/fe/fe.cc @@ -468,9 +468,6 @@ FiniteElement::get_generalized_support_points () const // support points, but only if // there are as many as there are // degrees of freedom - Assert ((generalized_support_points.size() == 0) || - (generalized_support_points.size() == this->dofs_per_cell), - ExcInternalError()); return ((generalized_support_points.size() == 0) ? unit_support_points : generalized_support_points); @@ -533,9 +530,6 @@ FiniteElement::get_generalized_face_support_points () const // support points, but only if // there are as many as there are // degrees of freedom on a face - Assert ((generalized_face_support_points.size() == 0) || - (generalized_face_support_points.size() == this->dofs_per_face), - ExcInternalError()); return ((generalized_face_support_points.size() == 0) ? unit_face_support_points : generalized_face_support_points);