Function SCIPcreateConsBasicCumulative

Source
pub unsafe extern "C" fn SCIPcreateConsBasicCumulative(
    scip: *mut SCIP,
    cons: *mut *mut SCIP_CONS,
    name: *const c_char,
    nvars: c_int,
    vars: *mut *mut SCIP_VAR,
    durations: *mut c_int,
    demands: *mut c_int,
    capacity: c_int,
) -> SCIP_RETCODE
Expand description

creates and captures an absolute power constraint in its most basic version, i. e., all constraint flags are set to their basic value as explained for the method SCIPcreateConsCumulative(); all flags can be set via SCIPsetConsFLAGNAME-methods in scip.h

@see SCIPcreateConsCumulative() for information about the basic constraint flag configuration

@note the constraint gets captured, hence at one point you have to release it using the method SCIPreleaseCons()