Previous Page: CPXgetintquality First PageNext Page: CPXgetlb

CPXgetitcnt


Description

The routine CPXgetitcnt() is used to access the total number of simplex iterations to solve an LP problem, or the number of Barrier iterations if crossover is not used.

Return Value

If a solution exists, CPXgetitcnt() returns the total iteration count. If no solution exists, CPXgetitcnt() returns the value 0.

Synopsis

int CPXgetitcnt (CPXENVptr env,
                 CPXLPptr lp);

Arguments


CPXENVptr env
The pointer to the CPLEX environment as returned by one of the CPXopenCPLEX routines.

CPXLPptr lp
A pointer to a CPLEX LP problem object as returned by CPXcreateprob().

Example

itcnt = CPXgetitcnt (env, lp);

See Also

Example lpex6.c in the CPLEX User's Manual.

Previous Page: CPXgetintquality First PageNext Page: CPXgetlb