3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

add tactic to eliminate enumeration sorts in favor of bit-vectors

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-07-23 14:13:40 -07:00
parent 083939ab0e
commit 6bf446dfc2

View file

@ -282,7 +282,7 @@ public:
for (unsigned i = 0; i < m_bounds.size(); ++i) {
g->assert_expr(m_bounds[i].get());
}
mc = concat(m_ext.get(), m_filter.get());
mc = concat(m_filter.get(), m_ext.get());
report_tactic_progress(":fd-num-translated", m_num_transformed);
}
g->inc_depth();