The INTPOINT Procedure

Reasons for Infeasibility

Before optimization commences, PROC INTPOINT tests to ensure that the problem is not infeasible by ensuring that, with respect to supplies, demands, and arc flow bounds, flow conservation can be obeyed at each node:

Reasons why a network problem can be infeasible are similar to those previously mentioned but apply to a set of nodes rather than for an individual node.

Consider the network illustrated in Figure 2.10.

  
                    NODE_1----------------->NODE_2 
                   /          capac=55           \ 
                  /              lo=50            \ 
                 /                                 \ 
                /                                   \ 
               /                                     \ 
         NODE_3                                      NODE_4 
    supply=100 \                                     / demand=120 
                \                                   / 
                 \                                 / 
                  \           capac=62            / 
                   \             lo=60           / 
                    NODE_5----------------->NODE_6
 


Figure 2.10: An Infeasible Network

The demand of NODE_4 is 120. That can never be satisfied because the maximal flow through arcs (NODE_1, NODE_2) and (NODE_5, NODE_6) is 117. More specifically, the implicit supply of NODE_2 and NODE_6 is only 117, which is insufficient to satisfy the demand of other nodes (real or implicit) in the network.

Furthermore, the lower flow bounds of arcs (NODE_1, NODE_2) and (NODE_5, NODE_6) are greater than the flow that can reach the tail nodes of these arcs, that, by coincidence, is the total supply of the network. The implicit demand of nodes NODE_1 and NODE_5 is 110, which is greater than the amount of flow that can reach these nodes.

Previous Page | Next Page | Top of Page