3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-23 04:49:11 +00:00

bug fix: unsound pruning of assumptions. remove deprecated reduce() feature from smt_kernel

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-01-03 17:36:21 -08:00
parent 70baa3c8c9
commit f8f23382dc
6 changed files with 55 additions and 29 deletions

View file

@ -398,6 +398,11 @@ namespace pdr {
for (unsigned i = 0; i < r->size(); ++i) {
lemmas.push_back(r->form(i));
}
TRACE("farkas_simplify_lemmas",
tout << "simplified:\n";
for (unsigned i = 0; i < lemmas.size(); ++i) {
tout << mk_pp(lemmas[i].get(), m) << "\n";
});
}