summaryrefslogtreecommitdiff
path: root/src/prop/prop_engine.cpp
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2020-03-10 14:51:32 -0700
committerGitHub <noreply@github.com>2020-03-10 14:51:32 -0700
commite9f4cec2cad02e270747759223090c16b9d2d44c (patch)
treeff902073b926d48cb0ae23848bee4b90e96000c7 /src/prop/prop_engine.cpp
parentbcaebfa163bb27e1cf14c0f763afb47b185a5f99 (diff)
Fix issue with reset-assertions. (#3988)
Calling (reset-assertions) in start mode was not handled correctly. Additionally, when calling (check-sat) after (reset-assertions) after a (check-sat) call that answered unsat, we answered unsat instead of sat. This cleans up and fixes reset-assertions) handling.
Diffstat (limited to 'src/prop/prop_engine.cpp')
-rw-r--r--src/prop/prop_engine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/prop/prop_engine.cpp b/src/prop/prop_engine.cpp
index 546567b98..19ee29191 100644
--- a/src/prop/prop_engine.cpp
+++ b/src/prop/prop_engine.cpp
@@ -120,6 +120,7 @@ PropEngine::PropEngine(TheoryEngine* te,
PropEngine::~PropEngine() {
Debug("prop") << "Destructing the PropEngine" << endl;
d_decisionEngine->shutdown();
+ d_decisionEngine.reset(nullptr);
delete d_cnfStream;
delete d_registrar;
delete d_satSolver;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback