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, the normal form is not stable by substitution. Tuples are represented as sorted arrays, this property is not preserved by substitution. There are 3 possible ways to fix it:
Change the normal form and remove the constraint on the array to be sorted. This solution has an impact on the equivalence test, which currently relies on this property.
Do the sorting after the substitution. Could have an impact on speed
Use another representation that preserves the equivalence modulo AC.
Also, one need to check that replacing a variable in the head position by an arrow is currently correctly handle.
The text was updated successfully, but these errors were encountered:
Currently, the normal form is not stable by substitution. Tuples are represented as sorted arrays, this property is not preserved by substitution. There are 3 possible ways to fix it:
Also, one need to check that replacing a variable in the head position by an arrow is currently correctly handle.
The text was updated successfully, but these errors were encountered: