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 0c015c9 commit 1fdb294Copy full SHA for 1fdb294
src/systems/abstractsystem.jl
@@ -766,6 +766,9 @@ for traitT in [
766
push!(ts_idxs, ContinuousTimeseries())
767
elseif is_timeseries_parameter(sys, s)
768
push!(ts_idxs, timeseries_parameter_index(sys, s).timeseries_idx)
769
+ elseif is_time_dependent(sys) && iscall(s) && issym(operation(s)) && is_variable(sys, operation(s)(get_iv(sys)))
770
+ # DDEs case, to detect x(t - k)
771
+ push!(ts_idxs, ContinuousTimeseries())
772
elseif has_index_cache(sys) && (ic = get_index_cache(sys)) !== nothing
773
if (ts = get(ic.observed_syms_to_timeseries, s, nothing)) !== nothing
774
union!(ts_idxs, ts)
0 commit comments