3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 00:18:45 +00:00

tuning by using get_consequences2

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-09-06 14:29:40 +08:00
parent e7ae60893c
commit 3b70dd6678
3 changed files with 148 additions and 25 deletions

View file

@ -112,7 +112,7 @@ namespace smt {
}
lbool get_consequences(expr_ref_vector const& assumptions, expr_ref_vector const& vars, expr_ref_vector& conseq, expr_ref_vector& unfixed) {
return m_kernel.get_consequences(assumptions, vars, conseq, unfixed);
return m_kernel.get_consequences2(assumptions, vars, conseq, unfixed);
}
void get_model(model_ref & m) const {