dijkstra-suite 0.1.0-beta.3

A Dijkstra's algorithm implementation that aims to be simple to use and fast to run
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
run:
	cargo run

watch:
	watchexec --notify -r -- cargo run

test:
	watchexec --notify -r -- cargo test

doc:
	cargo doc && python3 -m http.server 1989 --directory target/doc

example:
	watchexec --notify -r -- cargo run --example simple