summaryrefslogtreecommitdiff
path: root/src/smt_util/model.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt_util/model.cpp')
-rw-r--r--src/smt_util/model.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/smt_util/model.cpp b/src/smt_util/model.cpp
index 3f0423f49..ddac7e263 100644
--- a/src/smt_util/model.cpp
+++ b/src/smt_util/model.cpp
@@ -16,10 +16,12 @@
#include <vector>
-#include "smt_util/command.h"
-#include "smt/smt_engine_scope.h"
-#include "smt/command_list.h"
+#include "expr/expr_iomanip.h"
+#include "options/base_options.h"
#include "printer/printer.h"
+#include "smt/command_list.h"
+#include "smt/smt_engine_scope.h"
+#include "smt_util/command.h"
using namespace std;
@@ -27,7 +29,7 @@ namespace CVC4 {
std::ostream& operator<<(std::ostream& out, const Model& m) {
smt::SmtScope smts(&m.d_smt);
- Expr::dag::Scope scope(out, false);
+ expr::ExprDag::Scope scope(out, false);
Printer::getPrinter(options::outputLanguage())->toStream(out, m);
return out;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback