summaryrefslogtreecommitdiff
path: root/src/theory/bv/theory_bv.cpp
diff options
context:
space:
mode:
authorlianah <lianahady@gmail.com>2013-04-21 19:00:09 -0400
committerlianah <lianahady@gmail.com>2013-04-30 15:54:24 -0400
commit7701ac73a62a466eaf4e55c1c2dc238c7110b02f (patch)
tree17825627219be18659b303befb819c7104343db6 /src/theory/bv/theory_bv.cpp
parentd312565a63e38ad42af1ca1c5d8fb1f49eda8929 (diff)
added some bv rewrite rules
Diffstat (limited to 'src/theory/bv/theory_bv.cpp')
-rw-r--r--src/theory/bv/theory_bv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/bv/theory_bv.cpp b/src/theory/bv/theory_bv.cpp
index c46af5196..326eab36a 100644
--- a/src/theory/bv/theory_bv.cpp
+++ b/src/theory/bv/theory_bv.cpp
@@ -254,7 +254,7 @@ Node TheoryBV::ppRewrite(TNode t)
// return Rewriter::rewrite(result);
// }
- if (options::bitvectorCoreSolver() && t.getKind() == kind::EQUAL) {
+ if (/*options::bitvectorCoreSolver() && */t.getKind() == kind::EQUAL) {
std::vector<Node> equalities;
Slicer::splitEqualities(t, equalities);
return utils::mkAnd(equalities);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback