Skip to content

Commit 5a9667d

Browse files
Update NEWS.md
1 parent bf7518b commit 5a9667d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,7 @@
3434
- Pass the `split = false` keyword to `structural_simplify`. E.g. `ss = structural_simplify(sys; split = false)`.
3535
- Pass `split = false` to `@mtkbuild`. E.g. `@mtkbuild sys = ODESystem(...) split = false`.
3636
- Discrete-time system using `Difference` are unsupported. Instead, use the new `Clock`-based syntax.
37+
- Automatic scalarization has been removed, meaning that vector variables need to be treated with proper vector
38+
equations. For example, `[p[1] => 1.0, p[2] => 2.0]` is no longer allowed in default equations, use
39+
`[p => [1.0, 2.0]]` instead. Also, array equations like for `@variables u[1:2]` have `D(u) ~ A*u` as an
40+
array equation. If the scalarized version is desired, use `scalarize(u)`.

0 commit comments

Comments
 (0)