mirror of
https://github.com/Z3Prover/z3
synced 2025-05-11 09:44:43 +00:00
more merges with qsat
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
76d637626a
commit
d614fedde2
7 changed files with 31 additions and 5 deletions
|
@ -122,6 +122,10 @@ namespace smt {
|
|||
*/
|
||||
lbool check(unsigned num_assumptions = 0, expr * const * assumptions = 0);
|
||||
|
||||
lbool check(expr_ref_vector const& asms) { return check(asms.size(), asms.c_ptr()); }
|
||||
|
||||
lbool check(app_ref_vector const& asms) { return check(asms.size(), (expr* const*)asms.c_ptr()); }
|
||||
|
||||
/**
|
||||
\brief Return the model associated with the last check command.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue