Previous Page: CPXgetcrosspexchcntFirst PageNext Page: CPXgetctype

CPXgetcrossppushcnt


Usage

Barrier Users Only

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

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);

Arguments


CPXENVptr env
The pointer to the CPLEX environment as returned by one of the CPXopenCPLEX routines.

CPXLPptr lp
A pointer to a CPLEX LP problem object as returned by CPXcreateprob().

Example

itcnt = CPXgetcrossppushcnt (env, lp);
Previous Page: CPXgetcrosspexchcntFirst PageNext Page: CPXgetctype