NO FRAMES

CPXgetcrossdpushcnt

public int CPXgetcrossdpushcnt(CPXCENVptr env, CPXCLPptr lp)
Definition file: cplex.h

The routine CPXgetcrossdpushcnt accesses the number of dual push iterations in the crossover method. A push occurs when a nonbasic variable switches bounds and does not enter the basis.

Example

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

Returns:

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