An open API service indexing awesome lists of open source software.

https://github.com/rushil-ambati/simplex

Implementation of the Simplex Algorithm for LP maximisation problems
https://github.com/rushil-ambati/simplex

algorithm linear-programming simplex

Last synced: 1 day ago
JSON representation

Implementation of the Simplex Algorithm for LP maximisation problems

Awesome Lists containing this project

README

          

# Simplex Algorithm
Implementation of the Simplex Algorithm for LP maximisation problems

Input format example (`input.txt`):
```
maximise
P = 80x1 + 31x2 + 100x3
subject to
4x1 + 2x2 + x3 <= 60
x1 + x2 + x3 <= 40
x1 <= 25
x3 <= 10
```

`python simplex.py`