Skip to content

abtin-cs/simplex-method-solver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Author

Abtin Fooladkhah
Student of Computer Science, University of Tabriz

Acknowledgements:
Prof. Jaber Karimpoor, Dr. Kheyri

Simplex Method Solver (C++)

This project is a C++ implementation of the Simplex algorithm for solving linear programming problems. The user enters the objective function and constraints via standard input, and the program computes the optimal solution.

Features

  • Interactive console input
  • Solves maximization problems
  • Displays results after computation
  • Educational and academic-friendly implementation

Algorithm Overview

The Simplex method is an iterative optimization algorithm used to solve linear programming problems by traversing the vertices of the feasible region.

🛠️ Technologies

  • Language: C++
  • Standard Library (STL)

How to Run

g++ simplex.cpp -o simplex ./simplex