| 272 | } |
| 273 | |
| 274 | HighsInt getOrigColIndex(HighsInt col) const { |
| 275 | assert(static_cast<size_t>(col) < origColIndex.size()); |
| 276 | return origColIndex[col]; |
| 277 | } |
| 278 | |
| 279 | void appendCutsToModel(HighsInt numCuts) { |
| 280 | size_t currNumRow = origRowIndex.size(); |
no test coverage detected