IStdlib.UnionFind
module F = Stdlib.Format
A union-find data structure.
module type Element = sig ... end
module Make (X : Element) (XSet : IStdlib.IStd.Caml.Set.S with type elt = X.t) (XMap : IStdlib.IStd.Caml.Map.S with type key = X.t) : sig ... end