summaryrefslogtreecommitdiff
path: root/src/theory/rewriter.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-07-12 22:42:15 +0000
committerMorgan Deters <mdeters@gmail.com>2011-07-12 22:42:15 +0000
commit95983dc012aa455b856f320ddcd4cfaf7c6a4582 (patch)
tree5bb1d7ef5177f524925bba2f23966afb1108c385 /src/theory/rewriter.cpp
parent3a58c99a2527f2adc83a17292c869322cee8da9f (diff)
fix bug 272, array unsoundness, and some array cleanup
Diffstat (limited to 'src/theory/rewriter.cpp')
-rw-r--r--src/theory/rewriter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/rewriter.cpp b/src/theory/rewriter.cpp
index e896f9058..bb42a5ec7 100644
--- a/src/theory/rewriter.cpp
+++ b/src/theory/rewriter.cpp
@@ -64,7 +64,7 @@ Node Rewriter::rewrite(Node node) {
Node Rewriter::rewriteTo(theory::TheoryId theoryId, Node node) {
- Debug("rewriter") << "Rewriter::rewriteTo(" << theoryId << "," << node << ")"<< std::endl;
+ Trace("rewriter") << "Rewriter::rewriteTo(" << theoryId << "," << node << ")"<< std::endl;
// Put the node on the stack in order to start the "recursive" rewrite
vector<RewriteStackElement> rewriteStack;
@@ -76,7 +76,7 @@ Node Rewriter::rewriteTo(theory::TheoryId theoryId, Node node) {
// Get the top of the recursion stack
RewriteStackElement& rewriteStackTop = rewriteStack.back();
- Debug("rewriter") << "Rewriter::rewriting: " << (TheoryId) rewriteStackTop.theoryId << "," << rewriteStackTop.node << std::endl;
+ Trace("rewriter") << "Rewriter::rewriting: " << (TheoryId) rewriteStackTop.theoryId << "," << rewriteStackTop.node << std::endl;
// Before rewriting children we need to do a pre-rewrite of the node
if (rewriteStackTop.nextChild == 0) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback