Skip to content

Commit

Permalink
Merge pull request SciML#2488 from SciML/os/fix-firk-convergence-test
Browse files Browse the repository at this point in the history
fix convergence test CI failure
  • Loading branch information
ChrisRackauckas authored Oct 11, 2024
2 parents e2f1a4e + 0385ef8 commit 1d34a43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/OrdinaryDiffEqFIRK/test/ode_firk_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ for prob in [prob_ode_linear, prob_ode_2Dlinear]
end

sim21 = test_convergence(1 ./ 2 .^ (2.5:-1:0.5), prob_ode_linear, RadauIIA9())
@test sim21.𝒪est[:final]8.5 atol=testTol
@test sim21.𝒪est[:final]8 atol=testTol

sim21 = test_convergence(1 ./ 2 .^ (2.5:-1:0.5), prob_ode_2Dlinear, RadauIIA9())
@test sim21.𝒪est[:final]8.5 atol=testTol
@test sim21.𝒪est[:final]8 atol=testTol

prob_ode_linear_big = remake(prob_ode_linear, u0 = big.(prob_ode_linear.u0), tspan = big.(prob_ode_linear.tspan))
prob_ode_2Dlinear_big = remake(prob_ode_2Dlinear, u0 = big.(prob_ode_2Dlinear.u0), tspan = big.(prob_ode_2Dlinear.tspan))
Expand Down

0 comments on commit 1d34a43

Please sign in to comment.