We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5484b7 commit 60d83c6Copy full SHA for 60d83c6
test/interface/composite_algorithm_test.jl
@@ -49,9 +49,9 @@ v = @inferred OrdinaryDiffEqCore.ode_extrapolant(
49
50
@test_throws ArgumentError solve(prob_ode_linear, alg_mixed)
51
sol2 = solve(prob_ode_linear, Tsit5())
52
- sol3 = solve(prob_ode_linear, alg_mixed; dt = 0.05)
53
- sol4 = solve(prob_ode_linear, alg_mixed_r; dt = 0.05)
54
- sol5 = solve(prob_ode_linear, alg_mixed2; dt = 0.05)
+ sol3 = solve(prob_ode_linear, alg_mixed; dt = 0.05, adaptive=false)
+ sol4 = solve(prob_ode_linear, alg_mixed_r; dt = 0.05, adaptive=false)
+ sol5 = solve(prob_ode_linear, alg_mixed2; dt = 0.05, adaptive=false)
55
@test sol3.t == sol4.t && sol3.u == sol4.u
56
@test sol3(0.8)≈sol2(0.8) atol=1e-4
57
@test sol5(0.8)≈sol2(0.8) atol=1e-4
0 commit comments