Module Sig
module Sig: sig
.. end
Minimal signatures for graph algorithms provided by BigGraph.
module type Table = sig
.. end
Tables for associating information to vertices.
module type GraphAlgo = sig
.. end
Minimal graph signature for classical algorithms.
module type Graph = sig
.. end
Graphs with vertex identifiers of type node
.
module type LabeledGraph = sig
.. end
Graphs with identifiers and labeled edges.
module type Weight = sig
.. end
Labels are often weights.
module type WeightedGraphAlgo = sig
.. end
Weighted graphs.