| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Example code for solving linear equations using simplex.
LaTeX files can be compiled here.
Note: Currently, only LPs in standard form are supported.
Consider the following objective function and constraints:
This problem can be solved by running the script with the following parameters:$ python simplex.py -A "[[2,1],[1,2]]" -b "[4,3]" -c "[1,1]" -p maxConsider the following objective function and constraints:
This problem can be solved by running the script with the following parameters:$ python simplex.py -A "[[2,1],[1,1]]" -b "[6,4]" -c "[3,2]" -p min| Back | FazBrowse Home | New Git URL |