There should be a way to get all the shortest paths of equal length
Currently, all the "path-to" primitives return the first path that Jung's implementation of Dijktra's algorithm finds.
Maybe there should even be a way to get all the acyclic paths from A to B. (You could then order them by length if you want to.)
This would be super helpful. By being able to randomly choose between 'reasonably short' paths, we can model imperfect information in networks. I guess it'd be sort of network stochasticity.
Maybe use http://jgrapht.org/javadoc/org/jgrapht/alg/KShortestPaths.html
I'm running into this limitation right now. Is there any way to force nw to report all shortest paths?