从小处着手,写下你所知道的。
simplify(plus(times(x,y),times(3 ,minus(x,y))),V,[x:4,y:2]):- V = 14.
是一个非常好的开始:(+ (* 4 2) (* 3 (- 4 2))) = 8 + 3*2 = 14
. 但是,当然,
simplify(times(x,y),V,[x:4,y:2]):- V is 4*2.
甚至更好。还,
simplify(minus(x,y),V,[x:4,y:2]):- V is 4-2.
simplify(plus(x,y),V,[x:4,y:2]):- V is 4+2.
simplify(x,V,[x:4,y:2]):- V is 4.
所有完美的 Prolog 代码。但当然,我们真正的意思是,很明显,是
simplify(A,V,L):- atom(A), getVal(A,L,V).
simplify(C,V,L):- compound(C), C =.. [F|T],
maplist( simp(L), T, VS), % get the values of subterms
calculate( F, VS, V). % calculate the final result
simp(L,A,V):- simplify(A,V,L). % just a different args order
等getVal/3
将需要以某种方式从L
列表中检索值,并calculate/3
在给定符号操作名称和计算值列表的情况下实际执行计算。
研究maplist/3
和=../2
。
(未完成,未测试)。
好吧,maplist
这有点矫枉过正=..
:你所有的条款都可能是op(A,B)
. 所以定义可以简化为
simplify(plus(A,B),V,L):-
simplify(A,V1,L),
simplify(B,V2,L),
V is V1 + V2. % we add, for plus
simplify(minus(A,B),V,L):-
% fill in the blanks
.....
V is V1 - V2. % we subtract, for minus
simplify(times(A,B),V,L):-
% fill in the blanks
.....
V is .... . % for times we ...
simplify(A,V,L):-
number(A),
V = .... . % if A is a number, then the answer is ...
最后一种可能性是,x
或y
等等,满足atom/1
。
simplify(A,V,L):-
atom(A),
retrieve(A,V,L).
所以上面子句的最后一个调用可能看起来像retrieve(x,V,[x:4, y:3])
,或者看起来像retrieve(y,V,[x:4, y:3])
。实施起来应该是一件简单的事情。