sig
  type t
  val ty : t Type.t
  val name : string
  val descr : t Descr.t
  val packed_descr : Structural_descr.pack
  val reprs : t list
  val equal : t -> t -> bool
  val compare : t -> t -> int
  val hash : t -> int
  val pretty_code : Format.formatter -> t -> unit
  val internal_pretty_code : Type.precedence -> Format.formatter -> t -> unit
  val pretty : Format.formatter -> t -> unit
  val varname : t -> string
  val mem_project : (Project_skeleton.t -> bool) -> t -> bool
  val copy : t -> t
  val top : t
  val is_included : t -> t -> bool
  val join : t -> t -> t
  val widen : Cil_types.kernel_function -> Cil_types.stmt -> t -> t -> t
  val extract_expr :
    t -> Cil_types.exp -> Simpler_domains.cvalue Eval.or_bottom
  val extract_lval :
    t ->
    Cil_types.lval ->
    Cil_types.typ ->
    Simpler_domains.precise_loc -> Simpler_domains.cvalue Eval.or_bottom
  val assign :
    Cil_types.kinstr ->
    Precise_locs.precise_location Eval.left_value ->
    Cil_types.exp ->
    (Simpler_domains.precise_loc, Simpler_domains.cvalue) Eval.assigned ->
    Simpler_domains.cvalue_valuation -> t -> t Eval.or_bottom
  val assume :
    Cil_types.stmt ->
    Cil_types.exp ->
    bool -> Simpler_domains.cvalue_valuation -> t -> t Eval.or_bottom
  val start_call :
    Cil_types.stmt ->
    (Simpler_domains.precise_loc, Simpler_domains.cvalue) Eval.call ->
    Simpler_domains.cvalue_valuation -> t -> t
  val finalize_call :
    Cil_types.stmt ->
    (Simpler_domains.precise_loc, Simpler_domains.cvalue) Eval.call ->
    pre:t -> post:t -> t Eval.or_bottom
  val empty : unit -> t
  val introduce_globals : Cil_types.varinfo list -> t -> t
  val initialize_variable :
    Cil_types.lval ->
    initialized:bool -> Abstract_domain.init_value -> t -> t
  val enter_scope :
    Cil_types.kernel_function -> Cil_types.varinfo list -> t -> t
  val leave_scope :
    Cil_types.kernel_function -> Cil_types.varinfo list -> t -> t
  val show_expr : t -> Format.formatter -> Cil_types.exp -> unit
end