Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Aug 7, 2022
1 parent 8e077d8 commit 410eed9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sat/smt/bv_internalize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ namespace bv {
return true;

SASSERT(!n || !n->is_attached_to(get_id()));
bool suppress_args = !reflect() && !m.is_considered_uninterpreted(a->get_decl());
bool suppress_args = !reflect()
&& !m.is_considered_uninterpreted(a->get_decl())
&& !bv.is_int2bv(e) && !bv.is_bv2int(e);
if (!n)
n = mk_enode(e, suppress_args);

Expand Down

0 comments on commit 410eed9

Please sign in to comment.