I have 3 jugs of water problem to solve but with a little trick.I dont have to use an algorithm but to have a 'function' that allows to user to move litres from on jug to another with an initial and final state that its written also by him.

For example he writes initial(10,0,0,0,r) and the first state is 10 litres in first and zero in the other two, also he writes final(0,3,3,3,l) and the final state has 3 litres in the two smaller jugs and zero in the first one.

The 'moves' between the jugs happen when he writes go(7,3,r) where he moves 3 litres to the right (from right to left we have the jugs form bigger to smaller) from bigger to the second jug, -7 is the litres that are left and 3 are the litres to be moved and r is the direction-.

And i have written this prolog code but every go-state is false..Has anyone any idea why??

:- dynamic go/3.
:- dynamic cur_state/1,init/5.
:- dynamic end_state/1, final/5.

cur_state(State):-State = state(10,0,0,7,l).
end_state(State):-State = state(0,3,3,0,r).

pour(state(D1,D2,D3,N,l),move(D,C,r),state(D,C,D3,N,r)) :-
        D is D1-N,
        C is D2+N.
pour(state(D1,D2,D3,N,r),move(D,C,l),state(D,C,D3,N,l)) :-
        D is D1-N,
        C is D2.
pour(state(D1,D2,D3,N,l),move(D,C,r),state(D,D2,C,N,r)) :-
        D is D1-N,
        C is D3+N.
pour(state(D1,D2,D3,N,l),move(D,C,r),state(D1,D,C,N,r)) :-
        D is D2-N,
        C is D3+N.
pour(state(D1,D2,D3,N,r),move(D,C,l),state(D1,D,C,N,l)) :-
        D is D2-N,
        C is D1+N.
pour(state(D1,D2,D3,N,r),move(D,C,l),state(D1,D,c,N,l)) :-
        D is D2-N,
        C is D3.
pour(state(D1,D2,D3,N,l),move(D,C,r),state(C,D2,D,N,r)) :-
        D is D3-N,
        C is D1.
pour(state(D1,D2,D3,N,r),move(D,C,l),state(D1,C,D,N,l)) :-
        D is D3-N,
        C is D2+N.
pour(state(D1,D2,D3,N,r),move(D,C,l),state(C,D2,D,N,l)) :-
        D is D3-N,
        C is D1+N.

carry(7,0).
carry(3,0).
carry(10,0).
carry(4,0).
carry(7,3).

legal(10,X,Y):-X+Y=<10.
legal(X,Y,Z):-X+Y+Z=<10.
legal(X,7,Y):-X+Y=<3.
legal(X,Y,3):-X+Y=<7.

newstate(state(D1,D2,D3,N,l),state(D11,D22,D33,N1,r)):-
        carry(M,C),
        M=<7,C=<3,
        D22 is D2+N,
        D11 is D1-N,
    D3 is D33,
    N1 is N,
        D2=<7,D1=<10,
    legal(D1,D2,D3).

newstate(state(D1,D2,D3,N,r),state(D11,D22,D33,N1,l)):-
        carry(M,C),
        M=<10,C=<100,
        D11 is D1-N,
    D22 is D2,
    D33 is D3,
        D1=<10,
    legal(D1,D2,D3).

newstate(state(D1,D2,D3,N,l),state(D11,D22,D33,N1,r)):-
        carry(M,C),
        M=<10,C<3,
        D11 is D1-N,
        D33 is D3+N,
    D22 is D2,
        D1=<10,D3=<3,
    legal(D1,D2,D3).

newstate(state(D1,D2,D3,N,r),state(D11,D22,D33,N1,l)):-
        carry(M,C),
        M=<7,C=<3,
        D22 is D2-N,
        D33 is D1+N,
        D11 is D1,
        D2=<7,D1=<10,
    legal(D1,D2,D3).

newstate(state(D1,D2,D3,N,l),state(D11,D22,D33,N1,r)):-
        carry(M,C),
        M=<7,C=0,
        D22 is D2-N,
        D33 is D3+N,
        D11 is D1,
    D2=<7,D3=<3,
    legal(D1,D2,D3).

newstate(state(D1,D2,D3,N,r),state(D11,D22,D33,N1,l)):-
        carry(M,C),
        M=<7,C=<100,
        D22 is D2-N,
    D33 is D3,
    D11 is D1,    
    D2=<7,
    legal(D1,D2,D3).

newstate(state(D1,D2,D3,N,r),state(D11,D22,D33,N1,l)):-
        carry(M,C),
        M=<3,C=<7,
        D22 is D2+N,
        D33 is D3-N,
        D11 is D1,
    D3=<3,D2=<7,
    legal(D1,D2,D3).

