├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── new_feature.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── caja └── playground │ ├── monitor │ ├── collect-cpu-usage.sh │ ├── collect-disk-usage.sh │ ├── collect-memory-usage.sh │ ├── filter-sum-disk-usage.py │ ├── plot-usages.r │ ├── procs │ └── run.sh │ ├── run │ └── src │ ├── .gitignore │ ├── criteria │ ├── merge.cpp │ ├── run │ └── script ├── collector.py ├── main.py ├── modules ├── .gitignore ├── __init__.py ├── promethee_calculate.py └── promethee_sort.py ├── promethee ├── data.cpp ├── data.h ├── external_sort.cpp ├── external_sort.h ├── fast │ ├── promethee_fast.cpp │ └── promethee_fast.h ├── functions │ ├── optimized │ │ ├── linear_function.cpp │ │ ├── linear_function.h │ │ ├── linear_with_indifference_function.cpp │ │ ├── linear_with_indifference_function.h │ │ ├── promethee_function.cpp │ │ └── promethee_function.h │ ├── umbu │ │ ├── linear_umbu_function.cpp │ │ ├── linear_umbu_function.h │ │ ├── linear_with_indifference_umbu_function.cpp │ │ ├── linear_with_indifference_umbu_function.h │ │ ├── promethee_umbu_fun.cpp │ │ └── promethee_umbu_fun.h │ └── vanilla │ │ ├── comparison_function.cpp │ │ ├── comparison_function.h │ │ ├── gaussian_function.cpp │ │ ├── gaussian_function.h │ │ ├── level_function.cpp │ │ ├── level_function.h │ │ ├── linear_function.cpp │ │ ├── linear_function.h │ │ ├── linear_indifference_function.cpp │ │ ├── linear_indifference_function.h │ │ ├── quasi_function.cpp │ │ ├── quasi_function.h │ │ ├── usual_function.cpp │ │ └── usual_function.h ├── inputreader.cpp ├── inputreader.h ├── main.cpp ├── matrix_meta_data.h ├── normalize.cpp ├── normalize.h ├── optimized │ ├── promethee_opt.cpp │ └── promethee_opt.h ├── outputwriter.cpp ├── outputwriter.h ├── parse_args.cpp ├── parse_args.h ├── parse_directory.cpp ├── parse_directory.h ├── plibtiff.cpp ├── plibtiff.h ├── promethee.cpp ├── promethee.h ├── promethee_function_adapter.cpp ├── promethee_function_adapter.h ├── threads │ ├── promethee_thread.cpp │ └── promethee_thread.h ├── types.h ├── umbu │ ├── promethee_umbu.cpp │ └── promethee_umbu.h ├── utils.cpp ├── utils.h └── vanilla │ ├── promethee_vanilla.cpp │ └── promethee_vanilla.h └── samples ├── sample1 ├── README.md ├── input │ ├── erosao.input │ ├── infpop.input │ ├── prod.input │ └── rhcp.input ├── meta │ ├── erosao.meta │ ├── infpop.meta │ ├── prod.meta │ └── rhcp.meta └── output │ ├── negativeflow.txt │ ├── netflow.txt │ ├── normalizedflow.txt │ └── positiveflow.txt ├── sample2 ├── README.md ├── input │ ├── VPR10.input │ └── VVAAmm.input ├── meta │ ├── VPR10.meta │ └── VVAAmm.meta └── output │ ├── negativeflow.txt │ ├── netflow.txt │ ├── normalizedflow.txt │ └── positiveflow.txt └── sample3 ├── README.md ├── input ├── VPR10.input └── VVAAmm.input ├── meta ├── VPR10.meta └── VVAAmm.meta └── output ├── negativeflow.txt ├── netflow.txt ├── normalizedflow.txt └── positiveflow.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/.github/ISSUE_TEMPLATE/new_feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/README.md -------------------------------------------------------------------------------- /caja/playground/monitor/collect-cpu-usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/caja/playground/monitor/collect-cpu-usage.sh -------------------------------------------------------------------------------- /caja/playground/monitor/collect-disk-usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/caja/playground/monitor/collect-disk-usage.sh -------------------------------------------------------------------------------- /caja/playground/monitor/collect-memory-usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/caja/playground/monitor/collect-memory-usage.sh -------------------------------------------------------------------------------- /caja/playground/monitor/filter-sum-disk-usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/caja/playground/monitor/filter-sum-disk-usage.py -------------------------------------------------------------------------------- /caja/playground/monitor/plot-usages.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/caja/playground/monitor/plot-usages.r -------------------------------------------------------------------------------- /caja/playground/monitor/procs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /caja/playground/monitor/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/caja/playground/monitor/run.sh -------------------------------------------------------------------------------- /caja/playground/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/caja/playground/run -------------------------------------------------------------------------------- /caja/playground/src/.gitignore: -------------------------------------------------------------------------------- 1 | merge -------------------------------------------------------------------------------- /caja/playground/src/criteria: -------------------------------------------------------------------------------- 1 | AEMMF.tif 1 1 2 | -------------------------------------------------------------------------------- /caja/playground/src/merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/caja/playground/src/merge.cpp -------------------------------------------------------------------------------- /caja/playground/src/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/caja/playground/src/run -------------------------------------------------------------------------------- /caja/playground/src/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/caja/playground/src/script -------------------------------------------------------------------------------- /collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/collector.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/main.py -------------------------------------------------------------------------------- /modules/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/promethee_calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/modules/promethee_calculate.py -------------------------------------------------------------------------------- /modules/promethee_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/modules/promethee_sort.py -------------------------------------------------------------------------------- /promethee/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/data.cpp -------------------------------------------------------------------------------- /promethee/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/data.h -------------------------------------------------------------------------------- /promethee/external_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/external_sort.cpp -------------------------------------------------------------------------------- /promethee/external_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/external_sort.h -------------------------------------------------------------------------------- /promethee/fast/promethee_fast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/fast/promethee_fast.cpp -------------------------------------------------------------------------------- /promethee/fast/promethee_fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/fast/promethee_fast.h -------------------------------------------------------------------------------- /promethee/functions/optimized/linear_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/optimized/linear_function.cpp -------------------------------------------------------------------------------- /promethee/functions/optimized/linear_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/optimized/linear_function.h -------------------------------------------------------------------------------- /promethee/functions/optimized/linear_with_indifference_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/optimized/linear_with_indifference_function.cpp -------------------------------------------------------------------------------- /promethee/functions/optimized/linear_with_indifference_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/optimized/linear_with_indifference_function.h -------------------------------------------------------------------------------- /promethee/functions/optimized/promethee_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/optimized/promethee_function.cpp -------------------------------------------------------------------------------- /promethee/functions/optimized/promethee_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/optimized/promethee_function.h -------------------------------------------------------------------------------- /promethee/functions/umbu/linear_umbu_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/umbu/linear_umbu_function.cpp -------------------------------------------------------------------------------- /promethee/functions/umbu/linear_umbu_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/umbu/linear_umbu_function.h -------------------------------------------------------------------------------- /promethee/functions/umbu/linear_with_indifference_umbu_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/umbu/linear_with_indifference_umbu_function.cpp -------------------------------------------------------------------------------- /promethee/functions/umbu/linear_with_indifference_umbu_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/umbu/linear_with_indifference_umbu_function.h -------------------------------------------------------------------------------- /promethee/functions/umbu/promethee_umbu_fun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/umbu/promethee_umbu_fun.cpp -------------------------------------------------------------------------------- /promethee/functions/umbu/promethee_umbu_fun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/umbu/promethee_umbu_fun.h -------------------------------------------------------------------------------- /promethee/functions/vanilla/comparison_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/comparison_function.cpp -------------------------------------------------------------------------------- /promethee/functions/vanilla/comparison_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/comparison_function.h -------------------------------------------------------------------------------- /promethee/functions/vanilla/gaussian_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/gaussian_function.cpp -------------------------------------------------------------------------------- /promethee/functions/vanilla/gaussian_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/gaussian_function.h -------------------------------------------------------------------------------- /promethee/functions/vanilla/level_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/level_function.cpp -------------------------------------------------------------------------------- /promethee/functions/vanilla/level_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/level_function.h -------------------------------------------------------------------------------- /promethee/functions/vanilla/linear_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/linear_function.cpp -------------------------------------------------------------------------------- /promethee/functions/vanilla/linear_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/linear_function.h -------------------------------------------------------------------------------- /promethee/functions/vanilla/linear_indifference_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/linear_indifference_function.cpp -------------------------------------------------------------------------------- /promethee/functions/vanilla/linear_indifference_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/linear_indifference_function.h -------------------------------------------------------------------------------- /promethee/functions/vanilla/quasi_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/quasi_function.cpp -------------------------------------------------------------------------------- /promethee/functions/vanilla/quasi_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/quasi_function.h -------------------------------------------------------------------------------- /promethee/functions/vanilla/usual_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/usual_function.cpp -------------------------------------------------------------------------------- /promethee/functions/vanilla/usual_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/functions/vanilla/usual_function.h -------------------------------------------------------------------------------- /promethee/inputreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/inputreader.cpp -------------------------------------------------------------------------------- /promethee/inputreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/inputreader.h -------------------------------------------------------------------------------- /promethee/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/main.cpp -------------------------------------------------------------------------------- /promethee/matrix_meta_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/matrix_meta_data.h -------------------------------------------------------------------------------- /promethee/normalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/normalize.cpp -------------------------------------------------------------------------------- /promethee/normalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/normalize.h -------------------------------------------------------------------------------- /promethee/optimized/promethee_opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/optimized/promethee_opt.cpp -------------------------------------------------------------------------------- /promethee/optimized/promethee_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/optimized/promethee_opt.h -------------------------------------------------------------------------------- /promethee/outputwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/outputwriter.cpp -------------------------------------------------------------------------------- /promethee/outputwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/outputwriter.h -------------------------------------------------------------------------------- /promethee/parse_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/parse_args.cpp -------------------------------------------------------------------------------- /promethee/parse_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/parse_args.h -------------------------------------------------------------------------------- /promethee/parse_directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/parse_directory.cpp -------------------------------------------------------------------------------- /promethee/parse_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/parse_directory.h -------------------------------------------------------------------------------- /promethee/plibtiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/plibtiff.cpp -------------------------------------------------------------------------------- /promethee/plibtiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/plibtiff.h -------------------------------------------------------------------------------- /promethee/promethee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/promethee.cpp -------------------------------------------------------------------------------- /promethee/promethee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/promethee.h -------------------------------------------------------------------------------- /promethee/promethee_function_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/promethee_function_adapter.cpp -------------------------------------------------------------------------------- /promethee/promethee_function_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/promethee_function_adapter.h -------------------------------------------------------------------------------- /promethee/threads/promethee_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/threads/promethee_thread.cpp -------------------------------------------------------------------------------- /promethee/threads/promethee_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/threads/promethee_thread.h -------------------------------------------------------------------------------- /promethee/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/types.h -------------------------------------------------------------------------------- /promethee/umbu/promethee_umbu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/umbu/promethee_umbu.cpp -------------------------------------------------------------------------------- /promethee/umbu/promethee_umbu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/umbu/promethee_umbu.h -------------------------------------------------------------------------------- /promethee/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/utils.cpp -------------------------------------------------------------------------------- /promethee/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/utils.h -------------------------------------------------------------------------------- /promethee/vanilla/promethee_vanilla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/vanilla/promethee_vanilla.cpp -------------------------------------------------------------------------------- /promethee/vanilla/promethee_vanilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/promethee/vanilla/promethee_vanilla.h -------------------------------------------------------------------------------- /samples/sample1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample1/README.md -------------------------------------------------------------------------------- /samples/sample1/input/erosao.input: -------------------------------------------------------------------------------- 1 | 4.8 3.4 3.8 4.5 -------------------------------------------------------------------------------- /samples/sample1/input/infpop.input: -------------------------------------------------------------------------------- 1 | 300 155 200 280 -------------------------------------------------------------------------------- /samples/sample1/input/prod.input: -------------------------------------------------------------------------------- 1 | 6.2 4.1 5 4 -------------------------------------------------------------------------------- /samples/sample1/input/rhcp.input: -------------------------------------------------------------------------------- 1 | 2.2 0.5 0.7 2.5 -------------------------------------------------------------------------------- /samples/sample1/meta/erosao.meta: -------------------------------------------------------------------------------- 1 | 2 2 | linear 3 | 5 4 | 0 -------------------------------------------------------------------------------- /samples/sample1/meta/infpop.meta: -------------------------------------------------------------------------------- 1 | 1 2 | linear 3 | 500 4 | 0 -------------------------------------------------------------------------------- /samples/sample1/meta/prod.meta: -------------------------------------------------------------------------------- 1 | 4 2 | linear 3 | 7 4 | 1 -------------------------------------------------------------------------------- /samples/sample1/meta/rhcp.meta: -------------------------------------------------------------------------------- 1 | 3 2 | linear 3 | 2.5 4 | 1 -------------------------------------------------------------------------------- /samples/sample1/output/negativeflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample1/output/negativeflow.txt -------------------------------------------------------------------------------- /samples/sample1/output/netflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample1/output/netflow.txt -------------------------------------------------------------------------------- /samples/sample1/output/normalizedflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample1/output/normalizedflow.txt -------------------------------------------------------------------------------- /samples/sample1/output/positiveflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample1/output/positiveflow.txt -------------------------------------------------------------------------------- /samples/sample2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample2/README.md -------------------------------------------------------------------------------- /samples/sample2/input/VPR10.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample2/input/VPR10.input -------------------------------------------------------------------------------- /samples/sample2/input/VVAAmm.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample2/input/VVAAmm.input -------------------------------------------------------------------------------- /samples/sample2/meta/VPR10.meta: -------------------------------------------------------------------------------- 1 | 0.47 2 | linear 3 | 1 4 | 1 -------------------------------------------------------------------------------- /samples/sample2/meta/VVAAmm.meta: -------------------------------------------------------------------------------- 1 | 0.53 2 | linear 3 | 1 4 | 1 -------------------------------------------------------------------------------- /samples/sample2/output/negativeflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample2/output/negativeflow.txt -------------------------------------------------------------------------------- /samples/sample2/output/netflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample2/output/netflow.txt -------------------------------------------------------------------------------- /samples/sample2/output/normalizedflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample2/output/normalizedflow.txt -------------------------------------------------------------------------------- /samples/sample2/output/positiveflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample2/output/positiveflow.txt -------------------------------------------------------------------------------- /samples/sample3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample3/README.md -------------------------------------------------------------------------------- /samples/sample3/input/VPR10.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample3/input/VPR10.input -------------------------------------------------------------------------------- /samples/sample3/input/VVAAmm.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample3/input/VVAAmm.input -------------------------------------------------------------------------------- /samples/sample3/meta/VPR10.meta: -------------------------------------------------------------------------------- 1 | 0.47 2 | linearWithIndifference 3 | 1 0 4 | 1 -------------------------------------------------------------------------------- /samples/sample3/meta/VVAAmm.meta: -------------------------------------------------------------------------------- 1 | 0.53 2 | linearWithIndifference 3 | 1 0 4 | 1 -------------------------------------------------------------------------------- /samples/sample3/output/negativeflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample3/output/negativeflow.txt -------------------------------------------------------------------------------- /samples/sample3/output/netflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample3/output/netflow.txt -------------------------------------------------------------------------------- /samples/sample3/output/normalizedflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample3/output/normalizedflow.txt -------------------------------------------------------------------------------- /samples/sample3/output/positiveflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simsab-ufcg/Promethee2/HEAD/samples/sample3/output/positiveflow.txt --------------------------------------------------------------------------------