You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> C = Contractor(x^2 - 2*x)
Contractor in 1 dimensions:
- forward pass contracts to 1 dimensions
- variables: Symbol[:x]
- expression: x() ^ 2 - 2 * x()
How's our outputs are different ?
Anyways, expression which is printed here with variables having unnecessary brackets with them is because ModelingToolkit creates expressions in this way only. I think this issue is more suited for ModelingToolkit.jl.
Should be
x^2
, notx()()^2
.cc @Yashcodes
The text was updated successfully, but these errors were encountered: