3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-09-30 14:51:28 -04:00
parent b9cba82531
commit 876ca2f1a5
3 changed files with 11 additions and 4 deletions

View file

@ -826,7 +826,6 @@ struct th_rewriter_cfg : public default_rewriter_cfg {
result = elim_unused_vars(m(), q1, params_ref()); result = elim_unused_vars(m(), q1, params_ref());
TRACE("reduce_quantifier", tout << "after elim_unused_vars:\n" << result << "\n";);
result_pr = nullptr; result_pr = nullptr;
if (m().proofs_enabled()) { if (m().proofs_enabled()) {
@ -835,6 +834,9 @@ struct th_rewriter_cfg : public default_rewriter_cfg {
p2 = m().mk_elim_unused_vars(q1, result); p2 = m().mk_elim_unused_vars(q1, result);
result_pr = m().mk_transitivity(p1, p2); result_pr = m().mk_transitivity(p1, p2);
} }
TRACE("reduce_quantifier", tout << "after elim_unused_vars:\n" << result << " " << result_pr << "\n" ;);
SASSERT(old_q->get_sort() == result->get_sort()); SASSERT(old_q->get_sort() == result->get_sort());
return true; return true;
} }

View file

@ -621,10 +621,15 @@ void cmd_context::set_produce_unsat_cores(bool f) {
} }
void cmd_context::set_produce_proofs(bool f) { void cmd_context::set_produce_proofs(bool f) {
SASSERT(!has_assertions() || m_params.m_proof == f); if (m_params.m_proof == f)
if (has_manager()) return;
SASSERT(!has_assertions());
if (has_manager()) {
m().toggle_proof_mode(f ? PGM_ENABLED : PGM_DISABLED); m().toggle_proof_mode(f ? PGM_ENABLED : PGM_DISABLED);
std::cout << m_params.m_proof << " " << f << "\n";
}
m_params.m_proof = f; m_params.m_proof = f;
mk_solver();
} }

View file

@ -171,7 +171,7 @@ void asserted_formulas::assert_expr(expr * e, proof * _in_pr) {
else else
pr = m.mk_modus_ponens(in_pr, pr); pr = m.mk_modus_ponens(in_pr, pr);
} }
TRACE("assert_expr_bug", tout << "after...\n" << r << "\n";); TRACE("assert_expr_bug", tout << "after...\n" << r << "\n" << pr << "\n";);
} }
m_has_quantifiers |= ::has_quantifiers(e); m_has_quantifiers |= ::has_quantifiers(e);