From: Timo Heister Date: Wed, 2 Oct 2013 17:51:27 +0000 (+0000) Subject: leave some comments and todos X-Git-Tag: v8.1.0~654 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00d735622860e5fa5643aab41a58256f18d5bfc6;p=dealii.git leave some comments and todos git-svn-id: https://svn.dealii.org/trunk@31075 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/multigrid/mg_constrained_dofs.h b/deal.II/include/deal.II/multigrid/mg_constrained_dofs.h index 85389cdffa..610e0344a4 100644 --- a/deal.II/include/deal.II/multigrid/mg_constrained_dofs.h +++ b/deal.II/include/deal.II/multigrid/mg_constrained_dofs.h @@ -75,7 +75,7 @@ public: /** * Determine whether a dof index is subject to a boundary - * constraint. + * constraint. (is on boundary of domain) */ bool is_boundary_index (const unsigned int level, const types::global_dof_index index) const; @@ -84,6 +84,7 @@ public: * Determine whether a dof index is at an edge that is not a * refinement edge. */ +// TODO: remove bool non_refinement_edge_index (const unsigned int level, const types::global_dof_index index) const; @@ -96,6 +97,7 @@ public: /** * Determine whether a dof index is at the refinement edge and * subject to a boundary constraint . + * = is_boundary_index() && at_refinement_edge() */ bool at_refinement_edge_boundary (const unsigned int level, const types::global_dof_index index) const; @@ -104,6 +106,7 @@ public: * Return the indices of dofs for each level that lie on the * boundary of the domain. */ +// TODO: remove const std::vector > & get_boundary_indices () const; @@ -111,6 +114,7 @@ public: * Return the indices of dofs for each level that lie on the * boundary of the domain. */ + // TODO: remove const std::vector > & get_non_refinement_edge_indices () const; @@ -119,6 +123,7 @@ public: * refinement edge (i.e. are on faces between cells of this level * and cells on the level below). */ + // TODO: remove const std::vector > & get_refinement_edge_indices () const; @@ -127,6 +132,7 @@ public: * intersection of the sets returned by get_boundary_indices() and * get_refinement_edge_indices(). */ + // TODO: remove const std::vector > & get_refinement_edge_boundary_indices () const;