Expand description
Lifelong Planning A* (LPA*) path planning algorithm
An incremental version of A* that efficiently replans when edge costs
change. Each node maintains two values: g (cost-so-far) and rhs
(one-step lookahead of g). When edge costs change only affected nodes
are updated, avoiding a full replan.
Reference: Koenig & Likhachev (2002), “D* Lite”
Structs§
- Edge
Change - Describes a single edge-cost change for incremental replanning.
- LPAStar
Config - Configuration for the LPA* planner.
- LPAStar
Planner - Lifelong Planning A* planner.