pub unsafe extern "C" fn SCIPcreateConsBasicOrbitope(
scip: *mut SCIP,
cons: *mut *mut SCIP_CONS,
name: *const c_char,
vars: *mut *mut *mut SCIP_VAR,
orbitopetype: SCIP_ORBITOPETYPE,
nrows: c_int,
ncols: c_int,
resolveprop: c_uint,
ismodelcons: c_uint,
checkpporbitope: c_uint,
) -> SCIP_RETCODEExpand description
creates and captures an orbitope constraint in its most basic variant, i. e., with all constraint flags set to their default values, which can be set afterwards using SCIPsetConsFLAGNAME()
@see SCIPcreateConsOrbitope() for the default constraint flag configuration
@note the constraint gets captured, hence at one point you have to release it using the method SCIPreleaseCons()