summaryrefslogtreecommitdiff
path: root/src/theory/theory.cpp
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2011-10-17 03:12:17 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2011-10-17 03:12:17 +0000
commitbb59480a36fb0f799af53676c07b8fca43c2fff4 (patch)
tree555fb1210e2e94ba09bb9dd447cac30a6ad2ab70 /src/theory/theory.cpp
parent5cb65d8beac0f06fcafbef99d109c09ad029b14d (diff)
Sharing work
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