summaryrefslogtreecommitdiff
path: root/src/theory/uf/equality_engine_notify.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/uf/equality_engine_notify.h')
-rw-r--r--src/theory/uf/equality_engine_notify.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/theory/uf/equality_engine_notify.h b/src/theory/uf/equality_engine_notify.h
index 2fd839115..f63a887ef 100644
--- a/src/theory/uf/equality_engine_notify.h
+++ b/src/theory/uf/equality_engine_notify.h
@@ -78,20 +78,12 @@ class EqualityEngineNotify
virtual void eqNotifyNewClass(TNode t) = 0;
/**
- * Notifies about the merge of two classes (just before the merge).
- *
- * @param t1 a term
- * @param t2 a term
- */
- virtual void eqNotifyPreMerge(TNode t1, TNode t2) = 0;
-
- /**
* Notifies about the merge of two classes (just after the merge).
*
* @param t1 a term
* @param t2 a term
*/
- virtual void eqNotifyPostMerge(TNode t1, TNode t2) = 0;
+ virtual void eqNotifyMerge(TNode t1, TNode t2) = 0;
/**
* Notifies about the disequality of two terms.
@@ -128,8 +120,7 @@ class EqualityEngineNotifyNone : public EqualityEngineNotify
}
void eqNotifyConstantTermMerge(TNode t1, TNode t2) override {}
void eqNotifyNewClass(TNode t) override {}
- void eqNotifyPreMerge(TNode t1, TNode t2) override {}
- void eqNotifyPostMerge(TNode t1, TNode t2) override {}
+ void eqNotifyMerge(TNode t1, TNode t2) override {}
void eqNotifyDisequal(TNode t1, TNode t2, TNode reason) override {}
}; /* class EqualityEngineNotifyNone */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback