The procedure determines the flow that should pass through each arc as well as the value assigned to each nonarc variable. The goal is that the minimum flow bounds, capacities, lower and upper value bounds, and side constraints are not violated. This goal is reached when total cost incurred by such a flow pattern and value assignment is feasible and optimal. The solution found must also conserve flow at each node.
The ARCOUT= data set contains a solution obtained when performing optimization that does not consider any constraints. The NODEOUT= data set contains nodal dual variable information for this type of solution. You can choose to have PROC NETFLOW create the ARCOUT= data set and the NODEOUT= data set and save the optimum of the network or the nodal dual variable values before any optimization that considers the side constraints is performed.
If there are side constraints, the CONOUT= data set can be produced and contains a solution obtained after performing optimization that considers constraints. The DUALOUT= data set contains dual variable information for nodes and side constraints from the solution obtained after optimization that considers the constraints. The CONOUT= data set and DUALOUT= data set can be used to save the constrained optimal solution.
The ARCOUT= and CONOUT= data sets contain the same variables. Furthermore, the variables in the output data sets depend on whether or not the problem has a network component.
If the problem has a network component, the variables and their possible values in an observation are as follows:
|
a tail node of an arc. This is a missing value if an observation has information about a nonarc variable. |
|
a head node of an arc. This is a missing value if an observation has information about a nonarc variable. |
|
the cost of an arc or the objective function coefficient of a nonarc variable |
|
the capacity of an arc or upper value bound of a nonarc variable |
|
the lower flow bound of an arc or lower value bound of a nonarc variable |
|
a name of an arc or nonarc variable |
|
the supply of the tail node of the arc in the observation. This is a missing value if an observation has information about a nonarc variable. |
|
the demand of the head node of the arc in the observation. This is a missing value if an observation has information about a nonarc variable. |
|
the flow through the arc or value of the nonarc variable |
|
flow cost, the product of |
|
the reduced cost of the arc or nonarc variable |
|
the number of the arc (positive) or nonarc variable (nonpositive); used for warm starting PROC NETFLOW |
|
the number of the tail node in the network basis spanning tree; used for warm starting PROC NETFLOW |
|
the status of the arc or nonarc variable |
If the problem does not have a network component, the variables and their possible values in an observation are as follows:
|
the objective function coefficient of a variable |
|
the upper value bound of a variable |
|
the lower value bound of a variable |
|
the name of a variable |
|
the value of the variable |
|
objective function value for that variable; the product of |
The variables present in the ARCDATA= data set are present in an ARCOUT= data set or a CONOUT= data set. For example, if there is a variable called tail
in the ARCDATA= data set and you specified the SAS variable list
from tail;
then tail
is a variable in the ARCOUT= and CONOUT= data sets instead of _FROM_
. Any ID list variables also appear in the ARCOUT= and CONOUT= data sets.
There are two types of observations in the NODEOUT= and DUALOUT= data sets. One type of observation contains information about a node. These are called type N observations. There is one such observation of this type for each node. The _NODE_
variable has a name of a node, and the _CON_
variable values in these observations are missing values.
The other type of observation contains information about constraints. These are called the type C observations. There is one such observation for each constraint. The _CON_
variable has a name of a constraint, and the _NODE_
variable values in these observations are missing values.
Many of the variables in the NODEOUT= and DUALOUT= data sets contain information used to warm start PROC NETFLOW. The variables _NODE_
, _SD_
, _DUAL_
, _VALUE_
, _RHS_
, _TYPE_
, and _CON_
contain information that might be of interest to you.
The NODEOUT= and DUALOUT= data sets look similar, as the same variables are in both. These variables and their values in an observation of each type are
|
Type N: the node name |
Type C: a missing value |
|
|
Type N: the supply (positive) or demand (negative) of the node |
Type C: a missing value |
|
|
Type N: the dual variable value of the node in |
Type C: the dual variable value of the constraint named in |
|
|
Type N: the number of the node named in |
Type C: the number of the constraint named in |
|
|
Type N: the predecessor in the network basis spanning tree of the node named in |
Type C: the number of the node toward which the arc with number in |
|
|
Type N: the traversal thread label of the node named in |
Type C: a missing value |
|
|
Type N: the number of successors (including itself) in the network basis spanning tree of the node named in |
Type C: a missing value |
|
|
Type N: if |
Type C: if |
|
|
Type N: the flow minus the lower flow bound of the arc |
Type C: the flow minus lower flow bound of the arc |
|
|
Type N: If |
Type C: a missing value |
|
|
Type N: a missing value |
Type C: the lhs value (the sum of the products of coefficient and flows or values) of the constraint named in |
|
|
Type N: a missing value |
Type C: the rhs value of the constraint named in |
|
|
Type N: a missing value |
Type C: the type of the constraint named in |
|
|
Type N: a missing value |
Type C: the name of the constraint |
If specified in variable lists, the variables in the input data sets are used instead of some of the previous variables. These
variables are specified in the NODE, SUPDEM, RHS, TYPE, and ROW (if there is only one variable in the ROW list) lists and are used instead of _NODE_
, _SD_
, _RHS_
, _TYPE_
, and _CON_
, respectively.
The MPSOUT= data set contains problem data converted from a PROC NETFLOW format into an MPS-format SAS data set. The six fields, FIELD1
to FIELD6
, in the MPSOUT= data set correspond to the six columns in MPS standard. For more information about the MPS-format SAS data
set, see Chapter 16: The MPS-Format SAS Data Set in SAS/OR User's Guide: Mathematical Programming.