From a1c76f840cb2f9c89c3b1240a7b55be9e623f778 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 25 Mar 2002 14:08:25 +0000 Subject: [PATCH] Mark an input parameter const. git-svn-id: https://svn.dealii.org/trunk@5614 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/multigrid/mg_smoother.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/deal.II/deal.II/include/multigrid/mg_smoother.h b/deal.II/deal.II/include/multigrid/mg_smoother.h index f37ef25092..f658cd7d68 100644 --- a/deal.II/deal.II/include/multigrid/mg_smoother.h +++ b/deal.II/deal.II/include/multigrid/mg_smoother.h @@ -94,22 +94,24 @@ class MGSmootherContinuous : public Subscriptor * is no 1d implementation. */ MGSmootherContinuous (const MGDoFHandler<1> &mg_dof, - unsigned int steps); + const unsigned int steps); /** * Constructor. This one collects - * the indices of the degrees of freedom - * on the interior boundaries between - * the different levels, which are + * the indices of the degrees of + * freedom on the interior + * boundaries between the + * different levels, which are * needed by the function * @p{set_zero_interior_boundaries}. * - * The parameter steps indicates the number of smoothing - * steps to be executed by @p{smooth}. + * The parameter steps indicates + * the number of smoothing steps + * to be executed by @p{smooth}. */ template MGSmootherContinuous (const MGDoFHandler &mg_dof, - unsigned int steps); + const unsigned int steps); /** * Reset the values of the degrees of -- 2.39.5