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
284
284
285
285
namespace_affects (af:: Vector , s) = Equation[namespace_affect (a, s) for a in af]
286
286
namespace_affects (af:: FunctionalAffect , s) = namespace_affect (af, s)
287
+ namespace_affects (af:: MutatingFunctionalAffect , s) = namespace_affect (af, s)
287
288
namespace_affects (:: Nothing , s) = nothing
288
289
289
290
function namespace_callback (cb:: SymbolicContinuousCallback , s):: SymbolicContinuousCallback
290
- SymbolicContinuousCallback (
291
- namespace_equation .(equations (cb), (s,)),
292
- namespace_affects (affects (cb), s);
293
- affect_neg = 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)
294
296
end
295
297
296
298
"""
You can’t perform that action at this time.
0 commit comments