summaryrefslogtreecommitdiff
path: root/src/printer/smt/smt_printer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/printer/smt/smt_printer.cpp')
-rw-r--r--src/printer/smt/smt_printer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/printer/smt/smt_printer.cpp b/src/printer/smt/smt_printer.cpp
index e6490de63..f74a1e07d 100644
--- a/src/printer/smt/smt_printer.cpp
+++ b/src/printer/smt/smt_printer.cpp
@@ -34,13 +34,13 @@ namespace printer {
namespace smt {
void SmtPrinter::toStream(std::ostream& out, TNode n,
- int toDepth, bool types) const throw() {
- n.toStream(out, toDepth, types, language::output::LANG_SMTLIB_V2);
+ int toDepth, bool types, size_t dag) const throw() {
+ n.toStream(out, toDepth, types, dag, language::output::LANG_SMTLIB_V2);
}/* SmtPrinter::toStream() */
void SmtPrinter::toStream(std::ostream& out, const Command* c,
- int toDepth, bool types) const throw() {
- c->toStream(out, toDepth, types, language::output::LANG_SMTLIB_V2);
+ int toDepth, bool types, size_t dag) const throw() {
+ c->toStream(out, toDepth, types, dag, language::output::LANG_SMTLIB_V2);
}/* SmtPrinter::toStream() */
void SmtPrinter::toStream(std::ostream& out, const CommandStatus* s) const throw() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback