File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
mlir/lib/Analysis/Presburger Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -113,14 +113,14 @@ QuasiPolynomial QuasiPolynomial::simplify() {
113
113
// A term is zero if its coefficient is zero, or
114
114
if (coefficients[i] == Fraction (0 , 1 ))
115
115
continue ;
116
- bool product_is_zero =
116
+ bool productIsZero =
117
117
// if any of the affine functions in the product
118
- llvm::any_of (affine[i], [](const SmallVector<Fraction> &affine_ij ) {
118
+ llvm::any_of (affine[i], [](const SmallVector<Fraction> &affineIj ) {
119
119
// has all its coefficients as zero.
120
- return llvm::all_of (affine_ij ,
120
+ return llvm::all_of (affineIj ,
121
121
[](const Fraction &f) { return f == 0 ; });
122
122
});
123
- if (product_is_zero )
123
+ if (productIsZero )
124
124
continue ;
125
125
126
126
// Now, we know the term is nonzero.
You can’t perform that action at this time.
0 commit comments