SCIPincludeCutselBasic

Function SCIPincludeCutselBasic 

Source
pub unsafe extern "C" fn SCIPincludeCutselBasic(
    scip: *mut SCIP,
    cutsel: *mut *mut SCIP_CUTSEL,
    name: *const c_char,
    desc: *const c_char,
    priority: c_int,
    cutselselect: Option<unsafe extern "C" fn(scip: *mut SCIP, cutsel: *mut SCIP_CUTSEL, cuts: *mut *mut SCIP_ROW, ncuts: c_int, forcedcuts: *mut *mut SCIP_ROW, nforcedcuts: c_int, root: c_uint, maxnselectedcuts: c_int, nselectedcuts: *mut c_int, result: *mut SCIP_RESULT) -> SCIP_RETCODE>,
    cutseldata: *mut SCIP_CUTSELDATA,
) -> SCIP_RETCODE
Expand description

Creates a cut 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 SCIPsetCutselCopy(), SCIPsetCutselFree(), SCIPsetCutselInit(), SCIPsetCutselExit(), SCIPsetCutselInitsol(), and SCIPsetCutselExitsol()

@note if you want to set all callbacks with a single method call, consider using SCIPincludeCutsel() instead