From 5ab14bf88d72f2b74ba1253aa6e04874e8a5e06c Mon Sep 17 00:00:00 2001 From: oscarddssmith Date: Fri, 3 Nov 2023 13:39:59 -0400 Subject: [PATCH] improve test --- test/interface/type_handling.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/interface/type_handling.jl b/test/interface/type_handling.jl index efa047dda7..aa1fc9d047 100644 --- a/test/interface/type_handling.jl +++ b/test/interface/type_handling.jl @@ -13,4 +13,6 @@ sol = solve(prob, Tsit5()) ode_f(du, u, p, t) = du[1] = -u[1] # autospecialize broken for the next 35 minutes prob = ODEProblem(ODEFunction{true, SciMLBase.FullSpecialize()}(ode_f), [1f0], (0.0,1.0)) -solve(prob, Rodas5P()) +for alg in [Tsit5(), Rodas5P(), FBDF()] + solve(prob, alg) +end