Mercurial > repos > other > SevenLanguagesInSevenWeeks
view 3-Prolog/day1-wallaceandgrommit.pl @ 68:b4f994693f7b
Fix condition check that was letting it backtrack to build a different set of rows
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 07 Oct 2017 15:43:52 +0100 |
parents | 178b18b4f9ba |
children |
line wrap: on
line source
% Start with some simple facts % Note: like semantic systems, names are intrinsicly equal variables % (or variables don't exist). Names are called "atoms" likes(wallace, cheese). likes(grommit, cheese). likes(wendolene, sheep). % Each statement ends with a fullstop % Rule syntax is a bit odd (":-" and "\+") but we're saying that X and Y % can be friends if X and Y like the same thing. % Poor Wendolene. friend(X, Y) :- \+(X = Y), likes(X, Z), likes(Y, Z). % "\+" is apparently logical negation (because of course it is) % so the first "subgoal" stops Wallace being Wallace's friend % % Note: Prolog nomenclature is that this is "friend/2" - friend func with 2 params