sig
  type data
  type t
  val create : int -> HashCons.S.t
  val clear : HashCons.S.t -> unit
  val hashcons :
    ?log:bool ->
    HashCons.S.t -> HashCons.S.data -> HashCons.S.data HashCons.hc
  module H1 :
    sig
      type key = data hc
      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_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 fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b
      val length : 'a t -> int
      val stats : 'a t -> Hashtbl.statistics
    end
  module H2 :
    sig
      type key = data hc * data hc
      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_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 fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b
      val length : 'a t -> int
      val stats : 'a t -> Hashtbl.statistics
    end
  type other_value
  module HV :
    sig
      type key = data hc * other_value
      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_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 fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b
      val length : 'a t -> int
      val stats : 'a t -> Hashtbl.statistics
    end
  val get_h1 : HashCons.S.t -> HashCons.S.data HashCons.hc HashCons.S.H1.t
  val get_h2 : HashCons.S.t -> HashCons.S.data HashCons.hc HashCons.S.H2.t
  val get_hv : HashCons.S.t -> HashCons.S.data HashCons.hc HashCons.S.HV.t
  val get_h1_alpha :
    (module HashCons.Type with type t = 'a) ->
    HashCons.S.t -> 'HashCons.S.H1.t
end