vote up 1 vote down star

Hi, I'm trying to simply do a conditional in prolog like this:

((Life==dead)->Trans=no).

I thought the above code would evaluate as if Life == dead, then Trans = no, but for some reason its not? Thanks.

flag

50% accept rate

1 Answer

vote up 3 vote down

Works for me:

?- ((Life==dead)->Trans=no).
false.

?- Life = dead, ((Life == dead) -> Trans=no).
Life = dead,
Trans = no.

Life == dead will only be true if Life is already bound to dead.

Also, this is a rather strange construct that it is rarely needed in practice, (x -> y ; z) is much more common.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.