Skip to content
New issue

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

Incompleteness #204

Closed
triska opened this issue Jun 25, 2023 · 2 comments
Closed

Incompleteness #204

triska opened this issue Jun 25, 2023 · 2 comments

Comments

@triska
Copy link

triska commented Jun 25, 2023

With the following program:

f(g(a)).
f(g(b)).

I get:

?- f(g(X)).
   X = a, unexpected, incomplete.
?- f(g(b)).
   true. % expected
@josd
Copy link

josd commented Jun 25, 2023

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.
?-

@triska
Copy link
Author

triska commented Jun 25, 2023

Thank you a lot!

@triska triska closed this as completed Jun 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants