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
Here's a case that won't work properly without the unification module being able to create fresh variables:
?- [family(_), family(_)] = [X, Y]. X = family(_19418), Y = family(_19428).
?- [family(_), family(_), family(1), family(2)] = [X, Y, X, Y]. X = family(1), Y = family(2).
The current implementation will come up with X = family(_), Y = family(_) in the first example and will return false in the second one.
X = family(_), Y = family(_)
false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here's a case that won't work properly without the unification module being able to create fresh variables:
The current implementation will come up with
X = family(_), Y = family(_)
in the first example and will returnfalse
in the second one.The text was updated successfully, but these errors were encountered: