Python implementations of the simplex algorithm for solving linear programs in tabular form with
>=,<=, and=constraints and- each variable
x1, x2, ... >= 0.
| Name | Purpose |
|---|---|
| cli_simplex.py | Takes linear program inputs from command line |
| gui_simplex.py | Takes inputs using a Tkinter GUI |
| tableau.py | Core algorithm |
| examples.txt | Several examples for text input |
See my explanation for how to convert linear programs to simplex tableaus, and the steps taken in the simplex algorithm.
