fig15_7.pl
来自「超多的prolog源代码 具体内容见压缩包里面的programs.txt」· PL 代码 · 共 31 行
PL
31 行
% 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 + =
减小字号Ctrl + -
显示快捷键?