We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a05325 commit 294e5abCopy full SHA for 294e5ab
README.md
@@ -22,7 +22,7 @@ graph.AddNode(2);
22
23
graph.Connect(1, 2, 5, "some custom information in edge"); //First node has key equal 1
24
25
-ShortestPathResult result = graph.Dijkstra(0, 1); //result contains the shortest path
+ShortestPathResult result = graph.Dijkstra(1, 2); //result contains the shortest path
26
27
var path = result.GetPath();
28
```
0 commit comments