updated starting data

This commit is contained in:
Raphaël LACROIX 2023-03-15 19:25:30 +01:00
parent 025860fc8f
commit fd37388339

View file

@ -180,8 +180,8 @@ delete(N,X,[Y|L], [Y|R]) :-
%*************
heuristique(U,H) :-
heuristique1(U, H). % au debut on utilise l'heuristique 1
% heuristique2(U, H). % ensuite utilisez plutot l'heuristique 2
% heuristique1(U, H). % au debut on utilise l'heuristique 1
heuristique2(U, H). % ensuite utilisez plutot l'heuristique 2
%****************
@ -207,7 +207,7 @@ diff(_,_) :- true.
heuristique1(U,H) :-
findall(X,
(final_state(Fin), coordonnees([L,C], U, X)
(final_state(Fin), coordonnees([L,C], U, X),
coordonnees([L,C], Fin, Y), diff(X,Y)),
Count),
length(Count, H).