CPXgetcrossdpushcnt


Description

The routine CPXgetcrossdpushcnt() is used to access 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.

Return Value

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

Synopsis

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


Previous Page: CPXgetcrossdexchcnt Return to Top Next Page: CPXgetcrosspexchcnt