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 b34540b commit a660fabCopy full SHA for a660fab
src/solve.jl
@@ -49,9 +49,7 @@ function DiffEqBase.__init(
49
delta=delta_default(alg),
50
maxiters = adaptive ? 1000000 : typemax(Int),
51
dtmax=eltype(concrete_prob(_prob).tspan)((concrete_prob(_prob).tspan[end]-concrete_prob(_prob).tspan[1])),
52
- dtmin = typeof(one(eltype(concrete_prob(_prob).tspan))) <: AbstractFloat ? eps(eltype(concrete_prob(_prob).tspan)) :
53
- typeof(one(eltype(concrete_prob(_prob).tspan))) <: Integer ? 0 :
54
- eltype(concrete_prob(_prob).tspan)(1//10^(10)),
+ dtmin = DiffEqBase.prob2dtmin(prob),
55
internalnorm = ODE_DEFAULT_NORM,
56
isoutofdomain = ODE_DEFAULT_ISOUTOFDOMAIN,
57
unstable_check = ODE_DEFAULT_UNSTABLE_CHECK,
0 commit comments