From 798fef856cbd13b0afb7e653336b4bb1c0a5266e Mon Sep 17 00:00:00 2001 From: Shreyas-Ekanathan <142109039+Shreyas-Ekanathan@users.noreply.github.com> Date: Thu, 25 Jul 2024 11:03:09 -0400 Subject: [PATCH] Update ode_firk_tests.jl --- test/algconvergence/ode_firk_tests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/algconvergence/ode_firk_tests.jl b/test/algconvergence/ode_firk_tests.jl index f901b7c80e..c9651f43a3 100644 --- a/test/algconvergence/ode_firk_tests.jl +++ b/test/algconvergence/ode_firk_tests.jl @@ -9,10 +9,10 @@ for prob in [prob_ode_linear, prob_ode_2Dlinear] end sim21 = test_convergence(1 ./ 2 .^ (2.75:-0.5:0.25), prob_ode_linear, RadauIIA9()) -@test sim21.𝒪est[:final]≈9 atol=testTol +@test sim21.𝒪est[:final]≈8 atol=testTol sim21 = test_convergence(1 ./ 2 .^ (2.75:-0.5:0.25), prob_ode_2Dlinear, RadauIIA0()) -@test sim21.𝒪est[:final]≈9 atol=testTol +@test sim21.𝒪est[:final]≈8 atol=testTol # test adaptivity for iip in (true, false)