3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-28 08:58:44 +00:00

re-enable new solve_eqs with bug fixes

This commit is contained in:
Nikolaj Bjorner 2022-11-08 14:17:17 -08:00
parent 9ef78fcfa7
commit 3faca52c40
4 changed files with 9 additions and 7 deletions

View file

@ -86,13 +86,13 @@ public:
void operator()(goal_ref const & in,
goal_ref_buffer & result) override {
if (in->proofs_enabled())
throw tactic_exception("tactic does not support low level proofs");
init();
statistics_report sreport(*this);
tactic_report report(name(), *in);
m_goal = in.get();
m_simp->reduce();
if (!in->proofs_enabled())
m_simp->reduce();
m_goal->elim_true();
m_goal->inc_depth();
if (in->models_enabled())
in->add(m_model_trail->get_model_converter().get());