https://github.com/playwithalgos/simplex
A simple tool for running the simplex algorithm
https://github.com/playwithalgos/simplex
education linear-programming simplex simplex-algorithm simplex-method
Last synced: about 20 hours ago
JSON representation
A simple tool for running the simplex algorithm
- Host: GitHub
- URL: https://github.com/playwithalgos/simplex
- Owner: playwithalgos
- License: gpl-3.0
- Created: 2023-09-21T14:16:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-17T09:58:17.000Z (over 1 year ago)
- Last Synced: 2025-01-16T05:29:33.416Z (5 months ago)
- Topics: education, linear-programming, simplex, simplex-algorithm, simplex-method
- Language: HTML
- Homepage: https://playwithalgos.github.io/simplex/
- Size: 53.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Demonstration of the simplex algorithm
A pedagogical tool for running the simplex algorithm.

## Features
- simple to use. You even do not have to click on a button "Execute"!
- it shows the polyhedron of the solution space in 2D and 3D. With more dimensions, it shows a projection.
- input in text form for instance:
````
max 2x + 3y
x <= 1
2x + 6y <= 1
```````
max x + 6y + 13z
x <= 200
y <= 300
x+y+z <= 400
y+3z <= 600
```- you can use (almost) any names for variable as long it starts with a letter ;)
````
max 2chocolate + 3milk
chocolate <= 1
2chocolate + 6milk <= 1
````also works!
- only maximization problem in canonical form