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
Currently, normalization on flat expressions only attempts to match the pattern to the full expression, not subexpressions. Thus, given the rule f(x) * g(x) => x, the term f(1) * g(1) will return 1, but the term f(1) * g(1) * h()` will not normalize.
The text was updated successfully, but these errors were encountered:
Currently, normalization on flat expressions only attempts to match the pattern to the full expression, not subexpressions. Thus, given the rule
f(x) * g(x) => x
, the termf(1) * g(1)
will return1
, but the term f(1) * g(1) * h()` will not normalize.The text was updated successfully, but these errors were encountered: