Searched refs:otherColumn (Results 1 – 2 of 2) sorted by relevance
61 void Matrix::swapColumns(unsigned column, unsigned otherColumn) { in swapColumns() argument62 assert((column < getNumColumns() && otherColumn < getNumColumns()) && in swapColumns()64 if (column == otherColumn) in swapColumns()67 std::swap(at(row, column), at(row, otherColumn)); in swapColumns()
46 void swapColumns(unsigned column, unsigned otherColumn);