From 65e169d7f09fd1442c435cc191e15d5cacffe9de Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 20 Aug 2001 16:25:03 +0000 Subject: [PATCH] Remove an assertion for corner cases, which is not strictly necessary and was rather thought as an aid in finding programming errors. After discussion it was thought that it is more difficult to maintain it than to remove it. git-svn-id: https://svn.dealii.org/trunk@4898 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_values.cc | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/deal.II/deal.II/source/fe/fe_values.cc b/deal.II/deal.II/source/fe/fe_values.cc index 860f9c3f5c..c293fc008f 100644 --- a/deal.II/deal.II/source/fe/fe_values.cc +++ b/deal.II/deal.II/source/fe/fe_values.cc @@ -803,17 +803,6 @@ void FESubfaceValues::reinit (const typename DoFHandler::cell_iterator ExcIndexRange (face_no, 0, GeometryInfo::faces_per_cell)); Assert (subface_no < GeometryInfo::subfaces_per_face, ExcIndexRange (subface_no, 0, GeometryInfo::subfaces_per_face)); - - // check that the face we are - // presently working on is not at - // the boundary, since boundary - // faces cannot, by definition, be - // further refined as there is no - // other cell behind the face, and - // then there is no point in using - // subfacevalues on these faces - Assert (cell->face(face_no)->at_boundary() == false, - ExcReinitCalledWithBoundaryFace()); present_cell = cell; present_face = cell->face(face_no); -- 2.39.5