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, rules for * are constrained to CommutativeMulNumber types. This is unnecessary, because only two numbers at a time are multiplied, so commutation is never needed. These constraints should be relaxed.
Conversely, the scalar rule for ^ requires commutativity but makes no such type constraint. It should be limited to CommutativeMulNumber.
There may be other cases.
The text was updated successfully, but these errors were encountered:
Currently, rules for
*
are constrained toCommutativeMulNumber
types. This is unnecessary, because only two numbers at a time are multiplied, so commutation is never needed. These constraints should be relaxed.Conversely, the scalar rule for
^
requires commutativity but makes no such type constraint. It should be limited toCommutativeMulNumber
.There may be other cases.
The text was updated successfully, but these errors were encountered: