The NETFLOW Procedure

The Working Basis Matrix

Let t be the basis matrix of NPSC. The following partitioning is done:

{t=} [ a & b \   c & d \    ]

where

It is more convenient to factor t by block triangular matrices p and m , such that  p = {t m}. The matrices p and m are used instead of t because they are less burdensome to work with. You can perform block substitution when solving the simplex iteration linear systems of equations

{p=} [ a & 0 \   c & {d_w} \    ]

{m=} [ i & {-a^{-1}b} \   0 & i \    ]

where  {d_w} = d - {ca^{-1}b} and is called the working basis matrix.

To perform block substitution, you need the tree data structure of the a matrix, and also the c, b, and  {d_w} matrices. Because the c matrix consists of columns of the constraint coefficient matrix, the maintenance of c from iteration to iteration simply entails changing information specifying which columns of the constraint coefficient matrix compose c.

The  {a^{-1}b} matrix is usually very sparse. Fortunately, the information in  {a^{-1}b} can be initialized easily using the tree structures. In most iterations, only one column is replaced by a new one. The values of the elements of the new column may already be known from preceding steps of the simplex iteration.

The working basis matrix is the submatrix that presents the most computational complexity. However, PROC NETFLOW usually can use classical simplex pivot techniques. In many iterations, only one column of  {d_w} changes. Sometimes it is not necessary to update  {d_w} or its inverse at all.

If INVD_2D is specified in the PROC NETFLOW statement, only one row and one column may need to be changed in the  {d_w^{-1}} before the next simplex iteration can begin. The new contents of the changed column are already known. The new elements of the row that changes are influenced by the contents of a row of  {a^{-1}b} that is very sparse.

If INVD_2D is not specified in the PROC NETFLOW statement, the Bartels-Golub update can be used to update the LU factors of  {d_w}. The choice must be made whether to perform a series of updates (how many depends on the number of nonzeros in a row of  {a^{-1}b}), or refactorization.

Previous Page | Next Page | Top of Page