CPXgetclqcnt


Description

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

Return Value

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

Synopsis

  int CPXgetclqcnt (CPXCENVptr env, CPXCLPptr lp);

Arguments

CPXCENVptr env

The pointer to the CPLEX environment as returned by CPXopenCPLEX().

CPXCLPptr lp

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

Example

  clique_cuts = CPXgetclqcnt (env, lp);


Previous Page: CPXgetchannels Return to Top Next Page: CPXgetcoef