module Rand: sig
.. end
Random graph generation
Random graphs
module type S = sig
.. end
module P: functor (
G
:
Sig.P
with type V.label = int
) ->
S
with type graph = G.t
and type vertex = G.V.t
and type edge_label = G.E.label
Random persistent graphs
module I: functor (
G
:
Sig.I
with type V.label = int
) ->
S
with type graph = G.t
and type vertex = G.V.t
and type edge_label = G.E.label
Random imperative graphs
Random planar graphs
module Planar: sig
.. end