Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yoni206 committed May 7, 2024
1 parent 060bae9 commit 1dc59c2
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/theory/bv/int_blaster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,9 @@ using namespace cvc5::internal::theory::bv;

namespace cvc5::internal {

namespace {


template<typename T>

// A helper function to compute 2^b as a Rational
Rational intpow2(uint32_t b) { return Rational(Integer(2).pow(b), Integer(1)); }

} // namespace

IntBlaster::IntBlaster(Env& env,
options::SolveBVAsIntMode mode,
Expand Down Expand Up @@ -1064,9 +1058,6 @@ Node IntBlaster::translateQuantifiedFormula(Node quantifiedNode)
std::unordered_set<Node> varsNode = d_quantifiedVariables[quantifiedNode];
std::unordered_set<Node> varsMatrix = d_quantifiedVariables[originalMatrix];

printUnorderedSet("varsApply", varsApply);
printUnorderedSet("varsNode", varsNode);
printUnorderedSet("varsMatrix", varsMatrix);

if (! std::includes(varsNode.begin(), varsNode.end(), varsApply.begin(), varsApply.end()) && std::includes(varsMatrix.begin(), varsMatrix.end(), varsApply.begin(), varsApply.end())) {

Expand Down

0 comments on commit 1dc59c2

Please sign in to comment.