problem solving agents(slides3) Flashcards
1
Q
problem solving agent
A
particular type of goal based agent
-Search agents use atomic representation of environment
- planning agents use structured representation
- solutions can be fixed sequence of actions and may depend on a future percept
2
Q
problem solving agent code
A
function SIMPLE-PROBLEM-SOLVING-AGENT(percept) returns an action
static: seq, state, goal, problem
state<–Rest(seq)
return action
3
Q
seq
A
action sequence initially empty
4
Q
state
A
some description of the current world state
5
Q
goal
A
a goal, initially null
6
Q
problem
A
a problem formulation