SCIPcreateConsBasicOrbisack

Function SCIPcreateConsBasicOrbisack 

Source
pub unsafe extern "C" fn SCIPcreateConsBasicOrbisack(
    scip: *mut SCIP,
    cons: *mut *mut SCIP_CONS,
    name: *const c_char,
    vars1: *mut *mut SCIP_VAR,
    vars2: *mut *mut SCIP_VAR,
    nrows: c_int,
    ispporbisack: c_uint,
    isparttype: c_uint,
    ismodelcons: c_uint,
) -> SCIP_RETCODE
Expand description

creates and captures an orbisack constraint in its most basic variant

All constraint flags set to their default values, which can be set afterwards using SCIPsetConsFLAGNAME() in scip.h.

@see SCIPcreateConsOrbisack() for the default constraint flag configuration

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