package binsec
Install
Dune Dependency
Authors
-
AAdel Djoudi
-
BBenjamin Farinier
-
CChakib Foulani
-
DDorian Lesbre
-
FFrédéric Recoules
-
GGuillaume Girol
-
JJosselin Feist
-
LLesly-Ann Daniel
-
MManh-Dung Nguyen
-
MMathéo Vergnolle
-
MMathilde Ollivier
-
MMatthieu Lemerre
-
OOlivier Nicole
-
RRichard Bonichon
-
RRobin David
-
SSébastien Bardin
-
SSoline Ducousso
-
TTa Thanh Dinh
-
YYaëlle Vinçont
Maintainers
Sources
sha256=ebc732ef78d3f6d94a0d179f8ef76a74dedd4d23f9783c3875091695c1ceee56
sha512=cf91afa2223681c9b50b71429d739fc37c792264e43f72212ac405088d3de5c9f04d40ef6ae92526c727569982d48d1678811341b5d9b4bbc596fbc55d45b79e
doc/binsec.smt/Smt/Smt_bitwuzla/index.html
Module Smt.Smt_bitwuzla
Source
available
is true if Bitwuzla
binding is available.
include Smt_sig.Solver
put solver entry
sends the entry to the solver.
check_sat solver
checks if the current formula is satisfiable.
get_bv_value solver expr
returns the assignment of the expression expr
if check_sat
returned SAT. Invalid uses may fail in an unpredictable fashion.
val get_ax_values :
t ->
Binsec.Formula.ax_term ->
(Binsec.Bitvector.t * Binsec.Bitvector.t) array
get_ax_values solver expr
returns the assignment of the array expr
if check_sat
returned SAT. Invalid uses may fail in an unpredictable fashion.
close_session solver
will destroy the solver instance and release its ressources. Calling any function on this instance afterward is invalid and may fail in an unpredictable fashion.
check_sat_and_close solver
is the same as caching the result of check_sat
before calling close_session
.
query_stat ()
returns the cumulated number of check_sat
issued.
time_stat ()
return the cumulated elapsed time with an open solver session.