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 0f794ae commit 3588506Copy full SHA for 3588506
NEWS.md
@@ -42,3 +42,7 @@
42
equations. For example, `[p[1] => 1.0, p[2] => 2.0]` is no longer allowed in default equations, use
43
`[p => [1.0, 2.0]]` instead. Also, array equations like for `@variables u[1:2]` have `D(u) ~ A*u` as an
44
array equation. If the scalarized version is desired, use `scalarize(u)`.
45
+ - Parameter dependencies are now supported. They can be specified using the syntax
46
+ `(single_parameter => expression_involving_other_parameters)` and a `Vector` of these can be passed to
47
+ the `parameter_dependencies` keyword argument of `ODESystem`, `SDESystem` and `JumpSystem`. The dependent
48
+ parameters are updated whenever other parameters are modified, e.g. in callbacks.
0 commit comments