| 80 | } |
| 81 | |
| 82 | bool HighsSparseMatrix::isRowwise() const { |
| 83 | return this->format_ == MatrixFormat::kRowwise || |
| 84 | this->format_ == MatrixFormat::kRowwisePartitioned; |
| 85 | } |
| 86 | |
| 87 | bool HighsSparseMatrix::isColwise() const { |
| 88 | return this->format_ == MatrixFormat::kColwise; |
no outgoing calls
no test coverage detected