CPXgetitcnt


Description

The routine CPXgetitcnt() is used to access the total number of simplex iterations to solve an LP problem, or the number of crossover iterations in the case that Barrier is 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 (CPXCENVptr env, CPXCLPptr lp);

Arguments

CPXCENVptr env

The pointer to the CPLEX environment as returned by CPXopenCPLEX().

CPXCLPptr lp

A pointer to a CPLEX 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 Return to Top Next Page: CPXgetlb