NO FRAMES

CPXgetgenclqcnt

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

The routine CPXgetgenclqcnt is used to access the number of clique inequalities in the “clique table”, generated by CPLEX at the start of a mixed integer optimization.

Example

 gen_clique_cuts = CPXgetgenclqcnt (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

 gen_clique_cuts = CPXgetgenclqcnt (env, lp);

Returns:

If no solution, problem, or environment exists, CPXgetgenclqcnt returns 0. Otherwise, it returns the number of clique inequalities generated.