summaryrefslogtreecommitdiff
path: root/src/theory/rewriter.cpp
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.nyu.edu>2012-06-10 14:43:58 +0000
committerClark Barrett <barrett@cs.nyu.edu>2012-06-10 14:43:58 +0000
commit48f837c9d53e2e93b14786943f9961228e0d9933 (patch)
tree6caf8bc4dc9e6d937b7db30587257504be632589 /src/theory/rewriter.cpp
parent103d6a6aad30410f8d7546c25c1f5e67f1c334d7 (diff)
Added a very fruitful assertion to the rewriter: checks that rewriting after "REWRITE_DONE" is idempotent
Found several problems where this is not the case and fixed them
Diffstat (limited to 'src/theory/rewriter.cpp')
-rw-r--r--src/theory/rewriter.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/theory/rewriter.cpp b/src/theory/rewriter.cpp
index 9e69738d3..18274e060 100644
--- a/src/theory/rewriter.cpp
+++ b/src/theory/rewriter.cpp
@@ -160,15 +160,20 @@ Node Rewriter::rewriteTo(theory::TheoryId theoryId, Node node) {
// Do the post-rewrite
RewriteResponse response = Rewriter::callPostRewrite((TheoryId) rewriteStackTop.theoryId, rewriteStackTop.node);
// We continue with the response we got
- rewriteStackTop.node = response.node;
- TheoryId newTheoryId = Theory::theoryOf(rewriteStackTop.node);
+ TheoryId newTheoryId = Theory::theoryOf(response.node);
if (newTheoryId != (TheoryId) rewriteStackTop.theoryId || response.status == REWRITE_AGAIN_FULL) {
// In the post rewrite if we've changed theories, we must do a full rewrite
- rewriteStackTop.node = rewriteTo(newTheoryId, rewriteStackTop.node);
+ rewriteStackTop.node = rewriteTo(newTheoryId, response.node);
break;
} else if (response.status == REWRITE_DONE) {
+#ifdef CVC4_ASSERTIONS
+ RewriteResponse r2 = Rewriter::callPostRewrite(newTheoryId, response.node);
+ Assert(r2.node == response.node);
+#endif
+ rewriteStackTop.node = response.node;
break;
}
+ rewriteStackTop.node = response.node;
}
// We're done with the post rewrite, so we add to the cache
Rewriter::setPostRewriteCache((TheoryId) rewriteStackTop.originalTheoryId, rewriteStackTop.original, rewriteStackTop.node);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback