[Mlir-commits] [mlir] [MLIR][Presburger] Implement computation of generating function for unimodular cones (PR #77235)

Arjun P llvmlistbot at llvm.org
Tue Jan 9 05:47:19 PST 2024


================
@@ -181,6 +181,9 @@ class Matrix {
   /// `elems` must be equal to the number of columns.
   unsigned appendExtraRow(ArrayRef<T> elems);
 
+  // Transpose the matrix without modifying it.
+  Matrix<T> transpose();
----------------
Superty wrote:

`/// Return the transpose of the matrix.`

Add const qualifier

https://github.com/llvm/llvm-project/pull/77235


More information about the Mlir-commits mailing list