File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -284,13 +284,15 @@ end
284284
285285namespace_affects (af:: Vector , s) = Equation[namespace_affect (a, s) for a in af]
286286namespace_affects (af:: FunctionalAffect , s) = namespace_affect (af, s)
287+ namespace_affects (af:: MutatingFunctionalAffect , s) = namespace_affect (af, s)
287288namespace_affects (:: Nothing , s) = nothing
288289
289290function namespace_callback (cb:: SymbolicContinuousCallback , s):: SymbolicContinuousCallback
290- SymbolicContinuousCallback (
291- namespace_equation .(equations (cb), (s,)),
292- namespace_affects (affects (cb), s),
293- namespace_affects (affect_negs (cb), s))
291+ SymbolicContinuousCallback (;
292+ eqs = namespace_equation .(equations (cb), (s,)),
293+ affect = namespace_affects (affects (cb), s),
294+ affect_neg = namespace_affects (affect_negs (cb), s),
295+ rootfind = cb. rootfind)
294296end
295297
296298"""
You can’t perform that action at this time.
0 commit comments