?? fig23_4.pl
字號:
% Figure 23.4 Explanation-based generalization.
% ebg( Goal, GeneralizedGoal, SufficientCondition) if
% SufficientCondition in terms of operational predicates
% guarantees that generalization of Goal, GeneralizedGoal, is true.
% GeneralizedGoal must not be a variable
ebg( true, true, true) :- !.
ebg( Goal, GenGoal, GenGoal) :-
operational( GenGoal),
call( Goal).
ebg( (Goal1,Goal2), (Gen1,Gen2), Cond) :- !,
ebg( Goal1, Gen1, Cond1),
ebg( Goal2, Gen2, Cond2),
and( Cond1, Cond2, Cond). % Cond = (Cond1,Cond2) simplified
ebg( Goal, GenGoal, Cond) :-
not operational( Goal),
clause( GenGoal, GenBody),
copy_term( (GenGoal,GenBody), (Goal,Body)), % Fresh copy of (GenGoal,GenBody)
ebg( Body, GenBody, Cond).
% and( Cond1, Cond2, Cond) if
% Cond is (possibly simplified) conjunction of Cond1 and Cond2
and( true, Cond, Cond) :- !. % (true and Cond) <==> Cond
and( Cond, true, Cond) :- !. % (Cond and true) <==> Cond
and( Cond1, Cond2, ( Cond1, Cond2)).
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -