Skip to content

Commit 5e5c24c

Browse files
committed
revert to OrdinaryDiffEq
1 parent e6a6932 commit 5e5c24c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

test/bvproblem.jl

Lines changed: 4 additions & 6 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 OrdinaryDiffEqDefault
3+
using OrdinaryDiffEq
44
using BoundaryValueDiffEqMIRK, BoundaryValueDiffEqAscher
55
using BenchmarkTools
66
using ModelingToolkit
@@ -24,10 +24,9 @@ let
2424

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

29-
bvp = SciMLBase.BVProblem{true, SciMLBase.AutoSpecialize}(
30-
lotkavolterra, u0map, tspan, parammap; eval_expression = true)
29+
bvp = SciMLBase.BVProblem{true, SciMLBase.AutoSpecialize}(lotkavolterra, u0map, tspan, parammap)
3130

3231
for solver in solvers
3332
sol = solve(bvp, solver(), dt = 0.01)
@@ -36,8 +35,7 @@ let
3635
end
3736

3837
# Test out of place
39-
bvp2 = SciMLBase.BVProblem{false, SciMLBase.AutoSpecialize}(
40-
lotkavolterra, u0map, tspan, parammap; eval_expression = true)
38+
bvp2 = SciMLBase.BVProblem{false, SciMLBase.AutoSpecialize}(lotkavolterra, u0map, tspan, parammap)
4139

4240
for solver in solvers
4341
sol = solve(bvp2, solver(), dt = 0.01)

0 commit comments

Comments
 (0)