pub unsafe extern "C" fn SCIPcomputeArraysIntersection(
    array1: *mut c_int,
    narray1: c_int,
    array2: *mut c_int,
    narray2: c_int,
    intersectarray: *mut c_int,
    nintersectarray: *mut c_int
) -> SCIP_RETCODE
Expand description

computes set intersection (duplicates removed) of two integer arrays that are ordered ascendingly

@deprecated Switch to SCIPcomputeArraysIntersectionInt().