Searched refs:otherRow (Results 1 – 2 of 2) sorted by relevance
52 void Matrix::swapRows(unsigned row, unsigned otherRow) { in swapRows() argument53 assert((row < getNumRows() && otherRow < getNumRows()) && in swapRows()55 if (row == otherRow) in swapRows()58 std::swap(at(row, col), at(otherRow, col)); in swapRows()
49 void swapRows(unsigned row, unsigned otherRow);