newstate(state(D1,D2,D3,N,r),state(D11,D22,D33,N1,l)):-
        carry(M,C),
        M=<3,C=<100,
        D11 is D1+N,
        D33 is D3-N,
        D22 is D2,
    D3=<3,D1=<10,
    legal(D1,D2,D3).

newstate(state(D1,D2,D3,N,l),state(D11,D22,D33,N1,r)):-
        carry(M,C),
        M=<3,C=<100,
        D33 is D3-N,
        D22 is D2,
    D11 is D1,  
    D3=<3,
    legal(D1,D2,D3).


eisodos(_):- cur_state(State),write(State),nl.

init(S1,S2,S3,S4,S5):-assert(cur_state(State):-State =                 state(S1,S2,S3,S4,S5)),write('Arxikh:'),
write(state(S1,S2,S3,S4,S5)),retractall(init(S1,S2,S3,S4,S5)),nl.

final(S1,S2,S3,S4,S5):-assert(end_state(State):-State =  state(S1,S2,S3,S4,S5)),write('Telikh:'),
write(state(S1,S2,S3,S4,S5)),retractall(final(S1,S2,S3,S4,S5)),nl.

go(Move1,Move2,Move3):-cur_state(State),newstate(State,NextState),
    pour(State,move(Move1,Move2,Move3), NextState),
    retractall(cur_state(State):-State = state(_,_,_,_,_)),asserta(cur_state(NextState)),
    ((end_state(NextState),write('Bravo!!!!')) ;(write(' ---*Eiste sthn katastash --- :'),write(NextState))),nl.
link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

It's hard to make sense of what you've written. If initial state is ini(10,0,0,0,r), what are the last two arguments there? you only have three jugs don't you? Why final state is fin(0,3,3,3,r)? What do the last 3 and r mean??

You have three jugs, so your state just has three values in it: s(A,B,C). You seem to want to have it dynamically redefined on the go. Fine. Your go(...) predicate will call retract/assert and will have to take care of the logic. If you want your user to be able to say "pour to the right" why do you insist on him to write also how much water is left in the jug??? That seems wrong, your system must calculate that value, and update your current dynamic database with it. Plus, "pour to the right" from where ?? Seems to me, your go(7,3,r) says "pour from a '7'-jug the 3 liters of water into the jug to the right of it", but if so, why do you need to specify the amount at all?? Isn't it contrary to the usual specification of the jugs problem, where you do not have any ability to measure and are just instead given the jugs' capacities? Does it instead mean "pour all the water you can from a '7' jug into a '3' jug"? If so, r has no function.

So please clarify your problem. And lastly, what are your jugs' capacities?

EDIT: Well, after clarifications in the comments below about the rules, I would code this as follows:

%% to be called: initial(10-10,7-0,3-0).
%% to be called: final(10-0,7-3,3-3).

initial(C1-W1,C2-W2,C3-W3):- % capacity-water_content
  retractall( jug(_,_) ), 
  asserta( jug(C1,W1) ),
  asserta( jug(C2,W2) ),
  asserta( jug(C3,W3) ).

final(C1-W1,C2-W2,C3-W3):- 
  retractall( end_jug(_,_) ), 
  asserta( end_jug(C1,W1) ),
  asserta( end_jug(C2,W2) ),
  asserta( end_jug(C3,W3) ).

jugsState(L) :- findall(X-W, jug(X,W), L). % see the state

go(Cfrom,0):-  !, % pour out the water
  retract( jug(Cfrom,_) ), 
  asserta( jug(Cfrom,0) ),
  is_final_state.

go(Cfrom,Cto):-
  retract( jug(Cfrom,Wfrom) ),
  retract( jug(Cto,Wto) ),
  Space is Cto-Wto,
  (  Wfrom >= Space
  -> Wleft is Wfrom - Space,
     asserta( jug(Cfrom,Wleft) ),
     asserta( jug(Cto,Cto) )
  ;  Wnew is Wto+Wfrom,
     asserta( jug(Cfrom,0) ),
     asserta( jug(Cto,Wnew) ) ),
  is_final_state.

is_final_state :- true.

Now what's left is to define is_final_state which will check the jug facts, see if the end state is reached, print out the congratulatory message if it is, and return true always. Or something like that. The sample run can be e.g.

