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.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/proof/unsat_core.cpp b/src/proof/unsat_core.cpp
index c8696868e..3e5e493f1 100644
--- a/src/proof/unsat_core.cpp
+++ b/src/proof/unsat_core.cpp
@@ -44,13 +44,6 @@ void UnsatCore::toStream(std::ostream& out) const {
Printer::getPrinter(options::outputLanguage())->toStream(out, *this);
}
-void UnsatCore::toStream(std::ostream& out, const std::map<Expr, std::string>& names) const {
- Assert(d_smt != NULL);
- smt::SmtScope smts(d_smt);
- expr::ExprDag::Scope scope(out, false);
- Printer::getPrinter(options::outputLanguage())->toStream(out, *this, names);
-}
-
std::ostream& operator<<(std::ostream& out, const UnsatCore& core) {
core.toStream(out);
return out;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback