Feat: describe implementations

This commit is contained in:
Dorian Zedler 2022-07-18 13:16:28 +02:00
parent befa4de16f
commit 83faed6bbf
Signed by: dorian
GPG Key ID: 989DE36109AFA354
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: combined implementation of 1 and 3\n\
\n",
progname);
}