Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aljones15/simplepathfinding
implementing simple path finding algorithms in Haskell
https://github.com/aljones15/simplepathfinding
haskell ncurses nix searching-algorithms
Last synced: 8 days ago
JSON representation
implementing simple path finding algorithms in Haskell
- Host: GitHub
- URL: https://github.com/aljones15/simplepathfinding
- Owner: aljones15
- License: bsd-3-clause
- Created: 2017-05-07T10:18:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-07T12:44:58.000Z (over 2 years ago)
- Last Synced: 2023-11-07T18:01:08.168Z (about 1 year ago)
- Topics: haskell, ncurses, nix, searching-algorithms
- Language: Haskell
- Size: 13.5 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# PathFinder
```
cabal update
cabal install
cabal configure
nix-build PathFinder.nix
cd ./result/bin
./Path-Finder.exe
if you get any dep failures just do cabal install
```
## ToDO
- [ ] work on BreadthFirst
- [ ] work on Djistrka
- [ ] implement A* Star
- [X] try a nix-build on mac