-
_OBJ_ID_
-
specifies the name of the objective function. Naming objective functions is particularly useful when there are multiple objective
functions, in which case each objective function has a unique name. See the section ROWS Section for details.
Note: PROC OPTQP does not support simultaneous optimization of multiple objective functions in this release.
-
_RHS_ID_
-
specifies the name of the variable that contains the right-hand-side value of each constraint. See the section RHS Section (Optional) for details.
-
_ROW_
-
specifies the name of the constraint. See the section ROWS Section for details.
-
_TYPE_
-
specifies the type of the constraint. _TYPE_ can take one of the following values:
- L
-
"less than or equals" constraint
- E
-
equality constraint
- G
-
"greater than or equals" constraint
- R
-
ranged constraint (both "less than or equals" and "greater than or equals")
See the sections ROWS Section and RANGES Section (Optional) for details.
-
_RHS_
-
specifies the value of the right-hand side of the constraint. It takes a missing value for a ranged constraint.
-
_L_RHS_
-
specifies the lower bound of a ranged constraint. It takes a missing value for a non-ranged constraint.
-
_U_RHS_
-
specifies the upper bound of a ranged constraint. It takes a missing value for a non-ranged constraint.
-
_VALUE_
-
specifies the value of the dual variable associated with the constraint.
-
_STATUS_
-
specifies the status of the constraint. _STATUS_ can indicate one of the following two cases:
- O
-
The QP problem is optimal.
- I
-
The QP problem could be infeasible or unbounded, or PROC OPTQP was not able to solve the problem.
-
_ACTIVITY_
-
specifies the value of a constraint. In other words, the value of _ACTIVITY_ for the ith constraint is equal to , where refers to the ith row of the constraints matrix and denotes the vector of current decision variable values.