Planning Flashcards

1
Q

What is a plan?

A

Sequence of actions to achieve a goal

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

What is algorithm for means end planning?

A
  1. Define the goal: the desired end state or goal
  2. Analyze the current state: understand what is preventing you from reaching the final goal
  3. Generate sub goals: break the main goal into smaller intermediate states
  4. Apply operators to achieve each sub-goal: develop a series of actions that can be applied to states to progress to the end goal
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is classical planning?

A

The environment setting is:
- completely observable
- actions effects are deterministic
- changes in the world result from the actions we perform
- implicit actions (have no time to execute)

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

Is mean-end planning complete?

A

No, only some relevant actions are offered in the planning process, not all

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

What is means-end planning with goal regression?

A

Search backwards from the goal in the situation space:
- match goals to action post conditions
- action preconditions become sub goals
- We stop when the operator preconditions are satisfied in the current state.
- Only regress over relevant actions

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

What is partial order planning?

A

When there are two plans that do not interact, we do not consider all permutations of actions, we only consider the order within each plan.

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

What are some issues with means-end planning?

A
  • Plan may contain redundant steps
  • Planning may not terminate for some steps (depth first search issues)
  • Order of actions are determined by the order they are tried
  • Incompleteness
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does means-end planning with goal regression achieve?

A
  • Completeness
  • Global planning
How well did you know this?
1
Not at all
2
3
4
5
Perfectly