Skip to content

Commit c6e44ee

Browse files
committed
fix firk
1 parent 2f79105 commit c6e44ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/OrdinaryDiffEqFIRK/test/ode_firk_tests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ sys = prob_ode_vanderpol.f.sys
4444

4545
# test adaptivity
4646
for iip in (true, false)
47-
vanstiff = ODEProblem{iip}(sys, [sys.y => 0, sys.x => sqrt(3)], (0.0, 1.0), [sys.μ => 1e6])
47+
vanstiff = ODEProblem{iip}(sys, [sys.y => 0, sys.x => sqrt(3), sys.μ => 1e6], (0.0, 1.0))
4848
sol = solve(vanstiff, RadauIIA5())
4949
if iip
5050
@test sol.stats.naccept + sol.stats.nreject > sol.stats.njacs # J reuse
@@ -69,7 +69,7 @@ end
6969

7070
# test adaptivity
7171
for iip in (true, false)
72-
vanstiff = ODEProblem{iip}(sys, [sys.y => 0, sys.x => sqrt(3)], (0.0, 1.0), [sys.μ => 1e6])
72+
vanstiff = ODEProblem{iip}(sys, [sys.y => 0, sys.x => sqrt(3), sys.μ => 1e6], (0.0, 1.0))
7373
sol = solve(vanstiff, RadauIIA3())
7474
if iip
7575
@test sol.stats.naccept + sol.stats.nreject > sol.stats.njacs # J reuse

0 commit comments

Comments
 (0)