summaryrefslogtreecommitdiff
path: root/src/printer/cvc/cvc_printer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/printer/cvc/cvc_printer.cpp')
-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