Module Graph.Rand
Random graph generation.
Random graphs
module type S = sig ... endmodule Make
(B : Graph.Builder.INT) :
Graph.Rand.S
with type graph = B.G.t
and type vertex = B.G.V.t
and type edge_label = B.G.E.labelRandom graphs
module P
(G : Graph.Sig.P with type V.label = int) :
Graph.Rand.S
with type graph = G.t
and type vertex = G.V.t
and type edge_label = G.E.labelRandom persistent graphs
module I
(G : Graph.Sig.I with type V.label = int) :
Graph.Rand.S
with type graph = G.t
and type vertex = G.V.t
and type edge_label = G.E.labelRandom imperative graphs
Random planar graphs
module Planar : sig ... end