DirectedGraph
constructor(out: MutableMap<V, MutableMap<V, E>> = mutableMapOf(), in: MutableMap<V, MutableSet<V>> = mutableMapOf())(source)
Parameters
V
the type representing the vertices in the graph.
E
the type representing the edges in the graph.