SCIPgetOrigVars

Function SCIPgetOrigVars 

Source
pub unsafe extern "C" fn SCIPgetOrigVars(
    scip: *mut SCIP,
) -> *mut *mut SCIP_VAR
Expand description

gets array with original problem variables

@return array with original problem variables

@note Variables in the array are grouped in following order: - binaries - integers - implied integral binaries - implied integral integers - implied integral continuous - continuous

@warning Modifying the variable number (e.g. with SCIPaddVar() and SCIPdelVar()) or a variable type (e.g. with SCIPchgVarType() and SCIPchgVarImplType()) may invalidate or resort the data array.

@pre This method can be called if @p scip is in one of the following stages: - \ref SCIP_STAGE_PROBLEM - \ref SCIP_STAGE_TRANSFORMING - \ref SCIP_STAGE_TRANSFORMED - \ref SCIP_STAGE_INITPRESOLVE - \ref SCIP_STAGE_PRESOLVING - \ref SCIP_STAGE_EXITPRESOLVE - \ref SCIP_STAGE_PRESOLVED - \ref SCIP_STAGE_INITSOLVE - \ref SCIP_STAGE_SOLVING - \ref SCIP_STAGE_SOLVED - \ref SCIP_STAGE_EXITSOLVE - \ref SCIP_STAGE_FREETRANS