From: Nils Schween Date: Thu, 28 Sep 2023 13:45:07 +0000 (+0200) Subject: exchange richardson.h with gmres.h and adapt documentation X-Git-Tag: relicensing~404^2~5 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=100050b3d49b794b86960ad8d44427ce0ff859b8;p=dealii.git exchange richardson.h with gmres.h and adapt documentation --- diff --git a/examples/step-12/step-12.cc b/examples/step-12/step-12.cc index fede611875..453284723c 100644 --- a/examples/step-12/step-12.cc +++ b/examples/step-12/step-12.cc @@ -45,12 +45,12 @@ // This header is needed for FEInterfaceValues to compute integrals on // interfaces: #include -// We are going to use the simplest possible solver, called Richardson -// iteration, that represents a simple defect correction. This, in combination -// with a block SSOR preconditioner (defined in precondition_block.h), that -// uses the special block matrix structure of system matrices arising from DG -// discretizations. -#include +// We are going to use a standard solver, called Generalized minimal residual +// method (GMRES). It is a iterative solver which is applicable to arbitrary +// invertible matrices. This, in combination with a block SSOR preconditioner +// (defined in precondition_block.h), that uses the special block matrix +// structure of system matrices arising from DG discretizations. +#include #include // We are going to use gradients as refinement indicator. #include