Lines Matching defs:stopCondition
154 MLIRContext *ctx, StopConditionFn stopCondition,
156 : builder(ctx), stopCondition(stopCondition),
158 assert(stopCondition && "expected non-null stop condition");
385 if (stopCondition(value, maybeDim, *this)) {
466 const Variable &var, StopConditionFn stopCondition, bool closedUB) {
473 // `stopCondition` is met.
474 ValueBoundsConstraintSet cstr(ctx, stopCondition);
484 return !stopCondition(p.first, maybeDim, cstr);
632 StopConditionFn stopCondition, bool closedUB) {
642 var.getContext(), stopCondition ? stopCondition : defaultStopCondition);
671 // until `stopCondition` is met.
751 auto stopCondition = [&](Value v, std::optional<int64_t> dim,
760 ValueBoundsConstraintSet cstr(lhs.getContext(), stopCondition);