function SIMPLE-RELEX-AGENT(percept) returns an action persistent: rules, a set of condition-action rules state <- INTERPRET-INPUT(percept); rule <- RULE-MATCH(state, rules); action <- rule.ACTION; return actionFigure 2.10 A simple reflex agent. It acts according to a rule whose condition matches the current state, as defined by the percept. @author Ciaran O'Reilly @author Mike Stampone
|
|
|
|