CPXgetbaritcnt


Description

The routine CPXgetbaritcnt() is used to access the total number of Barrier iterations to solve an LP problem.

Return Value

The routine returns the total iteration count if a solution exists. It returns zero if no solution exists or any other type of error occurs.

Synopsis

  int CPXgetbaritcnt (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 = CPXgetbaritcnt (env, lp);


Previous Page: CPXgetax Return to Top Next Page: CPXgetbase