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