Previous Page: CPXgetchannelsFirst PageNext Page: CPXgetcoef

CPXgetclqcnt


Usage

Mixed Integer Users Only

Description

The routine CPXgetclqcnt() is used to access the number of clique cuts added to the problem object during mixed integer optimization.

Return Value

If no solution, problem, or environment exists, CPXgetclqcnt() returns 0. Otherwise it returns the number of clique inequalities that have been applied to the problem.

Synopsis

int CPXgetclqcnt (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

clique_cuts = CPXgetclqcnt (env, lp);
Previous Page: CPXgetchannelsFirst PageNext Page: CPXgetcoef