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
I don't know if you like it but here is another discrepancy: (*->/2) $ cat ite_3.pl main :- member(X,[true,\+true]), ( member(X,[\+true,true,\+true]) *-> write(here1) ; member(X,[true,\+true,true]) *-> write(here2) ), write({X}), fail. $ SWI, EcLiPsE here1{true}here1{\+true}here1{\+true} $ tpl ite3_pl # v2.63.25 ?- main. here1{true}here2{true}here2{true}here1{\+true}here1{\+true}
I don't know if you like it but here is another discrepancy: (*->/2)
$ cat ite_3.pl main :- member(X,[true,\+true]), ( member(X,[\+true,true,\+true]) *-> write(here1) ; member(X,[true,\+true,true]) *-> write(here2) ), write({X}), fail. $ SWI, EcLiPsE here1{true}here1{\+true}here1{\+true} $ tpl ite3_pl # v2.63.25 ?- main. here1{true}here2{true}here2{true}here1{\+true}here1{\+true}
Originally posted by @flexoron in #651
The text was updated successfully, but these errors were encountered:
Simplify slightly...
main :- member(X,[true,false]), ( member(X,[false,true,false]) *-> write(here1) ; write(here2) ), write({X}), fail.
Sorry, something went wrong.
Fix for Problem with soft-if-then-else, re issue #660
b611e6c
No branches or pull requests
Originally posted by @flexoron in #651
The text was updated successfully, but these errors were encountered: