We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the same pattern variable is repeated within a signature, e.g.
@pattern egal(x, x) = true @pattern egal(x, y) = false
the pattern should require all occurrences to match the same value.
This should probably be accomplished by joining all the bound nodes into the same egal-equivalence class. This will require
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When the same pattern variable is repeated within a signature, e.g.
the pattern should require all occurrences to match the same value.
This should probably be accomplished by joining all the bound nodes into the same egal-equivalence class. This will require
a fixed point.
The text was updated successfully, but these errors were encountered: