Searched refs:swapRows (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/mlir/unittests/Analysis/Presburger/ |
D | MatrixTest.cpp | 52 mat.swapRows(2, 0); in TEST() 58 mat.swapRows(3, 4); in TEST() 59 mat.swapRows(1, 4); in TEST() 60 mat.swapRows(2, 0); in TEST() 61 mat.swapRows(1, 1); in TEST() 62 mat.swapRows(0, 2); in TEST()
|
/external/llvm-project/mlir/include/mlir/Analysis/Presburger/ |
D | Matrix.h | 49 void swapRows(unsigned row, unsigned otherRow);
|
D | Simplex.h | 294 void swapRows(unsigned i, unsigned j);
|
/external/llvm-project/mlir/lib/Analysis/Presburger/ |
D | Matrix.cpp | 52 void Matrix::swapRows(unsigned row, unsigned otherRow) { in swapRows() function in mlir::Matrix
|
D | Simplex.cpp | 338 void Simplex::swapRows(unsigned i, unsigned j) { in swapRows() function in mlir::Simplex 341 tableau.swapRows(i, j); in swapRows() 429 swapRows(constraint.pos, nRow - 1); in undo() 510 swapRows(u.pos, nRedundant); in markRowRedundant() 957 basis.swapRows(i, i + 1); in reduceBasis()
|