Module ValueDomainQueries.ID
include sig ... end
type t = [ | `Bot| `Lifted of I.t| `Top
]val equal : t -> t -> Ppx_deriving_runtime.boolval compare : t -> t -> Ppx_deriving_runtime.intval show : [< `Bot | `Lifted of I.t | `Top ] -> stringval pretty : unit -> t -> Printable.Pretty.docval name : unit -> stringval printXml :
'a BatInnerIO.output ->
[< `Bot | `Lifted of I.t | `Top ] ->
unitval to_yojson : [< `Bot | `Lifted of I.t | `Top ] -> Yojson.Safe.tval relift : [< `Bot | `Lifted of I.t | `Top Lifted ] as 'a -> 'aval arbitrary : unit -> [ `Bot | `Lifted of I.t | `Top ] QCheck.arbitraryval bot : unit -> [> `Bot ]val is_bot : [> `Bot ] -> boolval top : unit -> [> `Top ]val is_top : [> `Top ] -> boolval leq :
[< `Bot | `Lifted of I.t | `Top ] ->
[< `Bot | `Lifted of I.t | `Top ] ->
boolval pretty_diff : unit -> (t * t) -> Lattice.Pretty.docval join : [< `Bot | `Lifted of I.t | `Top Lifted Top ] as 'a -> 'a -> 'aval meet : [< `Bot | `Lifted of I.t | `Top Bot Lifted ] as 'a -> 'a -> 'aval widen : [> `Lifted of I.t ] -> [> `Lifted of I.t | `Top ] as 'a -> 'aval narrow : [> `Bot | `Lifted of I.t | `Top ] as 'a -> 'a -> 'aval lift : ('a -> 'b) -> 'a -> [> `Lifted of 'b ]val unlift : ('a -> 'b) -> [> `Lifted of 'a ] -> 'bval unlift_opt : ('a -> 'b option) -> [> `Lifted of 'a ] -> 'b optionval unlift_is : ('a -> bool) -> [> `Lifted of 'a ] -> boolval bot_of : GoblintCil.Cil.ikind -> [> `Lifted of I.t ]val top_of : GoblintCil.Cil.ikind -> [> `Lifted of I.t ]val of_int : GoblintCil.Cil.ikind -> I.int_t -> [> `Lifted of I.t ]val of_bool : GoblintCil.Cil.ikind -> bool -> [> `Lifted of I.t ]val of_interval :
?suppress_ovwarn:bool ->
GoblintCil.Cil.ikind ->
(I.int_t * I.int_t) ->
[> `Lifted of I.t ]val of_excl_list : GoblintCil.Cil.ikind -> I.int_t list -> [> `Lifted of I.t ]val of_congruence :
GoblintCil.Cil.ikind ->
(I.int_t * I.int_t) ->
[> `Lifted of I.t ]val starting :
?suppress_ovwarn:bool ->
GoblintCil.Cil.ikind ->
I.int_t ->
[> `Lifted of I.t ]val ending :
?suppress_ovwarn:bool ->
GoblintCil.Cil.ikind ->
I.int_t ->
[> `Lifted of I.t ]val to_int : [> `Lifted of I.t ] -> I.int_t optionval to_bool : [> `Lifted of I.t ] -> bool optionval is_top_of : GoblintCil.Cil.ikind -> [> `Lifted of I.t ] -> boolval is_bot_ikind : [< `Bot | `Lifted of I.t | `Top ] -> bool