summaryrefslogtreecommitdiff
path: root/src/theory/uf/equality_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/uf/equality_engine.cpp')
-rw-r--r--src/theory/uf/equality_engine.cpp33
1 files changed, 22 insertions, 11 deletions
diff --git a/src/theory/uf/equality_engine.cpp b/src/theory/uf/equality_engine.cpp
index 2173c6922..7ad243073 100644
--- a/src/theory/uf/equality_engine.cpp
+++ b/src/theory/uf/equality_engine.cpp
@@ -276,16 +276,26 @@ EqualityNodeId EqualityEngine::newNode(TNode node) {
return newId;
}
-void EqualityEngine::addFunctionKind(Kind fun, bool interpreted, bool extOperator) {
- d_congruenceKinds |= fun;
- if (fun != kind::EQUAL) {
- if (interpreted) {
- Debug("equality::evaluation") << d_name << "::eq::addFunctionKind(): " << fun << " is interpreted " << std::endl;
- d_congruenceKindsInterpreted |= fun;
+void EqualityEngine::addFunctionKind(Kind fun,
+ bool interpreted,
+ bool extOperator)
+{
+ d_congruenceKinds.set(fun);
+ if (fun != kind::EQUAL)
+ {
+ if (interpreted)
+ {
+ Debug("equality::evaluation")
+ << d_name << "::eq::addFunctionKind(): " << fun << " is interpreted "
+ << std::endl;
+ d_congruenceKindsInterpreted.set(fun);
}
- if (extOperator) {
- Debug("equality::extoperator") << d_name << "::eq::addFunctionKind(): " << fun << " is an external operator kind " << std::endl;
- d_congruenceKindsExtOperators |= fun;
+ if (extOperator)
+ {
+ Debug("equality::extoperator")
+ << d_name << "::eq::addFunctionKind(): " << fun
+ << " is an external operator kind " << std::endl;
+ d_congruenceKindsExtOperators.set(fun);
}
}
}
@@ -1744,8 +1754,9 @@ void EqualityEngine::addTriggerPredicate(TNode predicate) {
// equality is handled separately
return addTriggerEquality(predicate);
}
- Assert(d_congruenceKinds.tst(predicate.getKind()))
- << "No point in adding non-congruence predicates, kind is " << predicate.getKind();
+ Assert(d_congruenceKinds.test(predicate.getKind()))
+ << "No point in adding non-congruence predicates, kind is "
+ << predicate.getKind();
if (d_done) {
return;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback