Description
This routine is used to obtain the current value of a CPLEX parameter of type double.
Return Value
The routine returns a zero on success, and a nonzero if an error occurs.Synopsis
int CPXgetdblparam (CPXENVptr env,
int whichparam,
double *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.
double *value_pA pointer to a variable of type double that will hold the current value of the CPLEX parameter.
status = CPXgetdblparam (env, CPX_PARAM_TILIM, &curtilim);