3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 04:26:00 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-06-11 13:55:04 -07:00 committed by Arie Gurfinkel
parent 6e61a7c1b2
commit 44a32bc076
3 changed files with 160 additions and 113 deletions

View file

@ -56,6 +56,12 @@ namespace qe {
* \brief Block conjunction of lits from future mbi_augment or mbi_sat.
*/
virtual void block(expr_ref_vector const& lits) = 0;
/**
* \brief perform a full check, consume internal auguments if necessary.
*/
lbool check(func_decl_ref_vector const& vars, expr_ref_vector& lits, model_ref& mdl);
};
class prop_mbi_plugin : public mbi_plugin {