几个小时前我开始学习Prolog,而且我很难尝试为农民问题实施解决方案。我知道网络中有很多例子,但为了学习的目的,我想了解为什么我的代码不起作用,方法是否有效,以及 what&#39 ; s推理像这样的问题的正确方法。
见下面的代码。我所做的是:
到目前为止我所取得的成就是:
我认为我发现了问题,如果我错了,请纠正我:如果解决方案需要3个以上的步骤,则最后行程规则评估至少两次,并且在第一次递归执行后, PreviousStates 累加器不为空。当统一?已探索的答案时, not(member(Next,PreviousStates)) 会失败,因为 Next state包含的变量将匹配 PreviousStates 列表中已有的内容。
所以,我的问题是:
提前感谢您的帮助!
%Define what are the unsafe states for the Farmer, Goat, Cabbage and Wolf
unsafeState(F,G,C,W) :-
(C=G, not(C=F));
(G=W, not(G=F)).
safeState(F,G,C,W) :- not(unsafeState(F,G,C,W)).
%Define what are the valid and safe transitions
isSafeTransition(state(F,F,C,W),state(Fend,Fend,C,W)) :- safeState(F,F,C,W), safeState(Fend,Fend,C,W).
isSafeTransition(state(F,G,F,W),state(Fend,G,Fend,W)) :- safeState(F,G,F,W), safeState(Fend,G,Fend,W).
isSafeTransition(state(F,G,C,F),state(Fend,G,C,Fend)) :- safeState(F,G,C,F), safeState(Fend,G,C,Fend).
isSafeTransition(state(F,G,C,W),state(Fend,G,C,W)) :- safeState(F,G,C,W), safeState(Fend,G,C,W).
% Initial matching rule
trip(A,B,Path):- trip(A,B,Path, []).
% Finishing rule
trip(CurrentState, EndState,Path, _):-
[CurrentState| [EndState|[]] ] = Path,
isSafeTransition(CurrentState, EndState).
trip(CurrentState,EndState,Path, PreviousStates):-
[CurrentState|[Next|Tail]] = Path,
not(member(Next,PreviousStates)),
isSafeTransition(CurrentState,Next),
trip(Next,EndState, [Next|Tail], [CurrentState|PreviousStates]).
答案 0 :(得分:0)
我自己发现了这个问题,我发布了解释,以防有人帮忙。
问题在于没有任何限制职位可能值的规则。基本上我忘记将可能的值限制为 n 或 s ......
解决查询时,变量的潜在值是无限的。这就是为什么包含变量的状态存储在累加器中并与下一个状态匹配的原因。
为了解决这个问题,我已经添加了两个事实来定义有效的职位值,并修改了控制状态是否有效的规则或不包括这些价值观。
在下面找到固定程序:
% Define the valid sides for any participant
side(n).
side(s).
% Define what are the valid states for the Farmer, Goat, Cabbage and Wolf
unsafeState(F,G,C,W) :-
(C=G, not(C=F));
(G=W, not(G=F)).
validState(F,G,C,W) :-
side(F),side(G),side(C),side(W),
not(unsafeState(F,G,C,W)).
%Define what are the valid and safe transitions
isSafeTransition(state(F,F,C,W),state(Fend,Fend,C,W)) :-
validState(F,F,C,W), validState(Fend,Fend,C,W).
isSafeTransition(state(F,G,F,W),state(Fend,G,Fend,W)) :-
validState(F,G,F,W), validState(Fend,G,Fend,W).
isSafeTransition(state(F,G,C,F),state(Fend,G,C,Fend)) :-
validState(F,G,C,F), validState(Fend,G,C,Fend).
isSafeTransition(state(F,G,C,W),state(Fend,G,C,W)) :-
validState(F,G,C,W), validState(Fend,G,C,W).
% Initial matching rule
trip(A,B,Path):- trip(A,B,Path, []).
% Finishing rule
trip(CurrentState, EndState,Path, _):-
[CurrentState| [EndState|[]] ] = Path,
isSafeTransition(CurrentState, EndState).
trip(CurrentState,EndState,Path, PreviousStates):-
[CurrentState|[Next|Tail]] = Path,
not(member(CurrentState,PreviousStates)),
isSafeTransition(CurrentState,Next),
trip(Next,EndState, [Next|Tail], [CurrentState|PreviousStates]).
我仍然是Prolog的新手,所以如果有人可以做任何更正,请做!