I am using JUNG DirectedGraph and I need to transform a given directed graph to a reversed graph, so that the newly created graph contains all vertices and edges from the original graph and all edges in the new graph are reversed. I need to perform this transformation on the model.
Is there a JUNG utility that provides this functionality?
I use JUNG version 2.0.1.
I realize it's easy to implement, just prefer to use the provided utility if available.
Thanks