Usage
Mixed Integer Users OnlyDescription
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);
CPXENVptr envThe pointer to the CPLEX environment as returned by one of the
CPXopenCPLEX routines.
CPXLPptr lpA pointer to a CPLEX LP problem object as returned by
CPXcreateprob().
clique_cuts = CPXgetclqcnt (env, lp);