Library
Module
Module type
Parameter
Class
Class type
Create a new Bitwuzla session (check_sat
can only be called once).
Phantom types are annotations that allow the compiler to statically catch some sort mismatch errors. Size mismatch errors will still be caught at runtime.
The array kind with 'a
index and 'b
element.
Both index and element should be of bit-vector, rounding-mode or floating-point kind
The function kind taking 'a
argument and returning 'b
element.
Functions accept only bit-vector, rounding-mode or floating-point as argument and return only bit-vector.
type 'a value = private 'a term
A value of 'a
kind.
Values are subtype of terms and can be downcasted using :>
operator.
module Sort : sig ... end
module Term : sig ... end
val pp_result : Stdlib.Format.formatter -> result -> unit
pp formatter result
pretty print result.
val check_sat : ?interrupt:(('a -> int) * 'a) -> unit -> result
check_sat ~interrupt ()
check satisfiability of current input formula.
timeout t f
configure the interruptible function f
with a timeout of t
seconds.
timeout
can be used to limit the time spend on check_sat
or check_sat_assuming
. For instance, for a 1 second time credit, use:
(timeout 1. check_sat) ()
(timeout 1. check_sat_assuming) assumptions