From: Denis Davydov Date: Tue, 9 Aug 2016 17:39:40 +0000 (+0200) Subject: minor fixes in doxygen of MGCoarseGridApplySmoother X-Git-Tag: v8.5.0-rc1~785^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b0a3fa0f8bf273a5e22ce27ac5257b320f80873;p=dealii.git minor fixes in doxygen of MGCoarseGridApplySmoother --- 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; };