Skip to content

Commit

Permalink
Update default_ode_alg_test.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Sep 19, 2022
1 parent 5ede573 commit 37dae2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/default_ode_alg_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ sol = solve(prob_ode_2Dlinear; reltol = 1e-7)
sol = solve(prob_ode_2Dlinear; reltol = 1e-10)

@test typeof(sol.alg.algs[1]) <: Vern9
@test typeof(sol.alg.algs[2]) <: Rodas5
@test typeof(sol.alg.algs[2]) <: Rodas5P

sol = solve(prob_ode_2Dlinear; alg_hints = [:stiff])

Expand All @@ -44,7 +44,7 @@ prob_ode_bigfloat2Dlinear = ODEProblem(f, map(BigFloat, rand(4, 2)) .* ones(4, 2

sol = solve(prob_ode_bigfloat2Dlinear; dt = 1 // 2^(4))
@test typeof(sol.alg.algs[1]) <: Vern9
@test typeof(sol.alg.algs[2]) <: Rodas5
@test typeof(sol.alg.algs[2]) <: Rodas5P

default_algorithm(prob_ode_bigfloat2Dlinear; alg_hints = [:stiff])

Expand Down

0 comments on commit 37dae2a

Please sign in to comment.