From e7d6ef0cb48ae16ea02c6529d3a01df57edab768 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 30 Jan 2004 15:19:04 +0000 Subject: [PATCH] Remove bogus assertions. git-svn-id: https://svn.dealii.org/trunk@8371 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/mapping_cartesian.cc | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/deal.II/deal.II/source/fe/mapping_cartesian.cc b/deal.II/deal.II/source/fe/mapping_cartesian.cc index 434ca0fdca..447e33623b 100644 --- a/deal.II/deal.II/source/fe/mapping_cartesian.cc +++ b/deal.II/deal.II/source/fe/mapping_cartesian.cc @@ -211,9 +211,6 @@ MappingCartesian::compute_fill (const typename DoFHandler::cell_iterat quadrature_points.size()) )); -//This assertion was nonsense, since we let npts = quadrature_points.size() above -// Assert (quadrature_points.size() == npts, -// ExcDimensionMismatch(quadrature_points.size(), npts)); for (unsigned int i=0; i::compute_fill (const typename DoFHandler::cell_iterat // value if (update_flags & update_normal_vectors) { -// We would like to have an assertion like this, but if -// we do not compute quadrature points, npts is zero. - -// Assert (normal_vectors.size() == npts, -// ExcDimensionMismatch(normal_vectors.size(), npts)); Assert (face_no < GeometryInfo::faces_per_cell, ExcInternalError()); @@ -280,6 +272,7 @@ MappingCartesian::compute_fill (const typename DoFHandler::cell_iterat } + template void MappingCartesian:: -- 2.39.5