Simplex algorithm implementation for Linear programming class.
Clone the project repository with git clone https://github.com/vitorverasm/simplex.git
. Then, inside the project folder, install project dependencies by running:
pip3 install -r requirements.txt
Inside project folder run:
python3 -m simplex
These were the references used as the basis for the implementation of this project.
- [Book] Introduction to linear optimization[Dimitris Bertimas]
- [Book] Linear programming: Theory and Applications[Catherine Lewis]
- [Video] Linear programming: Lecture 6. Simplex method: introduction
- [Video] Linear programming: Lecture 7. Simplex method: theory, algorithm, tableau