An open API service indexing awesome lists of open source software.

https://github.com/manuelalferez/linear-programming-solver

Method to achieve the best result in a mathematical model whose requirements are represented by linear relationships.
https://github.com/manuelalferez/linear-programming-solver

cplusplus linear-programming

Last synced: 10 months ago
JSON representation

Method to achieve the best result in a mathematical model whose requirements are represented by linear relationships.

Awesome Lists containing this project

README

          

# Linear programming solver

[**Linear programming**](https://en.wikipedia.org/wiki/Linear_programming) is an **optimization** technique for a system of **linear** constraints and a **linear** objective function. An objective function defines the quantity to be optimized, and the goal of **linear programming** is to find the values of the variables that maximize or minimize the objective function.


Linear programming problem

## Goal ๐Ÿ†

Develop an algorithm to solve problems of maximization in Linear Programming.

## Guidelines ๐Ÿงพ

Implement the `simplexTableu` method for maximization problems. Bliss
implementation should request the necessary information to resolve any
maximization linear programming problem. Once these values are obtained, the program should provide the solution to the problem.

The implemented simplex method can be executed in console or
it can include a graphical interface with a minimum of functionalities.

The program must be able to:

* insert the variables
* the objective function
* the constraints of the problem

Additional characteristics: Preloaded problems, via a configuration/data file.

## Understanding the project

Take a look at our [Wiki](https://github.com/manuelalferez/linear-programming-solver/wiki/Documentation) to understand how the project is composed.