sig
  module S :
    sig
      type chunk = Compiler.M.Chunk.t
      module Chunk :
        sig
          type t = Compiler.M.Chunk.t
          type set = Compiler.M.Heap.set
          type 'a map = 'Compiler.M.Heap.map
          val hash : t -> int
          val equal : t -> t -> bool
          val compare : t -> t -> int
          module Map :
            sig
              type key = t
              type 'a t = 'a map
              val empty : 'a t
              val add : key -> '-> 'a t -> 'a t
              val mem : key -> 'a t -> bool
              val find : key -> 'a t -> 'a
              val findk : key -> 'a t -> key * 'a
              val size : 'a t -> int
              val is_empty : 'a t -> bool
              val insert :
                (key -> '-> '-> 'a) -> key -> '-> 'a t -> 'a t
              val change :
                (key -> '-> 'a option -> 'a option) ->
                key -> '-> 'a t -> 'a t
              val map : ('-> 'b) -> 'a t -> 'b t
              val mapi : (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 iter : (key -> '-> unit) -> 'a t -> unit
              val fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b
              val iter_sorted : (key -> '-> unit) -> 'a t -> unit
              val fold_sorted : (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 subset : (key -> '-> '-> bool) -> 'a t -> 'b t -> bool
              val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
              val iterk : (key -> '-> '-> unit) -> 'a t -> 'b t -> unit
              val iter2 :
                (key -> 'a option -> 'b option -> unit) ->
                'a t -> 'b t -> unit
              val merge :
                (key -> 'a option -> 'b option -> 'c option) ->
                'a t -> 'b t -> 'c t
              type domain = set
              val domain : 'a t -> domain
            end
          module Set :
            sig
              type elt = t
              type t = set
              val empty : t
              val add : elt -> t -> t
              val singleton : elt -> t
              val elements : t -> elt list
              val is_empty : t -> bool
              val mem : elt -> t -> bool
              val iter : (elt -> unit) -> t -> unit
              val fold : (elt -> '-> 'a) -> t -> '-> 'a
              val filter : (elt -> bool) -> t -> t
              val partition : (elt -> bool) -> t -> t * t
              val for_all : (elt -> bool) -> t -> bool
              val exists : (elt -> bool) -> t -> bool
              val iter_sorted : (elt -> unit) -> t -> unit
              val fold_sorted : (elt -> '-> 'a) -> t -> '-> 'a
              val union : t -> t -> t
              val inter : t -> t -> t
              val diff : t -> t -> t
              val subset : t -> t -> bool
              val intersect : t -> t -> bool
              val of_list : elt list -> t
              type 'a mapping = 'a map
              val mapping : (elt -> 'a) -> t -> 'a mapping
            end
        end
      type domain = Chunk.Set.t
      type t = Compiler.M.Sigma.t
      val pretty : Format.formatter -> t -> unit
      val create : unit -> t
      val mem : t -> chunk -> bool
      val get : t -> chunk -> Lang.F.var
      val value : t -> chunk -> Lang.F.term
      val copy : t -> t
      val join : t -> t -> Passive.t
      val assigned : pre:t -> post:t -> domain -> Lang.F.pred Bag.t
      val choose : t -> t -> t
      val merge : t -> t -> t * Passive.t * Passive.t
      val merge_list : t list -> t * Passive.t list
      val iter : (chunk -> Lang.F.var -> unit) -> t -> unit
      val iter2 :
        (chunk -> Lang.F.var option -> Lang.F.var option -> unit) ->
        t -> t -> unit
      val havoc_chunk : t -> chunk -> t
      val havoc : t -> domain -> t
      val havoc_any : call:bool -> t -> t
      val remove_chunks : t -> domain -> t
      val domain : t -> domain
      val union : domain -> domain -> domain
      val empty : domain
      val writes : t Sigs.sequence -> domain
    end
  module Node :
    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 : Format.formatter -> t -> unit
      val create : unit -> t
      val equal : t -> t -> bool
    end
  type node = Node.t
  val node : unit -> node
  module C :
    sig
      type t
      val equal : t -> t -> bool
      val create : S.t -> Lang.F.pred -> t
      val get : t -> Lang.F.pred
      val reads : t -> S.domain
      val relocate : S.t -> t -> t
    end
  module P :
    sig
      type t
      val pretty : Format.formatter -> t -> unit
      val create : S.t Node.Map.t -> Lang.F.pred -> t
      val get : t -> Lang.F.pred
      val reads : t -> S.domain Node.Map.t
      val nodes : t -> Node.Set.t
      val relocate : S.t Node.Map.t -> t -> t
      val to_condition : t -> (C.t * Node.t option) option
    end
  module T :
    sig
      type t
      val pretty : Format.formatter -> t -> unit
      val create : S.t Node.Map.t -> Lang.F.term -> t
      val get : t -> Lang.F.term
      val reads : t -> S.domain Node.Map.t
      val relocate : S.t Node.Map.t -> t -> t
      val init : Node.Set.t -> (S.t Node.Map.t -> Lang.F.term) -> t
      val init' : Node.t -> (S.t -> Lang.F.term) -> t
    end
  module E :
    sig
      type t
      val pretty : Format.formatter -> t -> unit
      val create : S.t Sigs.sequence -> Lang.F.pred -> t
      val get : t -> Lang.F.pred
      val reads : t -> S.domain
      val writes : t -> S.domain
      val relocate : S.t Sigs.sequence -> t -> t
    end
  type cfg
  val dump_env : name:string -> cfg -> unit
  val output_dot : out_channel -> ?checks:P.t Bag.t -> cfg -> unit
  val nop : cfg
  val add_tmpnode : node -> cfg
  val concat : cfg -> cfg -> cfg
  val meta : ?stmt:Cil_types.stmt -> ?descr:string -> node -> cfg
  val goto : node -> node -> cfg
  val branch : node -> C.t -> node -> node -> cfg
  val guard : node -> C.t -> node -> cfg
  val guard' : node -> C.t -> node -> cfg
  val either : node -> node list -> cfg
  val implies : node -> (C.t * node) list -> cfg
  val effect : node -> E.t -> node -> cfg
  val assume : P.t -> cfg
  val havoc : node -> effects:node Sigs.sequence -> node -> cfg
  val compile :
    ?name:string ->
    ?mode:CfgCompiler.mode ->
    node ->
    Node.Set.t ->
    S.domain Node.Map.t ->
    cfg -> Lang.F.pred Node.Map.t * S.t Node.Map.t * Conditions.sequence
end