The INTPOINT Procedure

Output Data Sets

For NPSC problems, the procedure determines the flow that should pass through each arc as well as the value that should be 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.

For LP problems, the procedure determines the value that should be assigned to each variable. The goal is that the lower and upper value bounds and the constraints are not violated. This goal is reached when the total cost incurred by such a value assignment is feasible and optimal.

The CONOUT= data set can be produced and contains a solution obtained after performing optimization.

CONOUT= Data Set

The variables in the CONOUT= data set 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:

_FROM_a tail node of an arc. This is a missing value if an observation has information about a nonarc variable.
_TO_a head node of an arc. This is a missing value if an observation has information about a nonarc variable.
_COST_the cost of an arc or the objective function coefficient of a nonarc variable
_CAPAC_the capacity of an arc or upper value bound of a nonarc variable
_LO_the lower flow bound of an arc or lower value bound of a nonarc variable
_NAME_a name of an arc or nonarc variable
_SUPPLY_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.
_DEMAND_        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.
_FLOW_the flow through the arc or value of the nonarc variable
_FCOST_flow cost, the product of _COST_ and _FLOW_
_RCOST_the reduced cost of the arc or nonarc variable
_ANUMB_the number of the arc (positive) or nonarc variable (nonpositive); used for warm starting PROC NETFLOW
_TNUMB_the number of the tail node in the network basis spanning tree; used for warm starting PROC NETFLOW
_STATUS_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:

_OBJFN_the objective function coefficient of a variable
_UPPERBDthe upper value bound of a variable
_LOWERBD        the lower value bound of a variable
_NAME_the name of a variable
_VALUE_the value of the variable
_FCOST_objective function value for that variable; the product of _OBJFN_ and _VALUE_

The variables present in the ARCDATA= data set are present in 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 CONOUT= data sets instead of _FROM_. Any ID list variables also appear in the CONOUT= data sets.

MPSOUT= Data Set

The MPSOUT= data set contains problem data converted from a PROC INTPOINT 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 14, "The MPS-Format SAS Data Set."

Previous Page | Next Page | Top of Page