CPXgetdblparam


Description

The routine CPXgetdblparam() 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 (CPXCENVptr env,
                      int whichparam,
                      double *value_p);

Arguments

CPXCENVptr env

The pointer to the CPLEX environment as returned by CPXopenCPLEX().

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 to hold the current value of the CPLEX parameter.

Example

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


Previous Page: CPXgetcutoff Return to Top Next Page: CPXgetdblquality