NO FRAMES

CPXgetmipitcnt

int CPXPUBLIC CPXgetmipitcnt(CPXCENVptr env, CPXCLPptr lp)
Definition file: cplex.h

The routine CPXgetmipitcnt is used to access the cumulative number of simplex iterations used to solve a mixed integer problem.

Example

 itcnt = CPXgetmipitcnt (env, lp);
 

Parameters:

env

A pointer to the CPLEX environment as returned by CPXopenCPLEX.

lp

A pointer to a CPLEX problem object as returned by CPXcreateprob.

Example

 itcnt = CPXgetmipitcnt (env, lp);
 

Returns:

If a solution exists, CPXgetmipitcnt returns the total iteration count. If no solution, problem, or environment exists, CPXgetmipitcnt returns the value 0.