NO FRAMES

CPXgetclqcnt

int CPXPUBLIC CPXgetclqcnt(CPXCENVptr env, CPXCLPptr lp)
Definition file: cplex.h
Include files: cplex.h

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

Example

 clique_cuts = CPXgetclqcnt (env, lp);

Parameters:

env

A pointer to the CPLEX environment as returned by CPXopenCPLEX.

lp

A pointer to a CPLEX problem object as returned by CPXcreateprob.

Example

 clique_cuts = CPXgetclqcnt (env, lp);

Returns:

This routine returns zero if no solution, problem, or environment exists. Otherwise, the number of clique cuts added is returned.