summaryrefslogtreecommitdiff
path: root/src/theory/bv/bvgauss.cpp
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2018-02-09 22:10:30 -0800
committerGitHub <noreply@github.com>2018-02-09 22:10:30 -0800
commit2ff61502c2df1db8fbdba3b2487fb72aa1e6d509 (patch)
tree5ccadc3415b0543c39b13f16de788f4c2afbfcdb /src/theory/bv/bvgauss.cpp
parenta70490bc79933a55041f35d5896f79004e578f05 (diff)
Move BitVector specific funs from bv::utils to util/bitvector.h. (#1589)
Diffstat (limited to 'src/theory/bv/bvgauss.cpp')
-rw-r--r--src/theory/bv/bvgauss.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/bv/bvgauss.cpp b/src/theory/bv/bvgauss.cpp
index 0e2088541..e36ef3aef 100644
--- a/src/theory/bv/bvgauss.cpp
+++ b/src/theory/bv/bvgauss.cpp
@@ -4,7 +4,7 @@
** Top contributors (to current version):
** Aina Niemetz
** This file is part of the CVC4 project.
- ** Copyright (c) 2009-2017 by the authors listed in the file AUTHORS
+ ** Copyright (c) 2009-2018 by the authors listed in the file AUTHORS
** in the top-level source directory) and their institutional affiliations.
** All rights reserved. See the file COPYING in the top-level source
** directory for licensing information.\endverbatim
@@ -114,7 +114,7 @@ unsigned BVGaussElim::getMinBwExpr(Node expr)
}
else
{
- maxval *= utils::mkBitVectorOnes(visited[nn]).getValue();
+ maxval *= BitVector::mkOnes(visited[nn]).getValue();
}
}
unsigned w = maxval.length();
@@ -181,7 +181,7 @@ unsigned BVGaussElim::getMinBwExpr(Node expr)
}
else
{
- maxval += utils::mkBitVectorOnes(visited[nn]).getValue();
+ maxval += BitVector::mkOnes(visited[nn]).getValue();
}
}
unsigned w = maxval.length();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback