Skip to content

Commit 81f6fc3

Browse files
fix tests
1 parent 2d0664e commit 81f6fc3

File tree

3 files changed

+4
-17
lines changed

3 files changed

+4
-17
lines changed

lib/OrdinaryDiffEqFIRK/test/ode_firk_tests.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ sim21 = test_convergence(1 ./ 2 .^ (2.5:-1:0.5), prob_ode_linear, RadauIIA9())
1414
sim21 = test_convergence(1 ./ 2 .^ (2.5:-1:0.5), prob_ode_2Dlinear, RadauIIA9())
1515
@test sim21.𝒪est[:final]8 atol=testTol
1616

17+
using GenericSchur
18+
1719
prob_ode_linear_big = remake(prob_ode_linear, u0 = big.(prob_ode_linear.u0), tspan = big.(prob_ode_linear.tspan))
1820
prob_ode_2Dlinear_big = remake(prob_ode_2Dlinear, u0 = big.(prob_ode_2Dlinear.u0), tspan = big.(prob_ode_2Dlinear.tspan))
1921

20-
for i in [5, 9, 13], prob in [prob_ode_linear_big, prob_ode_2Dlinear_big]
22+
for i in [5, 9, 13, 17, 21, 25], prob in [prob_ode_linear_big, prob_ode_2Dlinear_big]
2123
dts = 1 ./ 2 .^ (4.25:-1:0.25)
2224
local sim21 = test_convergence(dts, prob, AdaptiveRadau(min_order = i, max_order = i))
2325
@test sim21.𝒪est[:final] i atol=testTol

lib/OrdinaryDiffEqFIRK/test/ode_high_order_firk_tests.jl

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
using SafeTestsets
22

3-
@time @safetestset "FIRK Tests" include("ode_firk_tests.jl")
4-
@time @safetestset "High Order FIRK Tests" include("ode_high_order_firk_tests.jl")
3+
@time @safetestset "FIRK Tests" include("ode_firk_tests.jl")

0 commit comments

Comments
 (0)