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

Delete 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 delete. @param set An array of size [num_set_entries] with the indices of the columns to delete.

@returns A kHighsStatus constant indicating whether the call succeeded.