pub unsafe extern "C" fn SCIPselectWeightedPtrRealRealInt(
ptrarray: *mut *mut c_void,
realarray1: *mut f64,
realarray2: *mut f64,
intarray: *mut c_int,
ptrcomp: Option<unsafe extern "C" fn(elem1: *mut c_void, elem2: *mut c_void) -> c_int>,
weights: *mut f64,
capacity: f64,
len: c_int,
medianpos: *mut c_int,
)Expand description
partial sort of four joint arrays of pointers/Reals/Reals/ints, sorted by first array in non-decreasing order around the weighted median w.r.t. \p weights and capacity, see \ref SelectionAlgorithms for more information.