summaryrefslogtreecommitdiff
path: root/src/expr/node.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2010-02-26 18:58:17 +0000
committerTim King <taking@cs.nyu.edu>2010-02-26 18:58:17 +0000
commit3311e8276fb6221d9e100be2b1eec88d8f119fef (patch)
treeef0ceebcd85b1153a25af7438c4bae96fe5aecb8 /src/expr/node.cpp
parent12cc3d32407cabbc8c3ed3d980199a020b61a883 (diff)
TheoryUFWhite tests are added. There are also accompanying bug fixes. These currently do not pass. (See bug 39.) I modified node.h/cpp to get gdb debug printing working again
Diffstat (limited to 'src/expr/node.cpp')
-rw-r--r--src/expr/node.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/expr/node.cpp b/src/expr/node.cpp
index 213171124..5c3f1b771 100644
--- a/src/expr/node.cpp
+++ b/src/expr/node.cpp
@@ -20,26 +20,6 @@ namespace CVC4 {
namespace expr {
#ifdef CVC4_DEBUG
-
-/**
- * Pretty printer for use within gdb. This is not intended to be used
- * outside of gdb. This writes to the Warning() stream and immediately
- * flushes the stream.
- *
- * Note that this function cannot be a template, since the compiler
- * won't instantiate it. Even if we explicitly instantiate. (Odd?)
- * So we implement twice.
- */
-void CVC4_PUBLIC debugPrint(const NodeTemplate<true>& n) {
- n.printAst(Warning(), 0);
- Warning().flush();
-}
-
-void CVC4_PUBLIC debugPrint(const NodeTemplate<false>& n) {
- n.printAst(Warning(), 0);
- Warning().flush();
-}
-
#endif /* CVC4_DEBUG */
}/* CVC4::expr namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback