sig
  type t
  module Map :
    sig
      type key = t
      type 'a t
      val is_empty : 'a t -> bool
      val empty : 'a t
      val add : key -> '-> 'a t -> 'a t
      val mem : key -> 'a t -> bool
      val find : key -> 'a t -> 'a
      val remove : key -> 'a t -> 'a t
      val compare : ('-> '-> int) -> 'a t -> 'a t -> int
      val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
      val iter : (key -> '-> unit) -> 'a t -> unit
      val map : (key -> '-> 'b) -> 'a t -> 'b t
      val mapf : (key -> '-> 'b option) -> 'a t -> 'b t
      val mapq : (key -> '-> 'a option) -> 'a t -> 'a t
      val filter : (key -> '-> bool) -> 'a t -> 'a t
      val partition : (key -> '-> bool) -> 'a t -> 'a t * 'a t
      val fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b
      val union : (key -> '-> '-> 'a) -> 'a t -> 'a t -> 'a t
      val inter : (key -> '-> '-> 'c) -> 'a t -> 'b t -> 'c t
      val interf : (key -> '-> '-> 'c option) -> 'a t -> 'b t -> 'c t
      val interq : (key -> '-> '-> 'a option) -> 'a t -> 'a t -> 'a t
      val diffq : (key -> '-> '-> 'a option) -> 'a t -> 'a t -> 'a t
      val merge :
        (key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t
      val iter2 :
        (key -> 'a option -> 'b option -> unit) -> 'a t -> 'b t -> unit
      val subset : (key -> '-> '-> bool) -> 'a t -> 'b t -> bool
      val insert : (key -> '-> '-> 'a) -> key -> '-> 'a t -> 'a t
      val change :
        (key -> '-> 'a option -> 'a option) -> key -> '-> 'a t -> 'a t
    end
  module Set :
    sig
      type elt = t
      type t
      val empty : t
      val is_empty : t -> bool
      val mem : elt -> t -> bool
      val find : elt -> t -> elt
      val add : elt -> t -> t
      val singleton : elt -> t
      val remove : elt -> t -> t
      val union : t -> t -> t
      val inter : t -> t -> t
      val diff : t -> t -> t
      val compare : t -> t -> int
      val equal : t -> t -> bool
      val subset : t -> t -> bool
      val iter : (elt -> unit) -> t -> unit
      val fold : (elt -> '-> 'a) -> t -> '-> 'a
      val for_all : (elt -> bool) -> t -> bool
      val exists : (elt -> bool) -> t -> bool
      val filter : (elt -> bool) -> t -> t
      val partition : (elt -> bool) -> t -> t * t
      val cardinal : t -> int
      val elements : t -> elt list
      val map : (elt -> elt) -> t -> t
      val mapf : (elt -> elt option) -> t -> t
      val intersect : t -> t -> bool
    end
  module Hashtbl :
    sig
      type key = t
      type !'a t
      val create : int -> 'a t
      val clear : 'a t -> unit
      val reset : 'a t -> unit
      val copy : 'a t -> 'a t
      val add : 'a t -> key -> '-> unit
      val remove : 'a t -> key -> unit
      val find : 'a t -> key -> 'a
      val find_opt : 'a t -> key -> 'a option
      val find_all : 'a t -> key -> 'a list
      val replace : 'a t -> key -> '-> unit
      val mem : 'a t -> key -> bool
      val iter : (key -> '-> unit) -> 'a t -> unit
      val filter_map_inplace : (key -> '-> 'a option) -> 'a t -> unit
      val fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b
      val length : 'a t -> int
      val stats : 'a t -> Hashtbl.statistics
      val to_seq : 'a t -> (key * 'a) Seq.t
      val to_seq_keys : 'a t -> key Seq.t
      val to_seq_values : 'a t -> 'Seq.t
      val add_seq : 'a t -> (key * 'a) Seq.t -> unit
      val replace_seq : 'a t -> (key * 'a) Seq.t -> unit
      val of_seq : (key * 'a) Seq.t -> 'a t
    end
  val pp : Stdlib.Format.formatter -> CfgCompiler.Cfg.Node.t -> unit
  val create : unit -> CfgCompiler.Cfg.Node.t
  val equal : CfgCompiler.Cfg.Node.t -> CfgCompiler.Cfg.Node.t -> bool
end