📄 fig15_7.pl
字号:
% Figure 15.7 A forward chaining rule interpreter.
% Simple forward chaining in Prolog
forward :-
new_derived_fact( P), % A new fact
!,
write( 'Derived: '), write( P), nl,
assert( fact( P)),
forward % Continue
;
write( 'No more facts'). % All facts derived
new_derived_fact( Concl) :-
if Cond then Concl, % A rule
not fact( Concl), % Rule's conclusion not yet a fact
composed_fact( Cond). % Condition true?
composed_fact( Cond) :-
fact( Cond). % Simple fact
composed_fact( Cond1 and Cond2) :-
composed_fact( Cond1),
composed_fact( Cond2). % Both conjuncts true
composed_fact( Cond1 or Cond2) :-
composed_fact( Cond1)
;
composed_fact( Cond2).
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -