Heuristic Search for Path Finding with Refuelling
Shizhe Zhao, Anushtup Nandy, Howie Choset, Sivakumar Rathinam, Zhongqiang Ren
TL;DR
The paper tackles the Gas Station Problem (GSP), a fuel-constrained path-finding problem where edge costs are fuel use and vertices have refuelling prices, bounded by tank capacity $q_{max}$ and max stops $k_{max}$. It introduces Refuel $A^*$ (RF-$A^*$), a heuristic A*-style search that builds and prunes labeled partial paths using dominance rules, while precomputing reachable sets and an admissible heuristic to guide search. RF-$A^*$ is proven to be complete and optimal, and experiments show it substantially outperforms dynamic programming and mixed-integer programming baselines on large city graphs, achieving 2–8x speedups over DP and up to 64x when a cached heuristic is available. The approach enables scalable, exact planning for fuel-constrained robots in urban networks, with potential extensions to time-varying environments and multi-agent settings.
Abstract
This paper considers a generalization of the Path Finding (PF) problem with refuelling constraints referred to as the Gas Station Problem (GSP). Similar to PF, given a graph where vertices are gas stations with known fuel prices, and edge costs are the gas consumption between the two vertices, GSP seeks a minimum-cost path from the start to the goal vertex for a robot with a limited gas tank and a limited number of refuelling stops. While GSP is polynomial-time solvable, it remains a challenge to quickly compute an optimal solution in practice since it requires simultaneously determine the path, where to make the stops, and the amount to refuel at each stop. This paper develops a heuristic search algorithm called Refuel A$^*$ (RF-A$^*$) that iteratively constructs partial solution paths from the start to the goal guided by a heuristic while leveraging dominance rules for pruning during planning. RF-A$^*$ is guaranteed to find an optimal solution and often runs 2 to 8 times faster than the existing approaches in large city maps with several hundreds of gas stations.
