blob: 05473aa888eedd6a97b9b4c4c72ddff2fba90f53 (
plain) (
tree)
|
|
open Abstract_syntax_tree
module type ENVIRONMENT_DOMAIN = sig
type t
(* construction *)
val init : t
val bottom : t
val is_bot : t -> bool
(* variable management *)
val addvar : t -> id -> t
val rmvar : t -> id -> t
val vars : t -> id list
(* abstract operation *)
val assign : t -> id -> expr ext -> t (* S[id <- expr] *)
val compare : t -> expr ext -> expr ext -> t (* S[expr <= expr ?] *)
(* set-theoretic operations *)
val join : t -> t -> t (* union *)
val meet : t -> t -> t (* intersection *)
val widen : t -> t -> t
(* order *)
val subset : t -> t -> bool
(* pretty-printing *)
val var_str : t -> id list -> string
end
|