Description
This routine is used to obtain the current value of a CPLEX parameter of type int.
Return Value
The routine returns a zero on success, and a nonzero if an error occurs.Synopsis
int CPXgetintparam (CPXENVptr env,
int whichparam,
int *value_p);
CPXENVptr envThe pointer to the CPLEX environment as returned by one of the
CPXopenCPLEX routines.
int whichparamThe symbolic constant (or reference number) of the parameter for which the value is to be obtained.
int *value_pA pointer to an integer variable that will hold the current value of the CPLEX parameter.
status = CPXgetintparam (env, CPX_PARAM_PREIND, &curpreind);