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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

seq

A

action sequence initially empty

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

state

A

some description of the current world state

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

goal

A

a goal, initially null

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

problem

A

a problem formulation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly