Skip to content

Commit e86a918

Browse files
turn on ite simplification by default
1 parent 8368094 commit e86a918

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

src/ast/rewriter/bool_rewriter.cpp

+3-6
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ void bool_rewriter::updt_params(params_ref const & _p) {
3434
m_blast_distinct = p.blast_distinct();
3535
m_blast_distinct_threshold = p.blast_distinct_threshold();
3636
m_ite_extra_rules = p.ite_extra_rules();
37-
m_elim_ite_value_tree = p.elim_ite_value_tree();
3837
}
3938

4039
void bool_rewriter::get_param_descrs(param_descrs & r) {
@@ -681,11 +680,9 @@ br_status bool_rewriter::try_ite_value(app * ite, app * val, expr_ref & result)
681680
return BR_REWRITE2;
682681
}
683682

684-
if (m_elim_ite_value_tree) {
685-
result = simplify_eq_ite(val, ite);
686-
if (result)
687-
return BR_REWRITE_FULL;
688-
}
683+
result = simplify_eq_ite(val, ite);
684+
if (result)
685+
return BR_REWRITE_FULL;
689686

690687
return BR_FAILED;
691688
}

src/ast/rewriter/bool_rewriter.h

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ class bool_rewriter {
6161
unsigned m_local_ctx_limit;
6262
unsigned m_local_ctx_cost;
6363
bool m_elim_ite;
64-
bool m_elim_ite_value_tree;
6564
ptr_vector<expr> m_todo1, m_todo2;
6665
unsigned_vector m_counts1, m_counts2;
6766
expr_fast_mark1 m_marked;

src/params/bool_rewriter_params.pyg

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ def_module_params(module_name='rewriter',
77
("sort_disjunctions", BOOL, True, "sort subterms in disjunctions"),
88
("elim_and", BOOL, False, "conjunctions are rewritten using negation and disjunctions"),
99
('elim_ite', BOOL, True, "eliminate ite in favor of and/or"),
10-
('elim_ite_value_tree', BOOL, False, "eliminate equations 'v = ite(...)' where v is a value and each leaf in the ite tree is a value"),
1110
("local_ctx", BOOL, False, "perform local (i.e., cheap) context simplifications"),
1211
("local_ctx_limit", UINT, UINT_MAX, "limit for applying local context simplifier"),
1312
("blast_distinct", BOOL, False, "expand a distinct predicate into a quadratic number of disequalities"),

0 commit comments

Comments
 (0)