package libsail

  1. Overview
  2. Docs

Generic graph type based on OCaml Set and Map

module type OrderedType = sig ... end
module type S = sig ... end
module Make (Ord : OrderedType) : S with type node = Ord.t and type node_set = Stdlib.Set.Make(Ord).t and type graph = Stdlib.Set.Make(Ord).t Stdlib.Map.Make(Ord).t