summaryrefslogtreecommitdiff
path: root/src/theory/theory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory.cpp')
-rw-r--r--src/theory/theory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/theory.cpp b/src/theory/theory.cpp
index 1451f654a..ff2feb121 100644
--- a/src/theory/theory.cpp
+++ b/src/theory/theory.cpp
@@ -61,9 +61,9 @@ void Theory::computeCareGraph(CareGraph& careGraph) {
// We don't care about the terms of different types
continue;
}
- switch (equalityStatus(a, b)) {
- case EQUALITY_TRUE:
- case EQUALITY_FALSE:
+ switch (getEqualityStatus(a, b)) {
+ case EQUALITY_TRUE_AND_PROPAGATED:
+ case EQUALITY_FALSE_AND_PROPAGATED:
// If we know about it, we should have propagated it, so we can skip
break;
default:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback