Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.21 KB

File metadata and controls

42 lines (31 loc) · 1.21 KB

Simplex Method

Site-calculator

https://dmitriy1594.github.io/Simplex-Method/

Python module

Examples

1. Standard Form Maximization LP

Consider the following objective function and constraints:

This problem can be solved by running the script with the following parameters:
$ python simplex.py -m "[[2,1],[1,2]]" -b "[4,3]" -c "[1,1]" -p max
2. Standard Form Minimization LP

Consider the following objective function and constraints:

This problem can be solved by running the script with the following parameters:
$ python simplex.py -m "[[2,1],[1,1]]" -b "[6,4]" -c "[3,2]" -p min

Links