Developers: Vittorio Amoruso, Nicola Cortinovis, Erion Islamay and Nicola Zucchia
Project: Sequential Implementation of Simplex Algorithm with tableau and Big-M Method.
Note: Big-M is set to 1e9. Please be aware that input data greater than 1e9 may cause numerical cancellation problems. If it is the case we suggest scaling your data before running this program.
-
include
folder containing header files to create instances of linear constrain systems and tableau to perform the Simplex AlgorithmLinearConstrainSystem.hpp
header containing the definition of the struct Linear Constrain System and its associated methodsTableau.hpp
header containing the defition of the struct Tableau and its associated methods
-
examples
folder containing 4 source files for testing various cases of linear constrain systemsmain.cpp
source file for testing a standard maximization problemmainINFEASIBLE.cpp
source file for testing for an infeasible constrain systemmainMIN.cpp
source file for testing a minimization problemmainUNBOUND.cpp
source file for testing an unbounded problem
-
CMakeLists.txt
txt file necessary to compile code with CMake
doxygen
cmake . -G Ninja
ninja