The OPTQP Procedure |
Output Data Sets |
This subsection describes the PRIMALOUT= and DUALOUT= output data sets. If the SAVE_ONLY_IF_OPTIMAL option is not specified, the output data sets will not contain an intermediate solution.
The PRIMALOUT= data set contains the primal solution to the QP model. The variables in the data set have the following names and meanings.
specifies the name of the objective function. This is particularly useful when there are multiple objective functions, in which case each objective function has a unique name. See ROWS Section for details.
Note:PROC OPTQP does not support simultaneous optimization of multiple objective functions in this release.
specifies the name of the variable that contains the right-hand-side value of each constraint. See ROWS Section for details.
specifies the type of the decision variable. _TYPE_ can take one of the following values:
nonnegative variable
bounded variable with either lower or upper bound
free variable
fixed variable
other
specifies the coefficient of the decision variable in the linear component of the objective function.
specifies the status of the decision variable. _STATUS_ can indicate one of the following two cases:
QP problem is optimal.
QP problem could be infeasible or unbounded, or PROC OPTQP was not able to solve the problem.
The DUALOUT= data set contains the dual solution to the QP model. Information about the objective rows of the QP problems is not included. The variables in the data set have the following names and meanings.
specifies the name of the objective function. This is particularly useful when there are multiple objective functions, in which case each objective function has a unique name. See ROWS Section for details.
Note:PROC OPTQP does not support simultaneous optimization of multiple objective functions in this release.
specifies the name of the variable that contains the right-hand-side value of each constraint. See ROWS Section for details.
specifies the name of the constraint. See ROWS Section for details.
specifies the type of the constraint. _TYPE_ can take one of the following values:
"less than or equals" constraint
equality constraint
"greater than or equals" constraint
ranged constraint (both "less than or equals" and "greater than or equals")
See ROWS Section and RANGES Section (Optional) for details.
specifies the value of the right-hand side of the constraints. It takes a missing value for a ranged constraint.
specifies the lower bound of a ranged constraint. It takes a missing value for a non-ranged constraint.
specifies the upper bound of a ranged constraint. It takes a missing value for a non-ranged constraint.
specifies the value of the dual variable associated with the constraint.
specifies the status of the constraint. _STATUS_ can indicate one of the following two cases:
QP problem is optimal.
QP problem could be infeasible or unbounded, or PROC OPTQP was not able to solve the problem.
specifies the value of a constraint. In other words, the value of _ACTIVITY_ for the th constraint would be equal to , where refers to the th row of the constraints matrix and denotes the vector of current decision variable values.
Copyright © SAS Institute, Inc. All Rights Reserved.