mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
re-enable new solve_eqs with bug fixes
This commit is contained in:
parent
9ef78fcfa7
commit
3faca52c40
|
@ -192,6 +192,8 @@ namespace euf {
|
|||
++i;
|
||||
if (!is_uninterp_const(arg))
|
||||
continue;
|
||||
if (!a.is_real(arg))
|
||||
continue;
|
||||
unsigned j = 0;
|
||||
bool nonzero = true;
|
||||
for (expr* arg2 : *to_app(x)) {
|
||||
|
|
|
@ -33,7 +33,7 @@ inline tactic * mk_solve_eqs2_tactic(ast_manager& m, params_ref const& p = param
|
|||
return alloc(dependent_expr_state_tactic, m, p, alloc(solve_eqs2_tactic_factory), "solve-eqs");
|
||||
}
|
||||
|
||||
#if 0
|
||||
#if 1
|
||||
inline tactic * mk_solve_eqs_tactic(ast_manager & m, params_ref const & p = params_ref()) {
|
||||
return mk_solve_eqs2_tactic(m, p);
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ inline tactic * mk_solve_eqs_tactic(ast_manager & m, params_ref const & p = para
|
|||
|
||||
|
||||
/*
|
||||
ADD_TACTIC("solve-eqs", "solve for variables.", "mk_solve_eqs2_tactic(m, p)")
|
||||
ADD_TACTIC("solve-eqs2", "solve for variables.", "mk_solve_eqs2_tactic(m, p)")
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
@ -24,14 +24,14 @@ class tactic;
|
|||
|
||||
tactic * mk_solve_eqs1_tactic(ast_manager & m, params_ref const & p = params_ref());
|
||||
|
||||
#if 1
|
||||
#if 0
|
||||
inline tactic * mk_solve_eqs_tactic(ast_manager & m, params_ref const & p = params_ref()) {
|
||||
return mk_solve_eqs1_tactic(m, p);
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
ADD_TACTIC("solve-eqs1", "eliminate variables by solving equations.", "mk_solve_eqs1_tactic(m, p)")
|
||||
ADD_TACTIC("solve-eqs", "eliminate variables by solving equations.", "mk_solve_eqs1_tactic(m, p)")
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue