|
The DoubleMathProgramInfo enumeration describes all double-valued parameters that can be specified via the dbl_param argument of the DoSolve method for a math programming problem passed by AIMMS to a solver.
enum DoubleMathProgramInfo { DPARAM_SIZE, DPARAM_MARGINAL_ZERO, DPARAM_LOWEST_PRIORITY, DPARAM_OBJECTIVE_ZERO, DPARAM_OBJECTIVE_CONST, DPARAM_MAX };
Members |
Description |
DPARAM_SIZE |
Number of double-valued parameters. |
DPARAM_MARGINAL_ZERO |
Special value denoting a marginal value of zero of non-basic rows/columns, which Should be used by the OSI to denote such values. |
DPARAM_LOWEST_PRIORITY |
Special value denoting that the associated integer variable should be assigned the lowest integer priority used by the solver (MIP only). |
DPARAM_OBJECTIVE_ZERO |
Special value denoting that the objective coefficient of a column should be zero. |
DPARAM_OBJECTIVE_CONST |
The value of the constant term in the objective. |
DPARAM_MAX |
Maximum size of double-valued parameter array. |