From: Luca Heltai Date: Sun, 10 May 2020 12:04:08 +0000 (+0200) Subject: Switched to FGMRES. X-Git-Tag: v9.2.0-rc2~3^2~9 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57252f7aacd391a0a9ad94022d171962a087c240;p=dealii.git Switched to FGMRES. --- diff --git a/examples/step-70/step-70.cc b/examples/step-70/step-70.cc index de46f05bb3..25e4e4bac2 100644 --- a/examples/step-70/step-70.cc +++ b/examples/step-70/step-70.cc @@ -1410,7 +1410,7 @@ namespace Step70 SolverControl solver_control(system_matrix.m(), 1e-10 * system_rhs.l2_norm()); - SolverMinRes solver(solver_control); + SolverFGMRES solver(solver_control); constraints.set_zero(solution);