From fe97bc72d2535ad090378510c4b2ecc8b140138c Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Wed, 8 Jun 2022 20:03:08 -0500 Subject: [PATCH] test ginkgo/solver: adjust tolerances --- tests/ginkgo/solver.cc | 4 ++-- tests/ginkgo/solver.output | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 -- 2.39.5