Implementation of IBAS: Index Based A-Star proposed by Yan Li, Hongyan Zhang, Huaizhong Zhu, Jianwei Li, Wenjie Yan and Youxi Wu (Member, IEEE). The Research Paper aims to solve the shortest path problem in a weighted directed acyclic graph with unknown vertex coordinates and compared this algorithm with IBAS-S (which uses only static pruning), A-Star and Dijsktra algorithms to find its working efficiency.
The main contributions of this study are threefold:
- Proposed methods for constructing the earliest arrival index, reverse earliest arrival index, and latest arrival index in a weighted DAG.
- Presented an index-based A-star algorithm, IBAS, which uses the earliest arrival index to construct the evaluation function of the A-star algorithm, and also employs the above three indexes to achieve effective pruning.
- Through extensive experiments, demonstrated that IBAS can effectively boost the speed of traditional algorithms, and the efficiency of the reachability cost index is high.

