From 4be63bb95d3528c145149e6572a4d32b90d6245a Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Sat, 4 Jan 2014 23:40:41 +0000 Subject: [PATCH] Document deprecations git-svn-id: https://svn.dealii.org/trunk@32169 0785d39b-7218-0410-832d-ea1e28bc413d --- .../include/deal.II/multigrid/mg_constrained_dofs.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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 917dc33771..9d528f1204 100644 --- a/deal.II/include/deal.II/multigrid/mg_constrained_dofs.h +++ b/deal.II/include/deal.II/multigrid/mg_constrained_dofs.h @@ -110,6 +110,9 @@ public: get_boundary_indices () const; /** + * @deprecated Use at_refinement_edge() if possible, else + * get_refinement_edge_indices(unsigned int). + * * Return the indices of dofs for each level that lie on the * refinement edge (i.e. are on faces between cells of this level * and cells on the level below). @@ -125,6 +128,9 @@ public: get_refinement_edge_indices (unsigned int level) const; /** + * @deprecated Use at_refinement_edge_boundary() if possible, else + * use get_refinement_edge_boundary_indices(). + * * Return the indices of dofs for each level that are in the * intersection of the sets returned by get_boundary_indices() and * get_refinement_edge_indices(). @@ -140,10 +146,12 @@ public: get_refinement_edge_boundary_indices (unsigned int level) const; /** + * @deprecated The function is_boundary_index() now returns false if + * no boundary values are set. + * * Return if boundary_indices need to be set or not. */ -//TODO: remove? - bool set_boundary_values () const; + bool set_boundary_values () const DEAL_II_DEPRECATED; private: -- 2.39.5