Module MultiGraph.Imperative


module Imperative: sig .. end
Imperative implementations of labeled directed multi-graphs. All operations over multi-graphs are performed with in-place modification.

module Make: 
functor (VLabel : Print.PRINTABLE_TYPE) ->
functor (ELabel : Print.PRINTABLE_TYPE) -> MultiGraph.I with module Vertex.Label = VLabel and module Edge.Label = ELabel
module Make2: 
functor (VLabel : Print.PRINTABLE_TYPE) ->
functor (ELabel : Print.PRINTABLE_TYPE) -> MultiGraph.I with module Vertex.Label = VLabel and module Edge.Label = ELabel
module MakeMutable: 
functor (Graph : MultiGraph.P) -> MultiGraph.I with module Vertex = Graph.Vertex and module Edge = Graph.Edge