pub unsafe extern "C" fn SCIPcreateConsBasicDisjunction(
scip: *mut SCIP,
cons: *mut *mut SCIP_CONS,
name: *const c_char,
nconss: c_int,
conss: *mut *mut SCIP_CONS,
relaxcons: *mut SCIP_CONS,
) -> SCIP_RETCODEExpand description
creates and captures a cumulative constraint in its most basic version, i. e., all constraint flags are set to their basic value as explained for the method SCIPcreateConsDisjunction(); all flags can be set via SCIPsetConsFLAGNAME-methods in scip.h
@see SCIPcreateConsDisjunction() 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()