From 37dae2a05ffdf6486d50dddf316877b957c7abf7 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 19 Sep 2022 14:17:57 +0200 Subject: [PATCH] Update default_ode_alg_test.jl --- test/default_ode_alg_test.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/default_ode_alg_test.jl b/test/default_ode_alg_test.jl index f6a4993a7..0f0c3462b 100644 --- a/test/default_ode_alg_test.jl +++ b/test/default_ode_alg_test.jl @@ -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]) @@ -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])