From b5d8b67c651ffd26a787fc491f1b6398bc4634ba Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Wed, 8 Apr 2020 15:25:27 -0400 Subject: [PATCH] Improve CellWeights documentation --- include/deal.II/distributed/cell_weights.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/include/deal.II/distributed/cell_weights.h b/include/deal.II/distributed/cell_weights.h index 924d6fc7f1..50dd53b954 100644 --- a/include/deal.II/distributed/cell_weights.h +++ b/include/deal.II/distributed/cell_weights.h @@ -197,19 +197,27 @@ namespace parallel CellWeights(const hp::DoFHandler &dof_handler); /** - * @copydoc CellWeights::constant_weighting() + * Choose a constant weight @p factor on each cell. + * + * @deprecated Use CellWeights::constant_weighting() instead. */ DEAL_II_DEPRECATED void register_constant_weighting(const unsigned int factor = 1000); /** - * @copydoc CellWeights::ndofs_weighting() + * Choose a weight for each cell that is proportional to its number of + * degrees of freedom with a factor @p factor. + * + * @deprecated Use CellWeights::ndofs_weighting() instead. */ DEAL_II_DEPRECATED void register_ndofs_weighting(const unsigned int factor = 1000); /** - * @copydoc CellWeights::ndofs_squared_weighting() + * Choose a weight for each cell that is proportional to its number of + * degrees of freedom squared with a factor @p factor. + * + * @deprecated Use CellWeights::ndofs_weighting() instead. */ DEAL_II_DEPRECATED void register_ndofs_squared_weighting(const unsigned int factor = 1000); -- 2.39.5