From 0b0a3fa0f8bf273a5e22ce27ac5257b320f80873 Mon Sep 17 00:00:00 2001 From: Denis Davydov Date: Tue, 9 Aug 2016 19:39:40 +0200 Subject: [PATCH] minor fixes in doxygen of MGCoarseGridApplySmoother --- include/deal.II/multigrid/mg_coarse.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/include/deal.II/multigrid/mg_coarse.h b/include/deal.II/multigrid/mg_coarse.h index b4cff26a1c..bcc9f16c9f 100644 --- a/include/deal.II/multigrid/mg_coarse.h +++ b/include/deal.II/multigrid/mg_coarse.h @@ -28,9 +28,8 @@ DEAL_II_NAMESPACE_OPEN /*@{*/ /** - * Coarse grid solver using preconditioners only. This is a little wrapper, - * transforming a preconditioner into - * a coarse grid solver. + * Coarse grid solver using smoother only. This is a little wrapper, + * transforming a smoother into a coarse grid solver. * * @author Denis Davydov, 2016. */ @@ -44,7 +43,7 @@ public: MGCoarseGridApplySmoother (); /** - * Constructor. Store preconditioner for later use. + * Constructor. Store a pointer to the smoother for later use. */ MGCoarseGridApplySmoother (const MGSmootherBase &coarse_smooth); @@ -62,7 +61,7 @@ public: private: /** - * Reference to the preconditioner. + * Reference to the smoother. */ SmartPointer,Multigrid > coarse_smooth; }; -- 2.39.5