├── .github └── workflows │ ├── build.yml │ └── docs.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── astar.nimble ├── nim.cfg ├── src └── astar.nim └── tests ├── config.nims └── t_astar.nim /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nycto/AStarNim/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nycto/AStarNim/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nycto/AStarNim/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nycto/AStarNim/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nycto/AStarNim/HEAD/README.md -------------------------------------------------------------------------------- /astar.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nycto/AStarNim/HEAD/astar.nimble -------------------------------------------------------------------------------- /nim.cfg: -------------------------------------------------------------------------------- 1 | --hint[Processing]:off 2 | -------------------------------------------------------------------------------- /src/astar.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nycto/AStarNim/HEAD/src/astar.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | switch("path", "$projectDir/../src") -------------------------------------------------------------------------------- /tests/t_astar.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nycto/AStarNim/HEAD/tests/t_astar.nim --------------------------------------------------------------------------------