From: Wolfgang Bangerth Date: Wed, 15 Oct 2014 19:39:28 +0000 (-0500) Subject: More updates. X-Git-Tag: v8.2.0-rc1~104^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F200%2Fhead;p=dealii.git More updates. --- diff --git a/include/deal.II/lac/solver_control.h b/include/deal.II/lac/solver_control.h index 5643e0ac3d..f0f3da5214 100644 --- a/include/deal.II/lac/solver_control.h +++ b/include/deal.II/lac/solver_control.h @@ -30,18 +30,18 @@ class ParameterHandler; /*@{*/ /** - * Control class for iterative solvers. + * Control class to determine convergence of iterative solvers. * * Used by iterative methods to determine whether the iteration should - * be continued. To this respect, the virtual function check() is + * be continued. To this end, the virtual function check() is * called in each iteration with the current iteration step and the * value indicating convergence (usually the residual). * - * After the iteration has terminated, the functions @p last_value and - * @p last_step can be used to obtain information about the final state + * After the iteration has terminated, the functions last_value() and + * last_step() can be used to obtain information about the final state * of the iteration. * - * check() can be replaced in derived classes to allow for more + * check() can be replaced in derived classes to allow for more * sophisticated tests. * *