Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/lib/Analysis/Presburger/Simplex.cpp | ||
---|---|---|
133 | What's the denominator here? Doesn't seem to be in context. |
Comment Actions
Clarified where the denominator is.
mlir/lib/Analysis/Presburger/Simplex.cpp | ||
---|---|---|
133 | The first element of every row is the denominator. This is also documented in the class header, but I mentioned it here as well for clarity. Thanks for the quick review. |
mlir/lib/Analysis/Presburger/Simplex.cpp | ||
---|---|---|
134 | Nit: in general instead of two lines of comments, I like to "document with assert": assert(gcd && "first element of each row is the denominator and should be non-zero"); |
What's the denominator here? Doesn't seem to be in context.