So I have to write different procedures that will help me solve the farmer-wolf-goat-cabbage-fertilizer puzzle. For those of you that don't know it, it involves a farmer having to cross from the North bank of a river to the South bank with all the other objects. A bank is rendered safe in 3 situations: the farmer is present OR, the wolf is not left with the goat OR, the goat is not left behind with the cabbage. For the purpose of the exercise, the variables will be [f,b,g,w,c].

The procedure (choose(Bank, Items)) I am stuck at involves finding a list of 1 or 2 elements (always including the farmer - f), that could be part of a transport from a Bank without leaving it unsafe.

If one does choose([g,f,b], Items), the possible returned values for Items can be [f], [f,g], [f,b]. However, if we do choose([g,f,c], Items), the only possible values returned are [f,c] or [f,g], since the goat and cabbage cannot be left behind together.

Thus, could anyone please give me a hint how to get all possible options for Items but in lists no longer than 2 items?

link|improve this question

can you explicit the variables name please ? It's unclear presently ! – Mog Dec 1 '11 at 16:52
The variable names are just the initials of the objects - Farmer, Wolf, Goat, Cabbage, b for Bag of Fertilizer. Bank is just a list containing different objects. – Sorin Cioban Dec 1 '11 at 16:55
feedback

1 Answer

up vote 1 down vote accepted

I can't test right now but I guess that you could write something like :

choose(Bank, [f, Other]) :-
    select(f, Bank, Rest),
    select(Other, Rest, LeftBehind),
    safe(LeftBehind).
choose(Bank, [f]) :-
    select(f, Bank, LeftBehind),
    safe(LeftBehind).
link|improve this answer
looks good, just don't forget you always have to take "f" with you. Also, can you make it so as to use append/3, please? Thanks :) – Sorin Cioban Dec 1 '11 at 17:55
I don't understand one thing though - Items is initially empty, why are we checking if it's a subset of Bank? Also, there always needs to be just one element taken from Bank, the other one in Items being f. f is always in Bank as otherwise a transport cannot be made. – Sorin Cioban Dec 1 '11 at 18:22
there you go ! Now it's correct :) – Mog Dec 1 '11 at 19:04
Thanks a lot!!! – Sorin Cioban Dec 1 '11 at 21:42
Is there any way I could contact you to ask you another question or two? Thanks :) – Sorin Cioban Dec 2 '11 at 17:13
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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