All Shortest Paths using Floyd warshall's algorithm
Floyd's algorithm can be interesting when graph density is high (more edges than vertex).
how does this compares to this: https://github.com/backtracking/ocamlgraph/pull/63
I might give a try at this implementation and report about it.
Is there something needed so that this PR could be accepted?
Is it normal to get NegativeCycle when my graph has only edges of length 1? adding 0 1 adding 0 5 adding 1 2 adding 2 3 adding 3 4 adding 4 5 Fatal error: exception Graph.Path.FloydWarshall(G)(W).NegativeCycle @Emmanuel-PLF
My graph is undirected, has 6 nodes connected in a ring.
Also, there is already the Johnson algorithm in ocamlgraph.
@slindley