Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 364 Bytes

File metadata and controls

8 lines (8 loc) · 364 Bytes

Revised_Simplex_Py

Here you can find python code for revised simplex algorithm for solving Linear programming problems in their standard form. RSM class implement the Revised simplex method. LPsolve code uses RSM to implement 2 Phase Revised Simplex method for any LP in standard form. Step to use

  1. Initialize A, b, and c in LPdata file
  2. Run LPsolve
  3. Done