From: Wolfgang Bangerth Date: Mon, 24 Jan 2022 19:07:32 +0000 (-0700) Subject: Add assertions. X-Git-Tag: v9.4.0-rc1~564^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13287%2Fhead;p=dealii.git Add assertions. --- diff --git a/source/grid/tria.cc b/source/grid/tria.cc index 3547f45123..d165aa24a2 100644 --- a/source/grid/tria.cc +++ b/source/grid/tria.cc @@ -5134,13 +5134,26 @@ namespace internal Assert(false, ExcInternalError()); } + // Also check whether we have to refine any of the faces and + // edges that bound this cell. They may of course already be + // refined, so we only *mark* them for refinement by setting + // the user flags for (const auto face : cell->face_indices()) - if (cell->face(face)->number_of_children() < 4) + if (cell->face(face)->n_children() == 0) cell->face(face)->set_user_flag(); + else + Assert(cell->face(face)->n_children() == + cell->reference_cell() + .face_reference_cell(face) + .n_isotropic_children(), + ExcInternalError()); for (const auto line : cell->line_indices()) if (cell->line(line)->has_children() == false) cell->line(line)->set_user_flag(); + else + Assert(cell->line(line)->n_children() == 2, + ExcInternalError()); } const unsigned int used_cells =