Skip to content

Commit c35b797

Browse files
committed
revert to OrdinaryDiffEqDefault
1 parent 25b56d7 commit c35b797

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/bvproblem.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### TODO: update when BoundaryValueDiffEqAscher is updated to use the normal boundary condition conventions
22

3-
using OrdinaryDiffEqVerner
3+
using OrdinaryDiffEqDefault
44
using BoundaryValueDiffEqMIRK, BoundaryValueDiffEqAscher
55
using BenchmarkTools
66
using ModelingToolkit
@@ -24,7 +24,7 @@ let
2424

2525
@mtkbuild lotkavolterra = ODESystem(eqs, t)
2626
op = ODEProblem(lotkavolterra, u0map, tspan, parammap)
27-
osol = solve(op, Vern9())
27+
osol = solve(op)
2828

2929
bvp = SciMLBase.BVProblem{true, SciMLBase.AutoSpecialize}(
3030
lotkavolterra, u0map, tspan, parammap; eval_expression = true)
@@ -61,7 +61,7 @@ let
6161
tspan = (0.0, 6.0)
6262

6363
op = ODEProblem(pend, u0map, tspan, parammap)
64-
osol = solve(op, Vern9())
64+
osol = solve(op)
6565

6666
bvp = SciMLBase.BVProblem{true, SciMLBase.AutoSpecialize}(pend, u0map, tspan, parammap)
6767
for solver in solvers

0 commit comments

Comments
 (0)