| 3579 | } |
| 3580 | |
| 3581 | HighsStatus Highs::scaleCol(const HighsInt col, const double scale_value) { |
| 3582 | HighsStatus return_status = HighsStatus::kOk; |
| 3583 | clearDerivedModelProperties(); |
| 3584 | HighsStatus call_status = scaleColInterface(col, scale_value); |
| 3585 | return_status = interpretCallStatus(options_.log_options, call_status, |
| 3586 | return_status, "scaleCol"); |
| 3587 | if (return_status == HighsStatus::kError) return HighsStatus::kError; |
| 3588 | return returnFromHighs(return_status); |
| 3589 | } |
| 3590 | |
| 3591 | HighsStatus Highs::scaleRow(const HighsInt row, const double scale_value) { |
| 3592 | HighsStatus return_status = HighsStatus::kOk; |
no test coverage detected