summaryrefslogtreecommitdiff
path: root/src/proof/unsat_core.cpp
diff options
context:
space:
mode:
authorTim King <taking@google.com>2015-12-30 11:45:37 -0800
committerTim King <taking@google.com>2015-12-30 11:45:37 -0800
commitfa7f30a4ba08afe066604daee87006b4fb5f21f7 (patch)
tree6eecac7cce64fa00f4ac5c18f023f1bc234435a3 /src/proof/unsat_core.cpp
parent1ce397129214a427a10ff3e33069e315fe13eec1 (diff)
Shuffling around public vs. private headers
- Adding a script contrib/test_install_headers.h that tests whether one can include all cvc4_public headers. CVC4 can pass this test after this commit. - Making lib/{clock_gettime.h,ffs.h,strtok_r.h} cvc4_private. - Making prop/sat_solver_factory.h cvc4_private. - Moving the expr iostream manipulators into their own files: expr_iomanip.{h,cpp}. - Setting the generated *_options.h files back to being cvc4_private. -- Removing the usage of options/expr_options.h from expr.h. -- Removing the include of base_options.h from options.h. - Cleaning up CPP macros in cvc4_public headers. -- Changing the ROLL macro in floatingpoint.h into an inline function. -- Removing the now unused flag -D__BUILDING_STATISTICS_FOR_EXPORT.
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