Production System Form
A rule of the form if [condition] then [action] is sometimes called a production rule.
Lisp’s COND form provides a means to implement rule testing and application.
; Example structure:
(COND
(condition1 action1)
(condition2 action2)
...
(conditionN actionN)
)
Previous slide
Next slide
Back to first slide
View graphic version