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