| 267 | const HighsInt* getOrigColsIndex() const { return origColIndex.data(); } |
| 268 | |
| 269 | HighsInt getOrigRowIndex(HighsInt row) const { |
| 270 | assert(static_cast<size_t>(row) < origRowIndex.size()); |
| 271 | return origRowIndex[row]; |
| 272 | } |
| 273 | |
| 274 | HighsInt getOrigColIndex(HighsInt col) const { |
| 275 | assert(static_cast<size_t>(col) < origColIndex.size()); |
no test coverage detected