pub unsafe extern "C" fn SCIPapplyProximity(
scip: *mut SCIP,
heur: *mut SCIP_HEUR,
result: *mut SCIP_RESULT,
minimprove: f64,
nnodes: c_longlong,
nlpiters: c_longlong,
nusednodes: *mut c_longlong,
nusedlpiters: *mut c_longlong,
freesubscip: c_uint,
) -> SCIP_RETCODEExpand description
main procedure of the proximity heuristic, creates and solves a sub-SCIP
@note the method can be applied in an iterative way, keeping the same subscip in between. If the @p freesubscip parameter is set to FALSE, the heuristic will keep the subscip data structures. Always set this parameter to TRUE, or call SCIPdeleteSubproblemProximity() afterwards