In a prolog program as stated below:

town(a).
town(b).
town(c).
town(d).
dam(e).
dam(f).
link(a,b).
link(a,c).
link(c,d).
link(b,d).
link(b,c).
link(c,e).
link(a,e).
link(d,f).
neighbour(X,Y):- link(X,Y) ; link(Y,X).

Are these the correct results from the following queries:

Query 1 - ?-dam(X), once(neighbour(X,Y)),town(Y).

Results: X=e Y=c; X=f Y=d

Query 2 - ?-dam(X), neighbour(X,Y),!,town(Y).

Results: X=e Y=c

Query 3 - ?-dam(X),!,neighbour(X,Y),town(Y).

Results: X=e Y=c; X=e Y=a

link|improve this question

1  
I guess this is homework. You can try it yourself in any prolog system. – gusbro Jan 25 at 14:10
The system returns 'no' for all three, which I am almost certain is incorrect. – General_9 Jan 25 at 14:30
The results you are expecting are right. If it is returning 'no' to those queries I bet that you haven't consulted (loaded) your code. – gusbro Jan 25 at 14:56
Awesome thanks, let me see if I can consult my code. – General_9 Jan 25 at 14:58
feedback

1 Answer

The answers are correct. You can keep in mind that once(Goal) is defined as Goal, !, i.e., your third query "dam(X),!,neighbour(X,Y),town(Y)." is equivalent to "once(dam(X)),neighbour(X),town(X)."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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