pub unsafe extern "C" fn SCIPselectWeightedInd(
indarray: *mut c_int,
indcomp: Option<unsafe extern "C" fn(dataptr: *mut c_void, ind1: c_int, ind2: c_int) -> c_int>,
dataptr: *mut c_void,
weights: *mut f64,
capacity: f64,
len: c_int,
medianpos: *mut c_int,
)Expand description
partial sort an index array in non-decreasing order around the weighted median w.r.t. \p weights and capacity, see \ref SelectionAlgorithms for more information.