the problem is to exchange 2 black knights positions with two white knights in a 3x3 chessboard,see the link http://www.puzzles.com/puzzleplayground/FourKnights/FourKnights.htm i have to make prolog give me at least one solution, and i am totally lost after these steps.
%mouvement possibilities
mouv(2,1).
mouv(-2,1).
mouv(2,-1).
mouv(-2,-1).
mouv(1,2).
mouv(-1,2).
mouv(1,-2).
mouv(-1,-2).
%conditions for valid mouvement
%not going out of the small chessboard
pos(X,Y):- X<4 ,X>0,Y<4,Y>0.
%free position
%????????
%initial positions
kgt(b,3,1).
kgt(b,3,3).
kgt(w,1,3).
kgt(w,1,1).
%mouv knight
%???
What should I do next?