pub unsafe extern "C" fn Highs_getRowsBySet(
    highs: *const c_void,
    num_set_entries: HighsInt,
    set: *const HighsInt,
    num_row: *mut HighsInt,
    lower: *mut f64,
    upper: *mut f64,
    num_nz: *mut HighsInt,
    matrix_start: *mut HighsInt,
    matrix_index: *mut HighsInt,
    matrix_value: *mut f64
) -> HighsInt
Expand description

Get data associated with multiple rows given by an array.

This function is identical to Highs_getRowsByRange, except for how the rows are specified.

@param num_set_indices The number of indices in set. @param set An array of size [num_set_entries] containing the row indices to get.

@returns A kHighsStatus constant indicating whether the call succeeded.