projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f6bcbc
)
Initialize fields in sets inference manager (#3289)
author
Andrew Reynolds
<andrew.j.reynolds@gmail.com>
Mon, 16 Sep 2019 17:03:58 +0000
(12:03 -0500)
committer
GitHub
<noreply@github.com>
Mon, 16 Sep 2019 17:03:58 +0000
(12:03 -0500)
src/theory/sets/inference_manager.cpp
patch
|
blob
|
history
diff --git
a/src/theory/sets/inference_manager.cpp
b/src/theory/sets/inference_manager.cpp
index e29e574be3a2bea794c58883944bec5fbee397fc..a2507d6cf15385cad2bee01dea1d446e4b7f4745 100644
(file)
--- a/
src/theory/sets/inference_manager.cpp
+++ b/
src/theory/sets/inference_manager.cpp
@@
-30,7
+30,13
@@
InferenceManager::InferenceManager(TheorySetsPrivate& p,
eq::EqualityEngine& e,
context::Context* c,
context::UserContext* u)
- : d_parent(p), d_state(s), d_ee(e), d_lemmas_produced(u), d_keep(c)
+ : d_parent(p),
+ d_state(s),
+ d_ee(e),
+ d_sentLemma(false),
+ d_addedFact(false),
+ d_lemmas_produced(u),
+ d_keep(c)
{
d_true = NodeManager::currentNM()->mkConst(true);
d_false = NodeManager::currentNM()->mkConst(false);