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

Delete multiple rows given by an array of indices.

@param highs A pointer to the Highs instance. @param num_set_entries The number of rows to delete. @param set An array of size [num_set_entries] with the indices of the rows to delete.

@returns A kHighsStatus constant indicating whether the call succeeded.