summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/theory/sets/theory_sets_private.cpp2
-rw-r--r--src/theory/sets/theory_sets_private.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/theory/sets/theory_sets_private.cpp b/src/theory/sets/theory_sets_private.cpp
index 78f6fa8b5..bbe46b2a6 100644
--- a/src/theory/sets/theory_sets_private.cpp
+++ b/src/theory/sets/theory_sets_private.cpp
@@ -912,7 +912,7 @@ void TheorySetsPrivate::checkDisequalities()
Node mem2 = nm->mkNode(MEMBER, x, deq[1]);
Node lem = nm->mkNode(OR, deq, nm->mkNode(EQUAL, mem1, mem2).negate());
lem = Rewriter::rewrite(lem);
- d_im.assertInference(lem, d_emp_exp, "diseq", 1);
+ d_im.assertInference(lem, d_true, "diseq", 1);
d_im.flushPendingLemmas();
if (d_im.hasProcessed())
{
diff --git a/src/theory/sets/theory_sets_private.h b/src/theory/sets/theory_sets_private.h
index da42ad1fe..fc9650204 100644
--- a/src/theory/sets/theory_sets_private.h
+++ b/src/theory/sets/theory_sets_private.h
@@ -124,7 +124,6 @@ class TheorySetsPrivate {
*/
NodeSet d_termProcessed;
NodeSet d_keep;
- std::vector< Node > d_emp_exp;
//propagation
class EqcInfo
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback