Overview | Group | Tree | Graph | Index | Concepts |
This is an advanced routine. Advanced routines typically demand a profound understanding of the algorithms used by ILOG CPLEX. Thus they incur a higher risk of incorrect behavior in your application, behavior that can be difficult to debug. Therefore, ILOG encourages you to consider carefully whether you can accomplish the same task by means of other Callable Library routines instead.
The routine CPXgetcallbackctype
is used to get the ctypes
for the MIP problem from within a user-written callback during MIP
optimization. The values are from the original problem if
CPX_PARAM_MIPCBREDLP
is set to CPX_OFF
. Otherwise,
they are from the presolved problem.
This routine may be called only when the value of the
wherefrom
argument is one of the following:
CPX_CALLBACK_MIP
,
CPX_CALLBACK_MIP_BRANCH
,
CPX_CALLBACK_MIP_INCUMBENT
,
CPX_CALLBACK_MIP_NODE
,
CPX_CALLBACK_MIP_HEURISTIC
,
CPX_CALLBACK_MIP_SOLVE
, or
CPX_CALLBACK_MIP_CUT
.
Example
status = CPXgetcallbackctype (env, cbdata, wherefrom, prectype, 0, precols-1);
env | A pointer to the CPLEX environment, as returned by |
cbdata | The pointer passed to the user-written callback. This parameter must be the value of |
wherefrom | An integer value indicating from where the user-written callback was called. The parameter must be the value of |
xctype | An array where the ctype values for the MIP problem will be returned. The array must be of length at least ( |
begin | An integer indicating the beginning of the range of ctype values to be returned. |
end | An integer indicating the end of the range of ctype values to be returned. |