summaryrefslogtreecommitdiff
path: root/src/theory/rewriter.cpp
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.nyu.edu>2012-05-28 16:27:50 +0000
committerClark Barrett <barrett@cs.nyu.edu>2012-05-28 16:27:50 +0000
commit5c61887222630583b48bd26fc914d166f122c252 (patch)
tree7d3027303409ad803cb1771195ec7cbd90f9f984 /src/theory/rewriter.cpp
parent21f9e53792ba5f94594fccb7bef880aa77b266cb (diff)
Added some BV rewrites, fixed bugs in array theory, made ite simp work with BV
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 4f9075f52..9e69738d3 100644
--- a/src/theory/rewriter.cpp
+++ b/src/theory/rewriter.cpp
@@ -49,7 +49,7 @@ struct RewriteStackElement {
/**
* Construct a fresh stack element.
*/
- RewriteStackElement(Node node, TheoryId theoryId) :
+ RewriteStackElement(TNode node, TheoryId theoryId) :
node(node),
original(node),
theoryId(theoryId),
@@ -58,7 +58,7 @@ struct RewriteStackElement {
}
};
-Node Rewriter::rewrite(Node node) {
+Node Rewriter::rewrite(TNode node) {
return rewriteTo(theory::Theory::theoryOf(node), node);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback