Skip to content

Commit

Permalink
fix #3027
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Feb 17, 2020
1 parent 234b53b commit b6ee0b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tactic/bv/elim_small_bv_tactic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ class elim_small_bv_tactic : public tactic {
expr_ref body(old_body, m);
for (unsigned i = num_decls-1; i != ((unsigned)-1) && !max_steps_exceeded(num_steps); i--) {
sort * s = q->get_decl_sort(i);
unsigned bv_sz = m_util.get_bv_size(s);

if (is_small_bv(s) && !max_steps_exceeded(num_steps)) {
unsigned bv_sz = m_util.get_bv_size(s);
TRACE("elim_small_bv", tout << "eliminating " << q->get_decl_name(i) <<
"; sort = " << mk_ismt2_pp(s, m) <<
"; body = " << mk_ismt2_pp(body, m) << std::endl;);
Expand Down

0 comments on commit b6ee0b1

Please # to comment.