From: Timo Heister Date: Wed, 21 Oct 2015 17:15:04 +0000 (-0400) Subject: documentation update X-Git-Tag: v8.4.0-rc2~277^2~8 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=986fe139134afb4984d412b865a88af6d8102862;p=dealii.git documentation update --- diff --git a/include/deal.II/multigrid/mg_constrained_dofs.h b/include/deal.II/multigrid/mg_constrained_dofs.h index 9f58071a34..45edc852ed 100644 --- a/include/deal.II/multigrid/mg_constrained_dofs.h +++ b/include/deal.II/multigrid/mg_constrained_dofs.h @@ -147,23 +147,26 @@ private: std::vector boundary_indices; /** - * old data structure only filled on demand + * Old data structure that is only filled on demand from @p boundary_indices + * for deprecated get_boundary_indices(). */ mutable std::vector > boundary_indices_old; /** - * The degrees of freedom on the refinement edge between a level and coarser - * cells. + * The degrees of freedom on a given level that live on the refinement edge + * between the level and cells on a coarser level. */ std::vector refinement_edge_indices; /** - * old data structure only filled on demand + * Old data structure that is only filled on demand for deprecated + * get_refinement_edge_boundary_indices(). */ mutable std::vector > refinement_edge_boundary_indices_old; /** - * old data structure only filled on demand + * Old data structure that is only filled on demand for deprecated + * get_refinement_edge_indices(). */ mutable std::vector > refinement_edge_indices_old; };