I want to use any kind of depth-first search to solve the 7 Liter and 5 Liter to 4 Liter Puzzle in SWI-Prolog
I have no idea how I could start..
I want to get 4 Liters in a Jug at the end
solve(JUG1, JUG2) :- fill(JUG1, JUG2), swap(JUG1, JUG2).
fill(JUG1,JUG2) :- JUG1 = 7, JUG2 = 5.
%i dont know about that
swap(JUG1, JUG2) :- JUG1 = JUG2.
I had the exact same problem to solve and I found my code on my PC for that:
We are using iterative deepening depth-first search to combine the advantages of a breath and depth search. With the following code we are trying possible combinations to reach our goal which is 4 liter at the end in one jug. If we find a solution we will print it accordingly.
You can call the solution predicate as following:
One of the solutions should be for example
If you have any questions feel free to answer.