-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.h
More file actions
43 lines (28 loc) · 1.2 KB
/
help.h
File metadata and controls
43 lines (28 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef HELP_H
#define HELP_H
#include "version.h"
#define PROG_NAME "bracket"
#define PROG_VERSION PROG_NAME " " VERSION
// clang-format off
constexpr const char *usage = PROG_VERSION "\n"
"usage: " PROG_NAME " [options] [input file]\n"
R"(
if no input file is specified the input is read from the standard input
options:
-g : Possibly output a Graphviz representation of a found successful run
to a file (default file: run.gv)
-h : Print this help message and exit
-i <file> : Set <file> as the input file
-l : Output a logic programming representation of the automaton and possibly
of a found successful run to a file (default file: automaton.lp)
-o <file> : Set <file> as the output file for the -g option and also
implicitly activate option -g
-t <num> : Set <num> (>= 1) as the maximun number of concurrent threads
(default: 1)
-w : Overwite the content of output files that already exist
-L <file> : Set <file> as the output file for the -l option and also
implicitly activate option -l
-V : Print version information and exit
Get help/Report bugs/Provide suggestions at: https://github.com/max-co/bracket
)";
#endif