We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbf273a commit fc76006Copy full SHA for fc76006
test/interface/default_solver_tests.jl
@@ -3,7 +3,7 @@ using OrdinaryDiffEq, Test, LinearSolve, LinearAlgebra, SparseArrays
3
f_2dlinear = (du, u, p, t) -> (@. du = p * u)
4
5
prob_ode_2Dlinear = ODEProblem(f_2dlinear, rand(4, 2), (0.0, 1.0), 1.01)
6
-sol = solve(prob_ode_2Dlinear)
+sol = @inferred solve(prob_ode_2Dlinear)
7
8
tsitsol = solve(prob_ode_2Dlinear, Tsit5())
9
# test that default isn't much worse than Tsit5 (we expect it to use Tsit5 for this).
0 commit comments