summaryrefslogtreecommitdiff
path: root/src/theory/uf/equality_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/uf/equality_engine.cpp')
-rw-r--r--src/theory/uf/equality_engine.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/theory/uf/equality_engine.cpp b/src/theory/uf/equality_engine.cpp
index fe75b5f59..9376c858d 100644
--- a/src/theory/uf/equality_engine.cpp
+++ b/src/theory/uf/equality_engine.cpp
@@ -65,6 +65,10 @@ void EqualityEngine::init() {
d_triggerDatabaseAllocatedSize = 100000;
d_triggerDatabase = (char*) malloc(d_triggerDatabaseAllocatedSize);
+ //We can't notify during the initialization because it notifies
+ // QuantifiersEngine.AddTermToDatabase that try to access to the uf
+ // instantiator that currently doesn't exist.
+ ScopedBool sb(d_performNotify, false);
addTerm(d_true);
addTerm(d_false);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback