Previous Page: CPXgetmipcallbackfuncFirst PageNext Page: CPXgetmipobjval

CPXgetmipitcnt


Usage

Mixed Integer Users Only

Description

The routine CPXgetmipitcnt() is used to access the cumulative number of simplex iterations used to solve a mixed integer problem.

Return Value

If a solution exists, CPXgetmipitcnt() returns the total iteration count. If no solution, problem, or environment exists, CPXgetmipitcnt() returns the value 0.

Synopsis

int CPXgetmipitcnt (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 = CPXgetmipitcnt (env, lp);
Previous Page: CPXgetmipcallbackfuncFirst PageNext Page: CPXgetmipobjval