Module Builder


module Builder: sig  end
Graph builders



Common interface for graph builders
.

Note: the following functions always return graphs but this is meaningless for imperative implementations (the graph is modified in-place). This is just to provide a common interface.

module type S = sig  end
module type INT = sig  end


Builders for the various graph implementations


module P: functor (G : Sig.P) -> sig  end
Persistent Graphs Builders
module I: functor (G : Sig.I) -> sig  end
Imperative Graphs Builders