Table 8.2 summarizes the options and suboptions available in the SOLVE WITH NETWORK statement.
Table 8.2: Functional Summary of SOLVE WITH NETWORK Options
Description |
Option |
||
---|---|---|---|
Suboption |
|||
General Options |
|||
specifies directed or undirected graphs |
|||
includes self links in the graph definition |
|||
specifies the iteration log frequency |
|||
controls the amount of information that is displayed in the SAS log |
|||
specifies the maximum time spent calculating results |
|||
specifies whether time units are in CPU time or real time |
|||
Input and Output Options |
|||
groups link-indexed data |
|||
names a set of links to include in the graph definition even if no weights or bounds are available for them |
|||
specifies the flow lower bound for each link |
|||
specifies the flow upper bound for each link |
|||
specifies link weights |
|||
groups node-indexed data |
|||
names a set of nodes to include in the graph definition even if no weights are available for them |
|||
specifies node weights |
|||
specifies the input sets that enable you to solve a problem over a subgraph |
|||
specifies the subset of links to use |
|||
specifies the subset of nodes to use |
|||
specifies the output sets or arrays for each algorithm (see Table 8.4 for which OUT= suboptions you can specify for each algorithm) |
|||
specifies the output set for articulation points |
|||
specifies the output set for linear assignment |
|||
specifies the array to contain the biconnected component of each link |
|||
specifies the output set for cliques |
|||
specifies the output array for connected components |
|||
specifies the output set for the cut-sets for minimum cuts |
|||
specifies the output set for cycles |
|||
specifies the output array for the flow on each link |
|||
specifies the output set for the minimum spanning tree (forest) |
|||
specifies the output set for the links that remain after the SUBGRAPH= option is applied |
|||
specifies the output set for the nodes that remain after the SUBGRAPH= option is applied |
|||
specifies the output array for the node order in the traveling salesman problem |
|||
specifies the output set for the partitions for minimum cuts |
|||
specifies the set to contain the link sequence for each path |
|||
specifies the numeric array to contain the path weight for each source and sink node pair |
|||
specifies the output set for the tour in the traveling salesman problem |
|||
specifies the set to contain the pairs of nodes where is reachable from |
|||
Algorithm Options and Suboptions |
|||
finds biconnected components and articulation points of an undirected input graph |
|||
finds maximal cliques in the input graph |
|||
specifies the maximum number of cliques to return |
|||
finds the connected components of the input graph |
|||
specifies the algorithm to use for calculating connected components |
|||
finds the cycles (or the existence of a cycle) in the input graph |
|||
specifies the maximum number of cycles to return |
|||
specifies the maximum link count for the cycles to return |
|||
specifies the maximum link weight for the cycles to return |
|||
specifies the maximum sum of node weights to allow in a cycle |
|||
specifies the minimum link count for the cycles to return |
|||
specifies the minimum link weight for the cycles to return |
|||
specifies the minimum node weight for the cycles to return |
|||
specifies whether to stop after finding the first cycle |
|||
solves the minimal-cost linear assignment problem |
|||
solves the minimum-cost network flow problem |
|||
finds the minimum link-weighted cut of an input graph |
|||
specifies the maximum number of cuts to return from the algorithm |
|||
specifies the maximum weight of each cut to return from the algorithm |
|||
solves the minimum link-weighted spanning tree problem on an input graph |
|||
calculates shortest paths between sets of nodes on the input graph |
|||
specifies the type of output for shortest paths results |
|||
specifies the set of sink nodes |
|||
specifies the set of source nodes |
|||
specifies whether to use weights in calculating shortest paths |
|||
calculates the transitive closure of an input graph |
|||
solves the traveling salesman problem |
|||
requests that the stopping criterion be based on the absolute objective gap |
|||
specifies the level of conflict search |
|||
specifies the cutoff value for branch-and-bound node removal |
|||
specifies the level of cutting planes to be generated by the network solver |
|||
emphasizes feasibility or optimality |
|||
specifies the initial and primal heuristics level |
|||
specifies the maximum number of branch-and-bound nodes to be processed |
|||
specifies the maximum number of feasible tours to be identified |
|||
specifies whether to use a mixed integer linear programming solver |
|||
specifies the branch-and-bound node selection strategy |
|||
specifies the probing level |
|||
requests that the stopping criterion be based on relative objective gap |
|||
specifies the number of simplex iterations to be performed on each variable in the strong branching strategy |
|||
specifies the number of candidates for the strong branching strategy |
|||
requests that the stopping criterion be based on the target objective value |
|||
specifies the rule for selecting branching variable |
Table 8.3 lists the valid GRAPH_DIRECTION= values for each algorithm option in the SOLVE WITH NETWORK statement.
Table 8.3: Supported Graph Directions by Algorithm
Direction |
||
---|---|---|
Algorithm |
Undirected |
Directed |
x |
||
x |
||
x |
x |
|
x |
x |
|
x |
||
x |
||
x |
||
x |
||
x |
x |
|
x |
x |
|
x |
Table 8.4 indicates, for each algorithm option in the SOLVE WITH NETWORK statement, which output options you can specify, and what their types can be. The types vary depending on whether nodes are of type STRING or NUMBER.
Table 8.4: Output Suboptions and Types by Algorithm
Algorithm Option |
||
---|---|---|
OUT= Suboption |
OPTMODEL Type |
|
SET<STRING> or SET<NUMBER> |
||
NUMBER indexed over links (<NUMBER,NUMBER> or <STRING,STRING>) |
||
SET<NUMBER,NUMBER> or SET<NUMBER,STRING> |
||
NUMBER indexed over nodes (NUMBER or STRING) |
||
SET<NUMBER,NUMBER,NUMBER> or SET<NUMBER,NUMBER,STRING> |
||
SET<NUMBER,NUMBER> or SET<STRING,STRING> |
||
NUMBER indexed over links (<NUMBER,NUMBER> or <STRING,STRING>) |
||
SET<NUMBER,NUMBER,NUMBER> or SET<NUMBER,STRING,STRING> |
||
SET<NUMBER,NUMBER> or SET<NUMBER,STRING> |
||
SET<NUMBER,NUMBER> or SET<STRING,STRING> |
||
SET<NUMBER,NUMBER,NUMBER,NUMBER,NUMBER> or SET<STRING,STRING,NUMBER,STRING,STRING> |
||
NUMBER indexed over sink and source node pairs (<NUMBER,NUMBER> or <STRING,STRING>) |
||
SET<NUMBER,NUMBER> or SET<STRING,STRING> |
||
NUMBER indexed over nodes (NUMBER or STRING) |
||
SET<NUMBER,NUMBER> or SET<STRING,STRING> |