module Eset:FCSet.S
with type elt = edge
Set of edges.
include FCSet.S_Basic_Compare
val min_elt : t -> elt
Ord.compare
ordering), or raise
Not_found
if the set is empty.val max_elt : t -> elt
val nearest_elt_le : elt -> t -> elt
nearest_elt_le v s
returns the largest element of s
that is
smaller or equal to v
.Not_found
if no such element exists.val nearest_elt_ge : elt -> t -> elt
nearest_elt_ge v s
returns the smallest element of s
that is
bigger or equal to v
.Not_found
if no such element exists.