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
This is because x + y x^2+y^2 is now valid Macaulay2 code. In particular, it interprets the middle term y x^2 like sub(y, {x => x^2, y => y}), which evaluates to y, and so the entire expression evaluates to y^2 + x + y.
The text was updated successfully, but these errors were encountered:
With Macaulay2 1.23, the m2r test suite fails with the following:
This is because
x + y x^2+y^2
is now valid Macaulay2 code. In particular, it interprets the middle termy x^2
likesub(y, {x => x^2, y => y})
, which evaluates toy
, and so the entire expression evaluates toy^2 + x + y
.The text was updated successfully, but these errors were encountered: