From: Matthias Maier Date: Thu, 9 Jun 2022 01:03:08 +0000 (-0500) Subject: test ginkgo/solver: adjust tolerances X-Git-Tag: v9.4.0-rc1~47^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13941%2Fhead;p=dealii.git test ginkgo/solver: adjust tolerances --- diff --git a/tests/ginkgo/solver.cc b/tests/ginkgo/solver.cc index b8f69375dc..a1676d9e9e 100644 --- a/tests/ginkgo/solver.cc +++ b/tests/ginkgo/solver.cc @@ -86,12 +86,12 @@ main(int argc, char **argv) u = 0.; check_solver_within_range(bicgstab_solver.solve(A, u, f), control.last_step(), - 53, + 26, 65); u = 0.; check_solver_within_range(cgs_solver.solve(A, u, f), control.last_step(), - 72, + 36, 79); u = 0.; check_solver_within_range(fcg_solver.solve(A, u, f), diff --git a/tests/ginkgo/solver.output b/tests/ginkgo/solver.output index 631b3778ff..7565006d62 100644 --- a/tests/ginkgo/solver.output +++ b/tests/ginkgo/solver.output @@ -1,8 +1,8 @@ DEAL::Size 32 Unknowns 961 DEAL::Solver stopped within 35 - 39 iterations -DEAL::Solver stopped within 53 - 65 iterations -DEAL::Solver stopped within 72 - 79 iterations +DEAL::Solver stopped within 26 - 65 iterations +DEAL::Solver stopped within 36 - 79 iterations DEAL::Solver stopped within 33 - 39 iterations DEAL::Solver stopped within 20 - 49 iterations DEAL::Solver stopped within 0 - 2 iterations