Usage
Mixed Integer Users OnlyCPXgetcovcnt() is used to access the number of cover cuts added to the LP problem object during mixed integer optimization. Return Value
If no solution, problem, or environment exists, CPXgetcovcnt() returns 0. Otherwise the number of cover cuts added is returned.Synopsis
int CPXgetcovcnt (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().
cover_cuts = CPXgetcovcnt (env, lp);