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 25ed0ed commit 2e99906Copy full SHA for 2e99906
src/time_evolution/callback_helpers/callback_helpers.jl
@@ -26,7 +26,7 @@ function _generate_stochastic_kwargs(
26
27
# Ensure that the noise is stored in tlist. # TODO: Fix this directly in DiffEqNoiseProcess.jl
28
# See https://github.com/SciML/DiffEqNoiseProcess.jl/issues/214 for example
29
- tstops = haskey(kwargs, :tstops) ? sort!(vcat(tlist, kwargs.tstops)) : tlist
+ tstops = haskey(kwargs, :tstops) ? unique!(sort!(vcat(tlist, kwargs.tstops))) : tlist
30
kwargs2 = merge(kwargs, (tstops = tstops,))
31
32
if SF === SaveFuncSSESolve
0 commit comments