SCIPincludeSepaBasic

Function SCIPincludeSepaBasic 

Source
pub unsafe extern "C" fn SCIPincludeSepaBasic(
    scip: *mut SCIP,
    sepa: *mut *mut SCIP_SEPA,
    name: *const c_char,
    desc: *const c_char,
    priority: c_int,
    freq: c_int,
    maxbounddist: f64,
    usessubscip: c_uint,
    delay: c_uint,
    sepaexeclp: Option<unsafe extern "C" fn(scip: *mut SCIP, sepa: *mut SCIP_SEPA, result: *mut SCIP_RESULT, allowlocal: c_uint, depth: c_int) -> SCIP_RETCODE>,
    sepaexecsol: Option<unsafe extern "C" fn(scip: *mut SCIP, sepa: *mut SCIP_SEPA, sol: *mut SCIP_SOL, result: *mut SCIP_RESULT, allowlocal: c_uint, depth: c_int) -> SCIP_RETCODE>,
    sepadata: *mut SCIP_SEPADATA,
) -> SCIP_RETCODE
Expand description

creates a separator 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 SCIPsetSepaInit(), SCIPsetSepaFree(), SCIPsetSepaInitsol(), SCIPsetSepaExitsol(), SCIPsetSepaCopy(), SCIPsetExit().

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