Skip to content

Commit eb3b5f3

Browse files
isaacsasChrisRackauckas
authored andcommitted
fix
1 parent 042bd08 commit eb3b5f3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/common_interface/integrator_utils.jl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ function DiffEqBase.reinit!(integrator::AbstractSundialsIntegrator,
290290
nothing
291291
end
292292

293-
DiffEqBase.get_tstops(integ::SDEIntegrator) = integ.opts.tstops
294-
DiffEqBase.get_tstops_array(integ::SDEIntegrator) = get_tstops(integ).valtree
295-
DiffEqBase.get_tstops_max(integ::SDEIntegrator) = maximum(get_tstops_array(integ))
293+
DiffEqBase.get_tstops(integ::AbstractSundialsIntegrator) = integ.opts.tstops
294+
DiffEqBase.get_tstops_array(integ::AbstractSundialsIntegrator) = get_tstops(integ).valtree
295+
DiffEqBase.get_tstops_max(integ::AbstractSundialsIntegrator) =
296+
maximum(get_tstops_array(integ))

0 commit comments

Comments
 (0)