NO FRAMES

CPXgetdsbcnt

int CPXPUBLIC CPXgetdsbcnt(CPXCENVptr env, CPXCLPptr lp)
Definition file: cplex.h

The routine CPXgetdsbcnt is used to access the number of dual super-basic variables in the current solution.

Example

 itcnt = CPXgetdsbcnt (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

 itcnt = CPXgetdsbcnt (env, lp);
 

Returns:

If a solution exists, CPXgetdsbcnt returns the number of dual super-basic variables. If no solution exists, CPXgetdsbcnt returns the value 0 (zero).