From 1436413611f0b8de5ea98a9046591663f8f2a72b Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 22 Oct 2007 18:41:53 +0000 Subject: [PATCH] Reduce required accuracy of solvers somewhat. git-svn-id: https://svn.dealii.org/trunk@15362 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-22/step-22.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/examples/step-22/step-22.cc b/deal.II/examples/step-22/step-22.cc index 0753f9258d..316e02f194 100644 --- a/deal.II/examples/step-22/step-22.cc +++ b/deal.II/examples/step-22/step-22.cc @@ -945,7 +945,7 @@ void BoussinesqFlowProblem::solve () schur_complement (system_matrix, A_inverse); SolverControl solver_control (system_matrix.block(0,0).m(), - 1e-8*schur_rhs.l2_norm()); + 1e-6*schur_rhs.l2_norm()); SolverCG<> cg (solver_control); try -- 2.39.5