Merge pull request 'Feat: describe implementations' (#8) from feat/manpage-improovements into master

Reviewed-on: https://gitlab-gepasp.in.tum.de/gra22s/team199/pulls/8
Reviewed-by: Thomas Florian <thomas.florian@tum.de>
This commit is contained in:
Dorian Zedler 2022-07-20 13:23:52 +02:00
commit e4fb538089
1 changed files with 9 additions and 1 deletions

View File

@ -23,7 +23,15 @@ void help(char *progname) {
-V, --version <version> use a specific implementation\n\
-B, --benchmark [repetitons] benchmark the execution and optionally repeat it\n\
-T, --test run self-test. If set, no file is needed\n\
-h, --help print this help page\n",
-h, --help print this help page\n\
\n\
<version> is an integer between 0 and 4.\n\
0: naive implementation\n\
1: optimized implementation\n\
2: memory efficient implementation\n\
3: threaded implementation\n\
4: reference implementation\n\
\n",
progname);
}