Usage
Barrier Users OnlyDescription
The routine CPXgetcrossppushcnt() is used to access the number of primal push iterations in the crossover method. A push occurs when a nonbasic variable switches bounds and does not enter the basis.Return Value
If a solution exists, CPXgetcrossppushcnt() returns the primal push iteration count. If no solution exists, CPXgetcrossppushcnt() returns the value 0.Synopsis
int CPXgetcrossppushcnt (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 = CPXgetcrossppushcnt (env, lp);