Usage
Mixed Integer Users OnlyDescription
The routine CPXgetmipitcnt() is used to access the cumulative number of simplex iterations used to solve a mixed integer problem.Return Value
If a solution exists, CPXgetmipitcnt() returns the total iteration count. If no solution, problem, or environment exists, CPXgetmipitcnt() returns the value 0.Synopsis
int CPXgetmipitcnt (CPXENVptr env,
CPXLPptr lp);
CPXENVptr envThe pointer to the CPLEX environment as returned by one of the
CPXopenCPLEX routines.
CPXLPptr lpA pointer to a CPLEX LP problem object as returned by
CPXcreateprob().
itcnt = CPXgetmipitcnt (env, lp);