NO FRAMES

CPXgetcrossppushcnt

int CPXPUBLIC CPXgetcrossppushcnt(CPXCENVptr env, CPXCLPptr lp)
Definition file: cplex.h
Include files: cplex.h

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.

Example

 itcnt = CPXgetcrossppushcnt (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 = CPXgetcrossppushcnt (env, lp);
 

Returns:

The routine returns the primal push iteration count if a solution exists. If no solution exists, it returns zero.