Description
This routine sets the 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 CPXsetintparam (CPXENVptr env,
int whichparam,
int newvalue);
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 to change.
int newvalueThe new value of the parameter.
status = CPXsetintparam (env, CPX_PARAM_SCRIND, CPX_ON);