Searched refs:otherColumn (Results 1 – 2 of 2) sorted by relevance
78 void Matrix::swapColumns(unsigned column, unsigned otherColumn) { in swapColumns() argument79 assert((column < getNumColumns() && otherColumn < getNumColumns()) && in swapColumns()81 if (column == otherColumn) in swapColumns()84 std::swap(at(row, column), at(row, otherColumn)); in swapColumns()
70 void swapColumns(unsigned column, unsigned otherColumn);