dijkstra icon indicating copy to clipboard operation
dijkstra copied to clipboard

Fastest golang Dijkstra path finder

Results 6 dijkstra issues
Sort by recently updated
recently updated
newest added

Hi! How to upgrade to v2.0.0 properly? https://go.dev/doc/modules/version-numbers ``` PS D:\projects\***\third_party> go get -v -u github.com/RyanCarrier/[email protected] go: github.com/RyanCarrier/[email protected]: invalid version: module contains a go.mod file, so module path must match...

Hi, it could be nice to have distance of edges as float type. The best could be to be able to choose my own data type, which is probably hard...

Hi, I'm starting using this project and I'm facing some issues with this code: ``` package main import ( "fmt" "log" "github.com/RyanCarrier/dijkstra/v2" ) func main() { dijkstraMapped() } func dijkstraMapped()...