From de235042dc8b5698a5667fe2e3e1c6a13b5b6ae6 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sat, 29 Jul 2006 20:05:47 +0000 Subject: [PATCH] Leave a couple of TODOs. git-svn-id: https://svn.dealii.org/trunk@13498 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/dofs/dof_handler.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deal.II/deal.II/include/dofs/dof_handler.h b/deal.II/deal.II/include/dofs/dof_handler.h index 07bc3d53af..bbae41993c 100644 --- a/deal.II/deal.II/include/dofs/dof_handler.h +++ b/deal.II/deal.II/include/dofs/dof_handler.h @@ -1431,6 +1431,7 @@ unsigned int DoFHandler::n_active_fe_indices (const unsigned int, const unsigned int) const { +//TODO[WB]: this isn't true -- the function should return zero if the object is inactive return 1; } @@ -1444,6 +1445,7 @@ DoFHandler::nth_active_fe_index (const unsigned int, const unsigned int, const unsigned int n) const { +//TODO[WB]: this isn't true -- we should error out unconditionally if the object is inactive Assert (n == 0, ExcIndexRange (n, 0, 1)); return default_fe_index; -- 2.39.5