├── .gitmodules ├── Dockerfile ├── INSTALL.md ├── LICENSE ├── README.md ├── bin ├── bench.sh ├── gpa └── install.sh ├── docs ├── MANUAL.md ├── gui.png ├── prune.md └── report.png └── python └── bench.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/README.md -------------------------------------------------------------------------------- /bin/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/bin/bench.sh -------------------------------------------------------------------------------- /bin/gpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/bin/gpa -------------------------------------------------------------------------------- /bin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/bin/install.sh -------------------------------------------------------------------------------- /docs/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/docs/MANUAL.md -------------------------------------------------------------------------------- /docs/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/docs/gui.png -------------------------------------------------------------------------------- /docs/prune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/docs/prune.md -------------------------------------------------------------------------------- /docs/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/docs/report.png -------------------------------------------------------------------------------- /python/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jokeren/GPA/HEAD/python/bench.py --------------------------------------------------------------------------------