summaryrefslogtreecommitdiff
path: root/src/smt/smt_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/smt_engine.cpp')
-rw-r--r--src/smt/smt_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 730852d4a..90caa1fb1 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -3968,7 +3968,7 @@ UnsatCore SmtEngine::getUnsatCore() throw(ModalException) {
throw ModalException("Cannot get an unsat core unless immediately preceded by UNSAT/VALID response.");
}
- delete d_proofManager->getProof(this);// just to trigger core creation
+ d_proofManager->getProof(this);// just to trigger core creation
return UnsatCore(d_proofManager->begin_unsat_core(), d_proofManager->end_unsat_core());
#else /* CVC4_PROOF */
throw ModalException("This build of CVC4 doesn't have proof support (required for unsat cores).");
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback