pub unsafe extern "C" fn Highs_changeRowsBoundsByMask(
    highs: *mut c_void,
    mask: *const HighsInt,
    lower: *const f64,
    upper: *const f64
) -> HighsInt
Expand description

Change the bounds of multiple rows given by a mask.

@param highs A pointer to the Highs instance. @param mask An array of length [num_row] with 1 if the row bounds should be changed and 0 otherwise. @param lower An array of length [num_row] with the new lower bounds. @param upper An array of length [num_row] with the new upper bounds.

@returns A kHighsStatus constant indicating whether the call succeeded.