fix subtle bug

This commit is contained in:
lperron@google.com
2011-05-30 14:26:38 +00:00
parent 57a028bd26
commit f78a621c42

View File

@@ -1312,7 +1312,7 @@ void DomainIntVar::Process() {
Enqueue(*it);
}
}
if (min_ != old_min_ || max_ != old_max_) {
if (min_ != OldMin() || max_ != OldMax()) {
for (SimpleRevFIFO<Demon*>::Iterator it(&range_demons_); it.ok(); ++it) {
Enqueue(*it);
}