Overview | Group | Tree | Graph | Index | Concepts |
The routine CPXgetcutoff
is used to access the MIP cutoff
value being used during mixed integer optimization. The cutoff
is updated with the objective function value, each time an integer solution
is found during branch & cut.
Example
status = CPXgetcutoff (env, lp, &cutoff);
env | A pointer to the CPLEX environment as returned by |
lp | A pointer to a CPLEX problem object as returned by |
cutoff_p | A pointer to a location where the value of the Example status = CPXgetcutoff (env, lp, &cutoff); |