mirror of
https://github.com/Z3Prover/z3
synced 2026-03-03 04:06:54 +00:00
move mus to solver
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
19f98547f7
commit
9f5a117443
10 changed files with 273 additions and 110 deletions
|
|
@ -108,6 +108,10 @@ public:
|
|||
*/
|
||||
virtual lbool check_sat(unsigned num_assumptions, expr * const * assumptions) = 0;
|
||||
|
||||
lbool check_sat(expr_ref_vector const& asms) { return check_sat(asms.size(), asms.c_ptr()); }
|
||||
|
||||
lbool check_sat(app_ref_vector const& asms) { return check_sat(asms.size(), (expr* const*)asms.c_ptr()); }
|
||||
|
||||
|
||||
/**
|
||||
\brief Set a progress callback procedure that is invoked by this solver during check_sat.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue