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

Change the bounds of multiple columns given by an array of indices.

@param highs A pointer to the Highs instance. @param num_set_entries The number of columns to change. @param set An array of size [num_set_entries] with the indices of the columns to change. @param lower An array of length [num_set_entries] with the new lower bounds. @param upper An array of length [num_set_entries] with the new upper bounds.

@returns A kHighsStatus constant indicating whether the call succeeded.