File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11name = " DynamicalSystemsBase"
22uuid = " 6e36e845-645a-534a-86f2-f5d4aa5a06b4"
33repo = " https://github.com/JuliaDynamics/DynamicalSystemsBase.jl.git"
4- version = " 1.5.1 "
4+ version = " 1.5.2 "
55
66[deps ]
77DelayEmbeddings = " 5732040d-69e3-5649-938a-b6b4f237613f"
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ isinplace(::MDI{IIP}) where {IIP} = IIP
2020stateeltype (:: MDI{IIP, S} ) where {IIP, S} = eltype (S)
2121stateeltype (:: MDI{IIP, S} ) where {IIP, S<: Vector{<:AbstractArray{T}} } where {T} = T
2222
23- function reinit! (integ:: MDI , u = integ. u, Q0 = nothing )
23+ function reinit! (integ:: MDI , u = integ. u, Q0 = nothing ; t0 = integ . t0 )
2424 integ. u = u
2525 integ. dummy = u
26- integ. t = integ . t0
26+ integ. t = t0
2727 if Q0 != nothing
2828 set_deviations! (integ, Q0)
2929 end
@@ -118,12 +118,12 @@ u_modified!(t::TDI, a) = nothing
118118get_deviations (t:: TDI ) = t. W
119119set_deviations! (t:: TDI , Q) = (t. W = Q)
120120
121- function reinit! (integ:: TDI , u = integ. u, Q0 = nothing )
121+ function reinit! (integ:: TDI , u = integ. u, Q0 = nothing ; t0 = integ . t0 )
122122 set_state! (integ, u)
123123 if Q0 != nothing
124124 set_deviations! (integ, Q0)
125125 end
126- integ. t = integ . t0
126+ integ. t = t0
127127 return
128128end
129129
You can’t perform that action at this time.
0 commit comments