// If we built NewCO, check if we called all the checkers. This is important
// so that we know that we accurately determined the entire set of checkers
- // that responds to this callback.
- if (NewCO.get()) {
- assert(checkersEvaluated == Checkers.size());
+ // that responds to this callback. Note that 'checkersEvaluated' might
+ // not be the same as Checkers.size() if one of the Checkers generates
+ // a sink node.
+ if (NewCO.get() && checkersEvaluated == Checkers.size())
CO_Ref = NewCO.take();
- }
// Don't autotransition. The CheckerContext objects should do this
// automatically.