Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.78 KB

File metadata and controls

34 lines (26 loc) · 1.78 KB

Linear Programming Prototype Python Apps

This repository contains a collection of prototype linear programming (LP) applications that implement specific algorithms I learned in college. The purpose is to demonstrate that these mathematical models can be systematically programmed to solve LP problems in python.

List of LP tools

Full web app

pip packages used

  • glfw for windowing
  • imgui for gui
  • matplotlib for graphical method ploting
  • sympy for mathematical preliminaries

Install these packages using pip:

pip install -r requirements.txt

Acknowledgements

Special thanks to my college instructors for teaching these simplex algorithms and inspiring this project.