Creating and Solving Linear Programs
Overview
There are three principle steps to solving a linear program with this module:
- Create the tableau:
Tableau(A,b,c) - Specify a feasible basis:
set_basis!(T, B) - Run the simplex algorithm:
simplex_solve!(T)
Create the Tableau
Canonical LPs
A canonical LP has the form $\min c^T x$ s.t. $Ax ≥ b, x \ge 0$. To set up a tableau for this problem simply create the matrix A and the vectors b and c, and call Tableau(A,b,c).
For example, let A, b, and c be as follows:
julia> A = [3 10; 5 6; 10 2];
julia> b = [100, 100, 100];
julia> c = [25, 10];
julia> Tableau(A, b, c)
┌──────────┬───┬─────┬─────┬─────┬─────┬─────┬─────┐
│ │ z │ x_1 │ x_2 │ x_3 │ x_4 │ x_5 │ RHS │
│ Obj Func │ 1 │ -25 │ -10 │ 0 │ 0 │ 0 │ 0 │
├──────────┼───┼─────┼─────┼─────┼─────┼─────┼─────┤
│ Cons 1 │ 0 │ 3 │ 10 │ -1 │ 0 │ 0 │ 100 │
│ Cons 2 │ 0 │ 5 │ 6 │ 0 │ -1 │ 0 │ 100 │
│ Cons 3 │ 0 │ 10 │ 2 │ 0 │ 0 │ -1 │ 100 │
└──────────┴───┴─────┴─────┴─────┴─────┴─────┴─────┘Notice that extra variables $x_3$, $x_4$, and $x_5$ are added to the Tableau as slack variables to convert inequalities into equations. That is, canonical form LPs are automatically converted into standard form.
Standard LPs
A linear program in standard form is $\min c^T x$ s.t. $Ax = b$, $x ≥ 0$. For example,
julia> A = [2 1 0 9 -1; 1 1 -1 5 1]
2×5 Matrix{Int64}:
2 1 0 9 -1
1 1 -1 5 1
julia> b = [9, 7]
2-element Vector{Int64}:
9
7
julia> c = [2, 4, 2, 1, -1]
5-element Vector{Int64}:
2
4
2
1
-1
julia> T = Tableau(A, b, c, false)
┌──────────┬───┬─────┬─────┬─────┬─────┬─────┬─────┐
│ │ z │ x_1 │ x_2 │ x_3 │ x_4 │ x_5 │ RHS │
│ Obj Func │ 1 │ -2 │ -4 │ -2 │ -1 │ 1 │ 0 │
├──────────┼───┼─────┼─────┼─────┼─────┼─────┼─────┤
│ Cons 1 │ 0 │ 2 │ 1 │ 0 │ 9 │ -1 │ 9 │
│ Cons 2 │ 0 │ 1 │ 1 │ -1 │ 5 │ 1 │ 7 │
└──────────┴───┴─────┴─────┴─────┴─────┴─────┴─────┘The fourth argument false means that the constraints are already equalities and slack variables should not be appended.
Specify a Basis
Use set_basis!(T, B) to specify a staring basis for the tableau. Here, B is a list (Vector) of integers specifying the columns that are in the basis.
julia> set_basis!(T,[1,4,5])
┌──────────┬───┬─────┬───────┬───────┬─────┬─────┬────────┐
│ │ z │ x_1 │ x_2 │ x_3 │ x_4 │ x_5 │ RHS │
│ Obj Func │ 1 │ 0 │ 220/3 │ -25/3 │ 0 │ 0 │ 2500/3 │
├──────────┼───┼─────┼───────┼───────┼─────┼─────┼────────┤
│ Cons 1 │ 0 │ 1 │ 10/3 │ -1/3 │ 0 │ 0 │ 100/3 │
│ Cons 2 │ 0 │ 0 │ 32/3 │ -5/3 │ 1 │ 0 │ 200/3 │
│ Cons 3 │ 0 │ 0 │ 94/3 │ -10/3 │ 0 │ 1 │ 700/3 │
└──────────┴───┴─────┴───────┴───────┴─────┴─────┴────────┘Note: On the screen, the headings for the basis (in this case,
x_1,x_4, andx_5) appear in green.

Tools to find a basis
The function find_all_bases(T) returns a list of all feasible bases for T:
julia> find_all_bases(T)
4-element Vector{Vector{Int64}}:
[1, 2, 3]
[1, 2, 5]
[1, 4, 5]
[2, 3, 4]The function find_a_basis(T) returns a feasible basis for T (the first it finds).
julia> find_a_basis(T)
3-element Vector{Int64}:
1
2
3These are inefficient functions. We plan to change the implementation of find_a_basis to something more performant.
Running the Simplex Algorithm
Use simplex_solve!(T) to find the optimum value and minimizing vector for the linear program in T. The user may either specify a starting basis, using set_basis!(T, B), or if no basis has been specificed, then one is provided using a brute force search.
julia> simplex_solve!(T)
Starting basis found: [1, 2]
Starting tableau
┌──────────┬───┬─────┬─────┬─────┬─────┬─────┬─────┐
│ │ z │ x_1 │ x_2 │ x_3 │ x_4 │ x_5 │ RHS │
│ Obj Func │ 1 │ 0 │ 0 │ -8 │ 11 │ 9 │ 24 │
├──────────┼───┼─────┼─────┼─────┼─────┼─────┼─────┤
│ Cons 1 │ 0 │ 1 │ 0 │ 1 │ 4 │ -2 │ 2 │
│ Cons 2 │ 0 │ 0 │ 1 │ -2 │ 1 │ 3 │ 5 │
└──────────┴───┴─────┴─────┴─────┴─────┴─────┴─────┘
Pivot 1: column 1 leaves basis and column 4 enters
┌──────────┬───┬───────┬─────┬───────┬─────┬──────┬──────┐
│ │ z │ x_1 │ x_2 │ x_3 │ x_4 │ x_5 │ RHS │
│ Obj Func │ 1 │ -11/4 │ 0 │ -43/4 │ 0 │ 29/2 │ 37/2 │
├──────────┼───┼───────┼─────┼───────┼─────┼──────┼──────┤
│ Cons 1 │ 0 │ -1/4 │ 1 │ -9/4 │ 0 │ 7/2 │ 9/2 │
│ Cons 2 │ 0 │ 1/4 │ 0 │ 1/4 │ 1 │ -1/2 │ 1/2 │
└──────────┴───┴───────┴─────┴───────┴─────┴──────┴──────┘
Pivot 2: column 2 leaves basis and column 5 enters
┌──────────┬───┬───────┬───────┬───────┬─────┬─────┬──────┐
│ │ z │ x_1 │ x_2 │ x_3 │ x_4 │ x_5 │ RHS │
│ Obj Func │ 1 │ -12/7 │ -29/7 │ -10/7 │ 0 │ 0 │ -1/7 │
├──────────┼───┼───────┼───────┼───────┼─────┼─────┼──────┤
│ Cons 1 │ 0 │ 3/14 │ 1/7 │ -1/14 │ 1 │ 0 │ 8/7 │
│ Cons 2 │ 0 │ -1/14 │ 2/7 │ -9/14 │ 0 │ 1 │ 9/7 │
└──────────┴───┴───────┴───────┴───────┴─────┴─────┴──────┘
Optimality reached. Pivot count = 2
Value = -1/7 = -0.14285714285714285
5-element Vector{Rational}:
0
0
0
8//7
9//7Note: At present
find_a_basisdoes a brute-force search through all possiblem-element subsets of{1,2,...,n}until it finds a feasible basis. We plan to replace this with something better.