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

https://github.com/gabriel-dp/linear-programming-problems

Some common linear programming problems solved using C++ and CPLEX
https://github.com/gabriel-dp/linear-programming-problems

cplex linear-programming operational-research ufsj

Last synced: 9 days ago
JSON representation

Some common linear programming problems solved using C++ and CPLEX

Awesome Lists containing this project

README

        

# Problemas de Programação Linear

```cpp
#define TRABALHO "Trabalho - Problemas de Programação Linear"
#define PROFESSOR "Guilherme Pena"
#define DISCIPLINA "Pesquisa Operacional"
#define ESTUDANTES ["Gabriel de Paula", "Henrique Azevedo"]
```

 

## 📃 Lista de Problemas

[`1. Problema do Fluxo de Custo Mínimo`](./src/01-PFCM/)

[`2. Problema de Transporte`](./src/02-PT/)

[`3. Problema da Designação`](./src/03-PD/)

[`4. Problema do Caminho Mínimo`](./src/04-PCM/)

[`5. Problema do Fluxo Máximo`](./src/05-PFM/)

 

## 🖥 Como executar

> [Instale a biblioteca CPLEX](https://www.ibm.com/products/ilog-cplex-optimization-studio)

Vá para a pasta do problema:

```bash
cd src/xx-xxxxx
```

Compile o executável:

```bash
make
```

Execute o programa com a entrada:

```bash
./main.exe < input.txt
```