Home
last modified time | relevance | path

Searched refs:otherColumn (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Analysis/Presburger/
H A DMatrix.cpp78 void Matrix::swapColumns(unsigned column, unsigned otherColumn) { in swapColumns() argument
79 assert((column < getNumColumns() && otherColumn < getNumColumns()) && in swapColumns()
81 if (column == otherColumn) in swapColumns()
84 std::swap(at(row, column), at(row, otherColumn)); in swapColumns()
/llvm-project-15.0.7/mlir/include/mlir/Analysis/Presburger/
H A DMatrix.h70 void swapColumns(unsigned column, unsigned otherColumn);