-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathusage.h
43 lines (36 loc) · 1.58 KB
/
usage.h
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
// clang-format off
static char * compact_usage =
"usage: gimsatul [ <option> ... ] [ <dimacs> [ <proof> ] ]\n"
"\n"
"where '<option>' is one of the following\n"
"\n"
" -a | --ascii use ASCII format for proof output\n"
" -f | --force force reading '<dimacs>' and writing '<proof>'\n"
" -h | --help | --full command line options ('--full' for full list)\n"
" -i | --id source code version identifier (GIT hash)\n"
#ifdef LOGGING
" -l | --logging enable very verbose internal logging\n"
#endif
" -n | --no-witness do not print satisfying assignments\n"
" -O | -O<level> increase simplification limits\n"
#ifndef QUIET
" -q | --quiet disable all additional messages\n"
#endif
" -r | --resources summarize used resources\n"
#ifndef QUIET
" -v | --verbose increase verbosity\n"
#endif
" -V | --version print version\n"
"\n"
" --conflicts=0... limit conflicts (unlimited by default)\n"
" --threads=1..65536 set number of threads (default '1')\n"
" --time=1... limit time in seconds (unlimited by default)\n"
"\n"
"and '<dimacs>' is the input file in 'DIMACS' format ('<stdin>' if missing)\n"
"and '<proof>' the proof trace file in 'DRAT' format (no proof if missing).\n"
;
static char * additional_less_common_options =
" --embedded print options to embed them in CNF (delta debugging)\n"
" --range print option ranges (fuzzing)\n"
;
// clang-format on