| 2882 | } |
| 2883 | |
| 2884 | HighsStatus Highs::addRow(const double lower_bound, const double upper_bound, |
| 2885 | const HighsInt num_new_nz, const HighsInt* indices, |
| 2886 | const double* values) { |
| 2887 | this->logHeader(); |
| 2888 | HighsInt starts = 0; |
| 2889 | return addRows(1, &lower_bound, &upper_bound, num_new_nz, &starts, indices, |
| 2890 | values); |
| 2891 | } |
| 2892 | |
| 2893 | HighsStatus Highs::addRows(const HighsInt num_new_row, |
| 2894 | const double* lower_bounds, |