summaryrefslogtreecommitdiff
path: root/src/proof/unsat_core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/proof/unsat_core.cpp')
-rw-r--r--src/proof/unsat_core.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/proof/unsat_core.cpp b/src/proof/unsat_core.cpp
index 4a4d13977..37cc62aa0 100644
--- a/src/proof/unsat_core.cpp
+++ b/src/proof/unsat_core.cpp
@@ -16,6 +16,8 @@
#include "proof/unsat_core.h"
+#include "expr/expr_iomanip.h"
+#include "options/base_options.h"
#include "printer/printer.h"
#include "smt/smt_engine_scope.h"
#include "smt_util/command.h"
@@ -36,13 +38,13 @@ UnsatCore::const_iterator UnsatCore::end() const {
void UnsatCore::toStream(std::ostream& out) const {
smt::SmtScope smts(d_smt);
- Expr::dag::Scope scope(out, false);
+ expr::ExprDag::Scope scope(out, false);
Printer::getPrinter(options::outputLanguage())->toStream(out, *this);
}
void UnsatCore::toStream(std::ostream& out, const std::map<Expr, std::string>& names) const {
smt::SmtScope smts(d_smt);
- Expr::dag::Scope scope(out, false);
+ expr::ExprDag::Scope scope(out, false);
Printer::getPrinter(options::outputLanguage())->toStream(out, *this, names);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback