Package-level declarations
Types
Link copied to clipboard
class DirectedGraph<V, E>(val out: MutableMap<V, MutableMap<V, E>> = mutableMapOf(), val in: MutableMap<V, MutableSet<V>> = mutableMapOf())
A mutable representation of a directed graph consisting of vertices and directed edges.