pub unsafe extern "C" fn SCIPgetRandomSubset(
    set: *mut *mut c_void,
    nelems: c_int,
    subset: *mut *mut c_void,
    nsubelems: c_int,
    randseed: c_uint
) -> SCIP_RETCODE
Expand description

draws a random subset of disjoint elements from a given set of disjoint elements; this implementation is suited for the case that nsubelems is considerably smaller then nelems

@deprecated Please use SCIPrandomGetSubset()