projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fc42e5
)
making sure sat context is zero when user context is popped to 0 in SmtEngine destructor
author
lianah
<lianahady@gmail.com>
Thu, 18 Apr 2013 23:03:32 +0000
(19:03 -0400)
committer
lianah
<lianahady@gmail.com>
Thu, 18 Apr 2013 23:03:32 +0000
(19:03 -0400)
src/smt/smt_engine.cpp
patch
|
blob
|
history
diff --git
a/src/smt/smt_engine.cpp
b/src/smt/smt_engine.cpp
index 3663ac85405dea74390940fd3dd23fb838a9c83f..864b444df2f1569bb1a9ec9ba380637ce725daca 100644
(file)
--- a/
src/smt/smt_engine.cpp
+++ b/
src/smt/smt_engine.cpp
@@
-747,8
+747,8
@@
SmtEngine::~SmtEngine() throw() {
// global push/pop around everything, to ensure proper destruction
// of context-dependent data structures
- d_context->pop
(
);
- d_userContext->pop
(
);
+ d_context->pop
to(0
);
+ d_userContext->pop
to(0
);
if(d_assignments != NULL) {
d_assignments->deleteSelf();