3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

fix #3115 fix #3116 regressions from #3111 etc

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-02 16:38:33 -08:00
parent c4d168205a
commit 8b720a0d66
8 changed files with 34 additions and 11 deletions

View file

@ -779,7 +779,7 @@ class elim_uncnstr_tactic : public tactic {
void run(goal_ref const & g, goal_ref_buffer & result) {
bool produce_proofs = g->proofs_enabled();
TRACE("elim_uncnstr_bug", g->display(tout););
TRACE("goal", g->display(tout););
tactic_report report("elim-uncnstr", *g);
m_vars.reset();
collect_occs p;
@ -826,7 +826,7 @@ class elim_uncnstr_tactic : public tactic {
m_rw = nullptr;
result.push_back(g.get());
g->inc_depth();
TRACE("elim_uncnstr_bug", g->display(tout););
TRACE("goal", g->display(tout););
return;
}
modified = false;

View file

@ -1007,7 +1007,7 @@ class solve_eqs_tactic : public tactic {
SASSERT(g->is_well_sorted());
model_converter_ref mc;
tactic_report report("solve_eqs", *g);
TRACE("solve_eqs", g->display(tout););
TRACE("goal", g->display(tout););
m_produce_models = g->models_enabled();
m_produce_proofs = g->proofs_enabled();
m_produce_unsat_cores = g->unsat_core_enabled();
@ -1043,7 +1043,7 @@ class solve_eqs_tactic : public tactic {
g->inc_depth();
g->add(mc.get());
result.push_back(g.get());
TRACE("solve_eqs", g->display(tout););
TRACE("goal", g->display(tout););
SASSERT(g->is_well_sorted());
}
};