elvout / cs393r

CS 393R Graduate Autonomous Robots, Fall 2021 | Autobots
0 stars 0 forks source link

Add Graph Search Algorithms #63

Closed elvout closed 3 years ago

elvout commented 3 years ago

Summary

This PR introduces implementations of Dijkstra's algorithm and A for path finding on map graphs. In general, A should be used to reduce computation time. The heuristic used for A* is octile distance.

Limitations

Closes #61