summaryrefslogtreecommitdiff
path: root/src/printer/cvc/cvc_printer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/printer/cvc/cvc_printer.h')
-rw-r--r--src/printer/cvc/cvc_printer.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/printer/cvc/cvc_printer.h b/src/printer/cvc/cvc_printer.h
index 3db3f2c66..7fb611a79 100644
--- a/src/printer/cvc/cvc_printer.h
+++ b/src/printer/cvc/cvc_printer.h
@@ -24,6 +24,9 @@
#include <iostream>
#include "printer/printer.h"
+#include "printer/dagification_visitor.h"
+#include "theory/substitutions.h"
+#include "util/node_visitor.h"
namespace CVC4 {
namespace printer {
@@ -32,10 +35,8 @@ namespace cvc {
class CvcPrinter : public CVC4::Printer {
void toStream(std::ostream& out, TNode n, int toDepth, bool types, bool bracket) const throw();
public:
- void toStream(std::ostream& out, TNode n, int toDepth, bool types) const throw() {
- toStream(out, n, toDepth, types, false);
- }
- void toStream(std::ostream& out, const Command* c, int toDepth, bool types) const throw();
+ void toStream(std::ostream& out, TNode n, int toDepth, bool types, size_t dag) const throw();
+ void toStream(std::ostream& out, const Command* c, int toDepth, bool types, size_t dag) const throw();
void toStream(std::ostream& out, const CommandStatus* s) const throw();
};/* class CvcPrinter */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback