From: guido Date: Wed, 19 Apr 2000 14:44:01 +0000 (+0000) Subject: TODO X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14f09ab166c9a737902d1c487e29fa26664a1957;p=dealii-svn.git TODO git-svn-id: https://svn.dealii.org/trunk@2757 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/multigrid/mg_dof_handler.cc b/deal.II/deal.II/source/multigrid/mg_dof_handler.cc index 46f2aa809d..5f5b4cf75a 100644 --- a/deal.II/deal.II/source/multigrid/mg_dof_handler.cc +++ b/deal.II/deal.II/source/multigrid/mg_dof_handler.cc @@ -1563,6 +1563,7 @@ void MGDoFHandler<1>::reserve_space () { // now allocate the needed space for (unsigned int vertex=0; vertexvertices.size(); ++vertex) { +//TODO: These conditions are violated on unused vertices Assert (min_level[vertex] < tria->n_levels(), ExcInternalError()); Assert (max_level[vertex] >= min_level[vertex], ExcInternalError()); @@ -1653,6 +1654,7 @@ void MGDoFHandler<2>::reserve_space () { // now allocate the needed space for (unsigned int vertex=0; vertexvertices.size(); ++vertex) { +//TODO: These conditions are violated on unused vertices Assert (min_level[vertex] < tria->n_levels(), ExcInternalError()); Assert (max_level[vertex] >= min_level[vertex], ExcInternalError()); @@ -1746,6 +1748,7 @@ void MGDoFHandler<3>::reserve_space () { // now allocate the needed space for (unsigned int vertex=0; vertexvertices.size(); ++vertex) { +//TODO: These conditions are violated on unused vertices Assert (min_level[vertex] < tria->n_levels(), ExcInternalError()); Assert (max_level[vertex] >= min_level[vertex], ExcInternalError());