Skip to main content

Module ida_star

Module ida_star 

Source
Expand description

Iterative Deepening A* (IDA*) path planning algorithm.

IDA* combines the admissible heuristic of A* with repeated depth-first contour searches over increasing f = g + h thresholds. It uses much less memory than A* at the cost of re-expanding states across iterations.

Structs§

ContourStats
Per-contour (per-threshold-iteration) statistics for IDA* diagnostics.
IDAStarConfig
Configuration for IDA*.
IDAStarPlanReport
IDAStarPlanner
IDA* planner on an 8-connected occupancy grid.
IDAStarSearchStats
Search-effort statistics collected during one IDA* query.

Enums§

IDAStarPlanOutcome