paper-with-me

홈 › Papers

ERA*: Enhanced Relaxed A* algorithm for Solving the Shortest Path Problem in Regular Grid Maps

2023-08-15 · Adel Ammar

This paper introduces a novel algorithm for solving the point-to-point shortest path problem in a static regular 8-neighbor connectivity (G8) grid. This algorithm can be seen as a generalization of Hadlock algorithm to G8 grids, and is shown to be theoretically equivalent to the relaxed $A^*$ ($RA^*$) algorithm in terms of the provided solution's path length, but with substantial time and memory savings, due to a completely different computation strategy, based on defining a set of lookup matrices. Through an experimental study on grid maps of various types and sizes (1290 runs on 43 maps), it is proven to be 2.25 times faster than $RA^*$ and 17 times faster than the original $A^*$, in average. Moreover, it is more memory-efficient, since it does not need to store a G score matrix.

📄 PDF Abstract BibTeX arXiv:2308.10988

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Reconfiguring Shortest Paths in Graphs

2021-12-14 · Kshitij Gajjar, Agastya Vibhuti Jha, Manish Kumar, Abhiruk Lahiri

Reconfiguring two shortest paths in a graph means modifying one shortest path to the other by changing one vertex at a time so that all the intermediate paths are also shortest paths. This problem has several natural app…

$A^*$ for Graphs of Convex Sets

2024-07-24 · Kaarthik Sundar, Sivakumar Rathinam

We present a novel algorithm that fuses the existing convex-programming based approach with heuristic information to find optimality guarantees and near-optimal paths for the Shortest Path Problem in the Graph of Convex …

Delta Epsilon Alpha Star: A PAC-Admissible Search Algorithm

2016-08-08 · David Cox

Delta Epsilon Alpha Star is a minimal coverage, real-time robotic search algorithm that yields a moderately aggressive search path with minimal backtracking. Search performance is bounded by a placing a combinatorial bou…

Enhanced Methods for the Weight Constrained Shortest Path Problem

2022-07-29 · Saman Ahmadi, Guido Tack, Daniel Harabor, Philip Kilby 외

The classic problem of constrained pathfinding is a well-studied, yet challenging, topic in AI with a broad range of applications in various areas such as communication and transportation. The Weight Constrained Shortest…

Tightest Admissible Shortest Path

2023-08-15 · Eyal Weiss, Ariel Felner, Gal A. Kaminka

The shortest path problem in graphs is fundamental to AI. Nearly all variants of the problem and relevant algorithms that solve them ignore edge-weight computation time and its common relation to weight uncertainty. This…