fig15_6.pl
来自「超多的prolog源代码 具体内容见压缩包里面的programs.txt」· PL 代码 · 共 26 行
PL
26 行
% Figure 15.6 A backward chaining interpreter for if-then rules.
% A simple backward chaining rule interpreter
:- op( 800, fx, if).
:- op( 700, xfx, then).
:- op( 300, xfy, or).
:- op( 200, xfy, and).
is_true( P) :-
fact( P).
is_true( P) :-
if Condition then P, % A relevant rule
is_true( Condition). % whose condition is true
is_true( P1 and P2) :-
is_true( P1),
is_true( P2).
is_true( P1 or P2) :-
is_true( P1)
;
is_true( P2).
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?