pub unsafe extern "C" fn Highs_getColsBySet(
highs: *const c_void,
num_set_entries: HighsInt,
set: *const HighsInt,
num_col: *mut HighsInt,
costs: *mut f64,
lower: *mut f64,
upper: *mut f64,
num_nz: *mut HighsInt,
matrix_start: *mut HighsInt,
matrix_index: *mut HighsInt,
matrix_value: *mut f64,
) -> HighsIntExpand description
Get data associated with multiple columns given by an array.
This function is identical to Highs_getColsByRange, except for how the
columns are specified.
@param num_set_indices The number of indices in set.
@param set An array of size [num_set_entries] with the column
indices to get.
@returns A kHighsStatus constant indicating whether the call succeeded.