From 5dd46b89c2a363804eee4739df1e575af59ffdbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olav=20M=C3=B8yner?= Date: Thu, 9 Oct 2025 21:05:16 +0200 Subject: [PATCH] Explicit number of iterations in BoomerAMG test This was needed on some platforms --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 0e5e6db..8bddc4d 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -420,7 +420,7 @@ end x_h = HYPREVector(b, ilower, iupper) # Solve tol = 1.0e-9 - amg = HYPRE.BoomerAMG(; Tol = tol) + amg = HYPRE.BoomerAMG(; Tol = tol, MaxIter = 25) HYPRE.solve!(amg, x_h, A_h, b_h) copy!(x, x_h) @test (A * x ≈ b) atol = tol * norm(b) # default BoomerAMG criteria