Properties of motion planning algorithms

Published:

Properties of motion planning algorithms

Completeness

  • If a solution exists, planner the algorithm always finds a solution
  • If no solution exists, terminates and reports failure

Optimality

  • Given a cost function for evaluating a sequence of actions, planner always returns a feasible sequence of actions with minimal cost

Example A*

Q. is a* complete?

A. yes

Q. is a* optimal?

A. It’s up to the heuristic function. If below conditions are met, then the a* is optimal

  1. the branching factor is finite
  2. arc costs are strictly positive
  3. if the heuristic is admissible

A* proof