Module MultiGraph.Imperative
module Imperative:Imperative implementations of labeled directed multi-graphs. All operations over multi-graphs are performed with in-place modification.sig
..end
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