https://github.com/bolner/simplexsolver
An easy-to-use Simplex solver class for linear programming.
https://github.com/bolner/simplexsolver
cpp eigen linear-programming simplexsolver
Last synced: 10 months ago
JSON representation
An easy-to-use Simplex solver class for linear programming.
- Host: GitHub
- URL: https://github.com/bolner/simplexsolver
- Owner: bolner
- License: other
- Created: 2012-08-22T22:52:58.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2018-01-13T01:39:00.000Z (almost 8 years ago)
- Last Synced: 2025-03-18T00:43:46.771Z (10 months ago)
- Topics: cpp, eigen, linear-programming, simplexsolver
- Language: C++
- Size: 12.7 KB
- Stars: 20
- Watchers: 0
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# SimplexSolver
A simple implementation of the simplex algorithm, used for solving linear programming problems. One known issue of this implementation is that it doesn't give a proper solution to problems where the origin is outside of the feasable region.
For more information visit:
## Compiling on Debian / Ubuntu
1. Install g++ and the Eigen library
apt-get install g++ libeigen3-dev libeigen3-doc
2. Change to the project library and compile
cd /path/to/the/project/library
g++ -std=c++11 -I /usr/include/eigen3/ *.cpp -o simplex.exe