From 21ff64bbc3faa326b4514ae1c5145eeda6b1273a Mon Sep 17 00:00:00 2001 From: heister Date: Fri, 21 Dec 2012 17:22:23 +0000 Subject: [PATCH] add comments to new methods in DoFHandler and fix missing comment ending git-svn-id: https://svn.dealii.org/branches/branch_merge_mg_into_dof_handler@27852 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/dofs/dof_handler.h | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/deal.II/include/deal.II/dofs/dof_handler.h b/deal.II/include/deal.II/dofs/dof_handler.h index abd7be86c6..a26dbeb35b 100644 --- a/deal.II/include/deal.II/dofs/dof_handler.h +++ b/deal.II/include/deal.II/dofs/dof_handler.h @@ -310,6 +310,11 @@ public: */ virtual void distribute_dofs (const FiniteElement &fe); + /** + * Distribute multigrid degrees of freedom similar + * to distribute_dofs() but on each level. + * This replaces the functionality of the old MGDoFHandler. + */ virtual void distribute_mg_dofs (const FiniteElement &fe); /** @@ -528,11 +533,11 @@ public: cell_iterator end () const; /** - * Return an iterator which is the first - * iterator not on the given level. If @p level is - * the last level, then this returns - * end(). - */ + * Return an iterator which is the first + * iterator not on the given level. If @p level is + * the last level, then this returns + * end(). + */ cell_iterator end (const unsigned int level) const; /** @@ -729,6 +734,7 @@ public: * Returns an IndexSet describing the set of locally * owned DoFs used for the given multigrid level as * a subset of 0..n_dofs(level). + */ const IndexSet &locally_owned_mg_dofs(const unsigned int level) const; -- 2.39.5