summaryrefslogtreecommitdiff
path: root/src/theory/sets
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/sets')
-rw-r--r--src/theory/sets/theory_sets.cpp4
-rw-r--r--src/theory/sets/theory_sets.h2
2 files changed, 2 insertions, 4 deletions
diff --git a/src/theory/sets/theory_sets.cpp b/src/theory/sets/theory_sets.cpp
index 647a7bb47..63ebacc23 100644
--- a/src/theory/sets/theory_sets.cpp
+++ b/src/theory/sets/theory_sets.cpp
@@ -88,9 +88,7 @@ void TheorySets::finishInit()
d_internal->finishInit();
}
-void TheorySets::addSharedTerm(TNode n) {
- d_internal->addSharedTerm(n);
-}
+void TheorySets::notifySharedTerm(TNode n) { d_internal->addSharedTerm(n); }
void TheorySets::check(Effort e) {
if (done() && e < Theory::EFFORT_FULL) {
diff --git a/src/theory/sets/theory_sets.h b/src/theory/sets/theory_sets.h
index 9e04b89a7..a7fb31dab 100644
--- a/src/theory/sets/theory_sets.h
+++ b/src/theory/sets/theory_sets.h
@@ -58,7 +58,7 @@ class TheorySets : public Theory
void finishInit() override;
//--------------------------------- end initialization
- void addSharedTerm(TNode) override;
+ void notifySharedTerm(TNode) override;
void check(Effort) override;
bool collectModelInfo(TheoryModel* m) override;
void computeCareGraph() override;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback