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 @@ -318,7 +318,7 @@ class FracMatrix : public Matrix<Fraction> {
318
318
// The parameter is what [the original
319
319
// paper](https://www.cs.cmu.edu/~avrim/451f11/lectures/lect1129_LLL.pdf)
320
320
// calls `y`, usually 3/4.
321
- void LLL (Fraction delta);
321
+ void LLL (const Fraction & delta);
322
322
323
323
// Multiply each row of the matrix by the LCM of the denominators, thereby
324
324
// converting it to an integer matrix.
Original file line number Diff line number Diff line change @@ -717,7 +717,7 @@ FracMatrix FracMatrix::gramSchmidt() const {
717
717
// Otherwise, we swap b_k and b_{k-1} and decrement k.
718
718
//
719
719
// We repeat this until k = n and return.
720
- void FracMatrix::LLL (Fraction delta) {
720
+ void FracMatrix::LLL (const Fraction & delta) {
721
721
MPInt nearest;
722
722
Fraction mu;
723
723
You can’t perform that action at this time.
0 commit comments