File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
mlir/include/mlir/Analysis/Presburger Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -917,7 +917,7 @@ class IntegerPolyhedron : public IntegerRelation {
917
917
// / Constructs a relation with the specified number of dimensions and symbols
918
918
// / and adds the given inequalities.
919
919
explicit IntegerPolyhedron (const PresburgerSpace &space,
920
- IntMatrix inequalities)
920
+ const IntMatrix & inequalities)
921
921
: IntegerPolyhedron(space) {
922
922
for (unsigned i = 0 , e = inequalities.getNumRows (); i < e; i++)
923
923
addInequality (inequalities.getRow (i));
@@ -927,7 +927,7 @@ class IntegerPolyhedron : public IntegerRelation {
927
927
// / and adds the given inequalities, after normalizing row-wise to integer
928
928
// / values.
929
929
explicit IntegerPolyhedron (const PresburgerSpace &space,
930
- FracMatrix inequalities)
930
+ const FracMatrix & inequalities)
931
931
: IntegerPolyhedron(space) {
932
932
IntMatrix ineqsNormalized = inequalities.normalizeRows ();
933
933
for (unsigned i = 0 , e = inequalities.getNumRows (); i < e; i++)
You can’t perform that action at this time.
0 commit comments