This project has the objective of simulating the flattening algorithm proposed by Michael K. Reiter, Asad Samar and Chenxi Wang using C++.
Este projeto tem como objetivo simular o algoritmo Flattening proposto por Michael K. Reiter, Asad Samar e Chenxi Wang usando C++
- Compilador
g++
|| to plot the results/para plotar os resultadospython3 plotly networkx
make main
make run
make plot ARGS=""
Inside ARGS you can specify the range of the results you want to plot.
Dentro de ARGS você pode especificar qual o intervalo dos resultados que você quer plotar.
ARGS="x y"
Giving it two numbers (x, y) the program will plot all results between x and y, not inclusive.
Enviando dois números (x, y) o programa plotará todos os resultados entre x e y, não inclusivamente.
ARGS="x"
Giving it one number (x) the program will plot all results between 0 and x, not inclusive.
Enviando um número (x) o programa plotará todos os resultados entre 0 e x, não inclusivamente.
Leaving it blank the program will plot all results.
Não apresentar nenhum parâmetro fará com que o programa plote todos os resultados.
make clean