diff options
| author | Florian Schmaus <flow@cs.fau.de> | 2019-08-12 14:06:07 +0200 |
|---|---|---|
| committer | Florian Schmaus <flow@cs.fau.de> | 2019-08-12 14:15:11 +0200 |
| commit | 52532a2db1e582ee76e021e4a4ce3c58f9520815 (patch) | |
| tree | de49afb10dbf90c08e515858541418c60bd50f25 | |
| parent | 5b3608b97ac0c1bd3469baf5096380d8b894da8d (diff) | |
| download | allocbench-52532a2db1e582ee76e021e4a4ce3c58f9520815.tar.gz allocbench-52532a2db1e582ee76e021e4a4ce3c58f9520815.zip | |
Introduce checkDependenciesAndPreconditions()
| -rwxr-xr-x | bench.py | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -46,7 +46,15 @@ def epilog(): pickle.dump(src.globalvars.facts, f) +def checkDependenciesAndPreconditions(): + # TODO: matplotlib + # TODO: python 3.6 + # TODO mariadb + pass + def main(): + checkDependenciesAndPreconditions() + args = parser.parse_args() if args.license: print("Copyright (C) 2018-2019 Florian Fischer") |
