CPXgetcrossppushcnt


Description

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

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

Synopsis

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


Previous Page: CPXgetcrosspexchcnt Return to Top Next Page: CPXgetctype