| 2919 | } |
| 2920 | |
| 2921 | HighsStatus Highs::changeObjectiveOffset(const double offset) { |
| 2922 | // Update the objective value |
| 2923 | info_.objective_function_value += (offset - model_.lp_.offset_); |
| 2924 | model_.lp_.offset_ = offset; |
| 2925 | presolved_model_.lp_.offset_ += offset; |
| 2926 | return returnFromHighs(HighsStatus::kOk); |
| 2927 | } |
| 2928 | |
| 2929 | HighsStatus Highs::changeColIntegrality(const HighsInt col, |
| 2930 | const HighsVarType integrality) { |
no outgoing calls