The OptionValues enumeration describes parameters that provide AIMMS with information about the range of a solver option. It is used in the values argument of the GetIntegerOption method and in the values argument of the GetDoubleOption method.
enum OptionValues { OPTION_LO, OPTION_DEFAULT, OPTION_UP, OPTION_CURRENT, OPTION_MAX };
Members |
Description |
OPTION_LO |
The lower bound of the option range. |
OPTION_DEFAULT |
The default option value. |
OPTION_UP |
The upper bound of the option range. |
OPTION_CURRENT |
The current option value. |
OPTION_MAX |
Maximum size of parameter array. |