summaryrefslogtreecommitdiff
path: root/src/printer/cvc
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-11-15 23:58:41 +0000
committerMorgan Deters <mdeters@gmail.com>2010-11-15 23:58:41 +0000
commit759e85ae22536844a8c37714676bf9a65d7cc2b5 (patch)
tree9a04f014be38fc203a4b558020451b6cdec333a6 /src/printer/cvc
parentda6e14331b883dba0e48bc9879f611376e30bf36 (diff)
cleanup from today's commits: delegate as-yet-unimplemented prettyprinters in a better way; fix arith Makefile
Diffstat (limited to 'src/printer/cvc')
-rw-r--r--src/printer/cvc/cvc_printer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/printer/cvc/cvc_printer.cpp b/src/printer/cvc/cvc_printer.cpp
index aebaf7ae5..ab278e804 100644
--- a/src/printer/cvc/cvc_printer.cpp
+++ b/src/printer/cvc/cvc_printer.cpp
@@ -17,6 +17,7 @@
**/
#include "printer/cvc/cvc_printer.h"
+#include "util/language.h"
#include <iostream>
@@ -28,7 +29,7 @@ namespace cvc {
std::ostream& CvcPrinter::toStream(std::ostream& out, TNode n,
int toDepth, bool types) const {
- return out;
+ return n.toStream(out, toDepth, types, language::output::LANG_AST);
}/* CvcPrinter::toStream() */
}/* CVC4::printer::cvc namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback