Previous Page: CPXgetcutoffFirst PageNext Page: CPXgetdblquality

CPXgetdblparam


Description

This routine is used to obtain the current value of a CPLEX parameter of type double.

Appendix A, Parameter Table provides a list of parameters with their types, options and default values.

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);

Arguments


CPXENVptr env
The pointer to the CPLEX environment as returned by one of the CPXopenCPLEX routines.

int whichparam
The symbolic constant (or reference number) of the parameter for which the value is to be obtained.

double *value_p
A pointer to a variable of type double that will hold the current value of the CPLEX parameter.

Example

status = CPXgetdblparam (env, CPX_PARAM_TILIM, &curtilim);

Previous Page: CPXgetcutoffFirst PageNext Page: CPXgetdblquality