Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
yoni206 committed Oct 6, 2023
1 parent e438421 commit 5a85b3a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/preprocessing/passes/int_to_bv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,11 @@ Node IntToBV::intToBV(TNode n, NodeMap& cache)
}
}
}


// abort if the kind did not change and
// the original type was integer.
// The only exception is an ITE,
// in which case we continue.
if (tn.isInteger() && newKind != Kind::ITE
&& newKind == current.getKind())
{
Expand Down

0 comments on commit 5a85b3a

Please sign in to comment.