module Tree:Sig.Gwith type V.label = vertex
type t
module V:Sig.VERTEX
V.t and are labeled with type V.label
(note that an implementation may identify the vertex with its
label)
typevertex =V.t
module E:Sig.EDGEwith type vertex = vertex
E.t and are labeled with type E.label.
typeedge =E.t
val is_directed : boolval is_empty : t -> bool
val nb_vertex : t -> int
val nb_edges : t -> intval out_degree : t -> vertex -> intout_degree g v returns the out-degree of v in g.Invalid_argument if v is not in g.val in_degree : t -> vertex -> intin_degree g v returns the in-degree of v in g.Invalid_argument if v is not in g.val mem_vertex : t -> vertex -> bool
val mem_edge : t -> vertex -> vertex -> bool
val mem_edge_e : t -> edge -> bool
val find_edge : t -> vertex -> vertex -> edgefind_edge g v1 v2 returns the edge from v1 to v2 if it exists.
Unspecified behaviour if g has several edges from v1 to v2.Not_found if no such edge exists.val find_all_edges : t -> vertex -> vertex -> edge listfind_all_edges g v1 v2 returns all the edges from v1 to v2.
You should better use iterators on successors/predecessors (see
Section "Vertex iterators").
val succ : t -> vertex -> vertex listsucc g v returns the successors of v in g.Invalid_argument if v is not in g.val pred : t -> vertex -> vertex listpred g v returns the predecessors of v in g.Invalid_argument if v is not in g.val succ_e : t -> vertex -> edge listsucc_e g v returns the edges going from v in g.Invalid_argument if v is not in g.val pred_e : t -> vertex -> edge listpred_e g v returns the edges going to v in g.Invalid_argument if v is not in g.val iter_vertex : (vertex -> unit) -> t -> unitval fold_vertex : (vertex -> 'a -> 'a) -> t -> 'a -> 'aval iter_edges : (vertex -> vertex -> unit) -> t -> unitval fold_edges : (vertex -> vertex -> 'a -> 'a) -> t -> 'a -> 'aval iter_edges_e : (edge -> unit) -> t -> unitval fold_edges_e : (edge -> 'a -> 'a) -> t -> 'a -> 'aval map_vertex : (vertex -> vertex) -> t -> t
Each iterator iterator f v g iters f to the successors/predecessors
of v in the graph g and raises Invalid_argument if v is not in
g. It is the same for functions fold_* which use an additional
accumulator.
Time complexity for ocamlgraph implementations:
operations on successors are in O(1) amortized for imperative graphs and
in O(ln(|V|)) for persistent graphs while operations on predecessors are
in O(max(|V|,|E|)) for imperative graphs and in O(max(|V|,|E|)*ln|V|) for
persistent graphs.
iter/fold on all successors/predecessors of a vertex.
val iter_succ : (vertex -> unit) -> t -> vertex -> unit
val iter_pred : (vertex -> unit) -> t -> vertex -> unit
val fold_succ : (vertex -> 'a -> 'a) -> t -> vertex -> 'a -> 'a
val fold_pred : (vertex -> 'a -> 'a) -> t -> vertex -> 'a -> 'aval iter_succ_e : (edge -> unit) -> t -> vertex -> unit
val fold_succ_e : (edge -> 'a -> 'a) -> t -> vertex -> 'a -> 'a
val iter_pred_e : (edge -> unit) -> t -> vertex -> unit
val fold_pred_e : (edge -> 'a -> 'a) -> t -> vertex -> 'a -> 'a