├── .gitignore ├── LICENSE ├── README.md ├── Sources ├── benchm.cpp ├── binary_benchm.cpp ├── cast.cpp ├── cc.cpp ├── combinatorics.cpp ├── histograms.cpp ├── print.cpp ├── random.cpp ├── set_parameters.cpp └── standard_include.cpp ├── flags.dat ├── flags_new-m.dat └── makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/README.md -------------------------------------------------------------------------------- /Sources/benchm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/Sources/benchm.cpp -------------------------------------------------------------------------------- /Sources/binary_benchm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/Sources/binary_benchm.cpp -------------------------------------------------------------------------------- /Sources/cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/Sources/cast.cpp -------------------------------------------------------------------------------- /Sources/cc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/Sources/cc.cpp -------------------------------------------------------------------------------- /Sources/combinatorics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/Sources/combinatorics.cpp -------------------------------------------------------------------------------- /Sources/histograms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/Sources/histograms.cpp -------------------------------------------------------------------------------- /Sources/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/Sources/print.cpp -------------------------------------------------------------------------------- /Sources/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/Sources/random.cpp -------------------------------------------------------------------------------- /Sources/set_parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/Sources/set_parameters.cpp -------------------------------------------------------------------------------- /Sources/standard_include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/Sources/standard_include.cpp -------------------------------------------------------------------------------- /flags.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/flags.dat -------------------------------------------------------------------------------- /flags_new-m.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/flags_new-m.dat -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eXascaleInfolab/LFR-Benchmark_UndirWeightOvp/HEAD/makefile --------------------------------------------------------------------------------