summaryrefslogtreecommitdiff
path: root/src/theory/bv/theory_bv.cpp
diff options
context:
space:
mode:
authorlianah <lianahady@gmail.com>2013-04-12 16:15:30 -0400
committerlianah <lianahady@gmail.com>2013-04-12 16:15:30 -0400
commitc5c8a6497f8ac52c4f2c57fcd5ed23790f26c735 (patch)
treefc568c9d8ffab9a28160994aef9fd155da6f8278 /src/theory/bv/theory_bv.cpp
parentc3f618c1bc4ede1e975bc33903ec5dffb012c897 (diff)
finished implementing bv to bool lifting and added --bv-to-bool option
Diffstat (limited to 'src/theory/bv/theory_bv.cpp')
-rw-r--r--src/theory/bv/theory_bv.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/theory/bv/theory_bv.cpp b/src/theory/bv/theory_bv.cpp
index 433223308..fd2946d24 100644
--- a/src/theory/bv/theory_bv.cpp
+++ b/src/theory/bv/theory_bv.cpp
@@ -124,6 +124,7 @@ void TheoryBV::sendConflict() {
void TheoryBV::check(Effort e)
{
+ Trace("bitvector") <<"TheoryBV::check (" << e << ")\n";
Debug("bitvector") << "TheoryBV::check(" << e << ")" << std::endl;
if (options::bitvectorEagerBitblast()) {
return;
@@ -244,10 +245,10 @@ Theory::PPAssertStatus TheoryBV::ppAssert(TNode in, SubstitutionMap& outSubstitu
Node TheoryBV::ppRewrite(TNode t)
{
- if (RewriteRule<BitwiseEq>::applies(t)) {
- Node result = RewriteRule<BitwiseEq>::run<false>(t);
- return Rewriter::rewrite(result);
- }
+ // if (RewriteRule<BitwiseEq>::applies(t)) {
+ // Node result = RewriteRule<BitwiseEq>::run<false>(t);
+ // return Rewriter::rewrite(result);
+ // }
if (options::bitvectorCoreSolver() && t.getKind() == kind::EQUAL) {
std::vector<Node> equalities;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback