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
With the following program:
f(g(a)). f(g(b)).
I get:
?- f(g(X)). X = a, unexpected, incomplete. ?- f(g(b)). true. % expected
The text was updated successfully, but these errors were encountered:
Fix incompleteness in matching struct arg1, re issue #204
c1cde6c
Is now working fine
$ cat /tmp/m1.pl f(g(a)). f(g(b)).
$ tpl /tmp/m1.pl Trealla Prolog (c) Infradig 2020-2023, v2.20.10 ?- f(g(X)). X = a ; X = b. ?- f(g(b)). true. ?- f(g(a)). true. ?-
Sorry, something went wrong.
Thank you a lot!
No branches or pull requests
With the following program:
I get:
The text was updated successfully, but these errors were encountered: