Lines Matching defs:term
23 // For each term which involves at least one affine function,
24 for (const std::vector<SmallVector<Fraction>> &term : affine) {
25 if (term.empty())
29 for (const SmallVector<Fraction> &aff : term) {
79 for (const std::vector<SmallVector<Fraction>> &term : affine) {
82 product.insert(product.end(), term.begin(), term.end());
112 // A term is zero if its coefficient is zero, or
125 // Now, we know the term is nonzero.
131 for (ArrayRef<Fraction> term : affine[i]) {
133 term.slice(0, numParam), [](const Fraction &c) { return c == 0; });
135 newCoeff *= term[numParam];
137 newAffineTerm.emplace_back(term);