?- initial(10-10,7-0,3-0).
?- final(10-0,7-3,3-3).
?- go(10,7).
?- go(7,3).
?- go(7,0).
?- jugsState(X).
X = [7-0, 3-3, 10-3]
?- ....
link|improve this answer
Ok you're right.Well the capacities are 10,7,3.The last two arguments are: the first is for the litres that are going to be moved(i use it in newstate),as i didn't know how to 'connect' the init and the newstate i had to put the same number of arguments.The other argument is for the direction of move r for right and l for left. – tetartos Jan 31 at 14:09
I did the case that the jugs are from right to left 10 ,7 and 3.And go(7,3,r) means move 3 litres to the right and 7 will be left in the first jug.This can only happen with the first and third jug because we can't measure the litres and this is why we only need the direction and not the id of jug. – tetartos Jan 31 at 14:09
I can't understand you. Are you saying you're only allowed to pour water in certain direction, <-10, 10<->7, 7<->3, 3-> ? Why don't you start by stating your specification clearly and fully? Is this a Prolog question or a question of deciphering what your problem really is? In any case, if you have 3 jugs, just have 3 facts describing them, each of form jug(Capacity,Amount). Again, go can't let the user to say how much is left, it must calculate it itself. So it can be go(From,To) with From,To the capacities used as ID. go will maintain the three jug facts in consistent state. – Will Ness Jan 31 at 20:02
No i'm not saying this..go can't tell how much is left but how else can i write 'go' only for eligible moves?? For example what i say is that this way if you write how much litres are left the user specifies the exact move from another.So if he writes go(7,3,r) it can't be any other move except from 3 litres from 10 to 3.There is also go(3,0,l) which 'moves'3 litres to left so to the jug with 7 litres capacity..And there are also other moves that are described by newstate.. – tetartos Feb 1 at 6:47
I asked you to clearly and fully describe your problem statement. You still didn't. In usual formulations of 3 jugs, it is perfectly possible to say how much is left. The initial state says how much is there in each. Pouring usually involves pouring all the water that fits into the smaller jug. Then it is a matter of simple subtraction. So, what is your setting? Until you describe your problem clearly it is impossible to continue. – Will Ness Feb 1 at 9:53
show 24 more comments
feedback

I copied your code and compiled with SWI-Prolog, and I got these messages:

?- Warning: /home/carlo/prolog/jug1.pl:20:
    Singleton variables: [D3]
Warning: /home/carlo/prolog/jug1.pl:57:
    Singleton variables: [N1]
Warning: /home/carlo/prolog/jug1.pl:66:
    Singleton variables: [N1]
Warning: /home/carlo/prolog/jug1.pl:75:
    Singleton variables: [N1]
Warning: /home/carlo/prolog/jug1.pl:84:
    Singleton variables: [N1]
Warning: /home/carlo/prolog/jug1.pl:93:
    Singleton variables: [N1]
ERROR: /home/carlo/prolog/jug1.pl:102:
    evaluable `n' does not exist
ERROR: /home/carlo/prolog/jug1.pl:111:
    evaluable `n' does not exist
ERROR: /home/carlo/prolog/jug1.pl:120:
    evaluable `n' does not exist
% /home/carlo/prolog/jug1.pl compiled 0,01 sec, 32 clauses

Superficial code inspection reveals other defects, like the lower case 'c' at line 23. You should apply all the hints that you got with your previous question.

Factorize your code, this will help you to understand what's going on: newstate/2 has 9 rules, nearly identical. The only changes, errors apart (again lower case identifiers that are mispelled variables), are differents constants. It seems that state/5 really holds values related to 'moves'. You should separe these (i.e. the last 2 arguments) and pass to newstate (that should become like newstate(OldState, NumLitres, Direction, NewState)).

link|improve this answer
Thanks for your answer..i changed the c in line 23 but still i've got the same problems that you mentioned..I'm new in prolog so i'm not sure that i understand what you are suggesting..Can you give me an example? – tetartos Jan 27 at 11:23
I've read again your question, and maybe I misunderstood your problem. If you want to read the user choices, you must us read. For instance: go(Move1,Move2,Move3) :- read(Initial), read(Final), read(Move1), apply_move(Initial, Move1, Intermed1), read(Move2), apply_move(Intermed1, Move2, Intermed2),... etc. Is this what you want? – chac Jan 27 at 21:11
for example a typical condition: the user initialize with init(10,0,0,0,r) and final(0,3,3,3,r) so we start with ten litres in only one jug and we want to have fiannly 3 litres in the last two jugs.But this can only happen by the moves the user gives.So he must give four 'moves' by writing go(7,3,r),go(0,3,l),go(4,3,r),go(0,4,l). So the problem is not solved by the 'code' but by the user..Did i help you understand? – tetartos Jan 28 at 17:17
feedback

Your Answer

 
or
required, but never shown

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