| 3589 | } |
| 3590 | |
| 3591 | HighsStatus Highs::scaleRow(const HighsInt row, const double scale_value) { |
| 3592 | HighsStatus return_status = HighsStatus::kOk; |
| 3593 | clearDerivedModelProperties(); |
| 3594 | HighsStatus call_status = scaleRowInterface(row, scale_value); |
| 3595 | return_status = interpretCallStatus(options_.log_options, call_status, |
| 3596 | return_status, "scaleRow"); |
| 3597 | if (return_status == HighsStatus::kError) return HighsStatus::kError; |
| 3598 | return returnFromHighs(return_status); |
| 3599 | } |
| 3600 | |
| 3601 | HighsStatus Highs::postsolve(const HighsSolution& solution) { |
| 3602 | HighsBasis basis; |
no test coverage detected