summaryrefslogtreecommitdiff
path: root/src/theory/uf/theory_uf.cpp
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2015-03-25 15:04:10 -0400
committerKshitij Bansal <kshitij@cs.nyu.edu>2015-03-25 15:04:10 -0400
commitde819295a17aafec36455cde1b4c912951b49273 (patch)
tree90b96607ebd6c0448c5145698dafdcc049607b8b /src/theory/uf/theory_uf.cpp
parent973cbd67611a2943714fd9544d098ec1472a40b8 (diff)
change const are triggers from false to true in equality engines
Diffstat (limited to 'src/theory/uf/theory_uf.cpp')
-rw-r--r--src/theory/uf/theory_uf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/uf/theory_uf.cpp b/src/theory/uf/theory_uf.cpp
index 11242569a..b00fdd6ee 100644
--- a/src/theory/uf/theory_uf.cpp
+++ b/src/theory/uf/theory_uf.cpp
@@ -34,7 +34,7 @@ TheoryUF::TheoryUF(context::Context* c, context::UserContext* u, OutputChannel&
/* The strong theory solver can be notified by EqualityEngine::init(),
* so make sure it's initialized first. */
d_thss(NULL),
- d_equalityEngine(d_notify, c, "theory::uf::TheoryUF", false),
+ d_equalityEngine(d_notify, c, "theory::uf::TheoryUF", true),
d_conflict(c, false),
d_literalsToPropagate(c),
d_literalsToPropagateIndex(c, 0),
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback