https://github.com/nuclearredeye/pathfinding
Experiment looking at different pathfinding algorithms
https://github.com/nuclearredeye/pathfinding
astar experiment frontier typescript
Last synced: over 1 year ago
JSON representation
Experiment looking at different pathfinding algorithms
- Host: GitHub
- URL: https://github.com/nuclearredeye/pathfinding
- Owner: NuclearRedeye
- License: mit
- Created: 2020-04-23T08:12:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-21T07:29:31.000Z (about 5 years ago)
- Last Synced: 2025-01-11T11:20:01.623Z (over 1 year ago)
- Topics: astar, experiment, frontier, typescript
- Language: TypeScript
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Pathfinding
Experiment in generating paths through graphs.
## Prerequisites
* You have a Linux or OSX machine. Windows should be supported via WSL 2 but has not been tested.
* You have installed a recent version of [GNU Make](https://www.gnu.org/software/make/).
* You have installed a recent version of [Docker](https://www.docker.com/).
## Quick Start
You can build the project for development using...
```
make
```
You can also package the project for distribution using...
```
make release
docker build -t pathfinding:latest .
```
## License
Licensed under [MIT](https://choosealicense.com/licenses/mit/).