pub unsafe extern "C" fn SCIPincludeNodeselBasic(
scip: *mut SCIP,
nodesel: *mut *mut SCIP_NODESEL,
name: *const c_char,
desc: *const c_char,
stdpriority: c_int,
memsavepriority: c_int,
nodeselselect: Option<unsafe extern "C" fn(scip: *mut SCIP, nodesel: *mut SCIP_NODESEL, selnode: *mut *mut SCIP_NODE) -> SCIP_RETCODE>,
nodeselcomp: Option<unsafe extern "C" fn(scip: *mut SCIP, nodesel: *mut SCIP_NODESEL, node1: *mut SCIP_NODE, node2: *mut SCIP_NODE) -> c_int>,
nodeseldata: *mut SCIP_NODESELDATA,
) -> SCIP_RETCODEExpand description
Creates a node selector and includes it in SCIP with its most fundamental callbacks. All non-fundamental (or optional) callbacks as, e.g., init and exit callbacks, will be set to NULL. Optional callbacks can be set via specific setter functions, see SCIPsetNodeselCopy(), SCIPsetNodeselFree(), SCIPsetNodeselInit(), SCIPsetNodeselExit(), SCIPsetNodeselInitsol(), and SCIPsetNodeselExitsol()
@note if you want to set all callbacks with a single method call, consider using SCIPincludeNodesel() instead