An open API service indexing awesome lists of open source software.

https://github.com/lwakefield/a_star.cr


https://github.com/lwakefield/a_star.cr

astar-algorithm crystal crystal-lang

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# a_star.cr

This is a simple implementation of the A* search algorithm implemented in Crystal.

The implementation is generic, requiring you pass a graph that parameter that implements `neighbors`, `move_cost` and `heuristic`. See `alg_spec.cr` for examples.