summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/theory/sets/inference_manager.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/theory/sets/inference_manager.cpp b/src/theory/sets/inference_manager.cpp
index e29e574be..a2507d6cf 100644
--- 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);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback