@@ -133,13 +133,15 @@ struct SDESystem <: AbstractODESystem
133133 be `true` when `noiseeqs isa Vector`.
134134 """
135135 is_scalar_noise:: Bool
136+ isscheduled:: Bool
136137
137138 function SDESystem (tag, deqs, neqs, iv, dvs, ps, tspan, var_to_name, ctrls, observed,
138139 tgrad,
139140 jac,
140141 ctrl_jac, Wfact, Wfact_t, name, systems, defaults, connector_type,
141142 cevents, devents, parameter_dependencies, metadata = nothing , gui_metadata = nothing ,
142- complete = false , index_cache = nothing , parent = nothing , is_scalar_noise = false ;
143+ complete = false , index_cache = nothing , parent = nothing , is_scalar_noise = false ,
144+ isscheduled = false ;
143145 checks:: Union{Bool, Int} = true )
144146 if checks == true || (checks & CheckComponents) > 0
145147 check_independent_variables ([iv])
@@ -162,7 +164,8 @@ struct SDESystem <: AbstractODESystem
162164 new (tag, deqs, neqs, iv, dvs, ps, tspan, var_to_name, ctrls, observed, tgrad, jac,
163165 ctrl_jac,
164166 Wfact, Wfact_t, name, systems, defaults, connector_type, cevents, devents,
165- parameter_dependencies, metadata, gui_metadata, complete, index_cache, parent, is_scalar_noise)
167+ parameter_dependencies, metadata, gui_metadata, complete, index_cache, parent, is_scalar_noise,
168+ isscheduled)
166169 end
167170end
168171
0 commit comments