pub unsafe extern "C" fn Highs_deleteRowsByMask(
    highs: *mut c_void,
    mask: *mut HighsInt
) -> HighsInt
Expand description

Delete 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 should be deleted and 0 otherwise. The new index of any column not deleted is stored in place of the value 0.

@returns A kHighsStatus constant indicating whether the call succeeded.