summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/theory/sets/theory_sets.cpp5
-rw-r--r--src/theory/sets/theory_sets.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/src/theory/sets/theory_sets.cpp b/src/theory/sets/theory_sets.cpp
index 17caac4f7..021db5bd3 100644
--- a/src/theory/sets/theory_sets.cpp
+++ b/src/theory/sets/theory_sets.cpp
@@ -203,6 +203,11 @@ eq::EqualityEngine* TheorySets::getEqualityEngine()
return &d_equalityEngine;
}
+void TheorySets::setMasterEqualityEngine(eq::EqualityEngine* eq)
+{
+ d_equalityEngine.setMasterEqualityEngine(eq);
+}
+
/**************************** eq::NotifyClass *****************************/
bool TheorySets::NotifyClass::eqNotifyTriggerEquality(TNode equality,
diff --git a/src/theory/sets/theory_sets.h b/src/theory/sets/theory_sets.h
index f1b59e419..505ba9547 100644
--- a/src/theory/sets/theory_sets.h
+++ b/src/theory/sets/theory_sets.h
@@ -65,6 +65,7 @@ class TheorySets : public Theory
PPAssertStatus ppAssert(TNode in, SubstitutionMap& outSubstitutions) override;
void presolve() override;
void propagate(Effort) override;
+ void setMasterEqualityEngine(eq::EqualityEngine* eq) override;
bool isEntailed(Node n, bool pol);
/* equality engine */
virtual eq::EqualityEngine* getEqualityEngine() override;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback