File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
include/mlir/Analysis/Presburger Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ class FracMatrix : public Matrix<Fraction> {
322
322
// The parameter is what [the original
323
323
// paper](https://www.cs.cmu.edu/~avrim/451f11/lectures/lect1129_LLL.pdf)
324
324
// calls `y`, usually 3/4.
325
- void LLL (Fraction delta);
325
+ void LLL (const Fraction & delta);
326
326
327
327
// Multiply each row of the matrix by the LCM of the denominators, thereby
328
328
// converting it to an integer matrix.
Original file line number Diff line number Diff line change @@ -721,7 +721,7 @@ FracMatrix FracMatrix::gramSchmidt() const {
721
721
// Otherwise, we swap b_k and b_{k-1} and decrement k.
722
722
//
723
723
// We repeat this until k = n and return.
724
- void FracMatrix::LLL (Fraction delta) {
724
+ void FracMatrix::LLL (const Fraction & delta) {
725
725
DynamicAPInt nearest;
726
726
Fraction mu;
727
727
You can’t perform that action at this time.
0 commit comments