summaryrefslogtreecommitdiff
path: root/src/options/main_options.toml
blob: 9f75e9426e9ed11ade88c75f6867e737213d96ba (plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
id     = "DRIVER"
name   = "Driver"
header = "options/main_options.h"

[[option]]
  name       = "version"
  category   = "common"
  short      = "V"
  long       = "version"
  type       = "bool"
  read_only  = true
  alternate  = false
  help       = "identify this CVC4 binary"

[[alias]]
  category   = "undocumented"
  long       = "license"
  links      = ["--version"]

[[option]]
  name       = "help"
  category   = "common"
  short      = "h"
  long       = "help"
  type       = "bool"
  read_only  = true
  alternate  = false
  help       = "full command line reference"

[[option]]
  category   = "common"
  long       = "show-config"
  type       = "void"
  handler    = "showConfiguration"
  read_only  = true
  help       = "show CVC4 static configuration"

[[option]]
  category   = "common"
  long       = "copyright"
  type       = "void"
  handler    = "copyright"
  read_only  = true
  help       = "show CVC4 copyright information"

[[option]]
  name       = "seed"
  category   = "common"
  short      = "s"
  long       = "seed=N"
  type       = "uint64_t"
  default    = "0"
  read_only  = true
  help       = "seed for random number generator"

[[option]]
  category   = "regular"
  long       = "show-debug-tags"
  type       = "void"
  handler    = "showDebugTags"
  read_only  = true
  help       = "show all available tags for debugging"

[[option]]
  category   = "regular"
  long       = "show-trace-tags"
  type       = "void"
  handler    = "showTraceTags"
  read_only  = true
  help       = "show all available tags for tracing"

[[option]]
  name       = "earlyExit"
  category   = "expert"
  long       = "early-exit"
  type       = "bool"
  default    = "true"
  read_only  = true
  help       = "do not run destructors at exit; default on except in debug builds"

[[option]]
  name       = "threads"
  category   = "regular"
  long       = "threads=N"
  type       = "unsigned"
  default    = "2"
  predicates = ["unsignedGreater0"]
  read_only  = true
  help       = "Total number of threads for portfolio"

[[option]]
  category   = "regular"
  long       = "threadN=string"
  type       = "void"
  handler    = "threadN"
  read_only  = true
  help       = "configures portfolio thread N (0..#threads-1)"

[[option]]
  name       = "threadStackSize"
  category   = "regular"
  long       = "thread-stack=N"
  type       = "unsigned"
  default    = "0"
  read_only  = true
  help       = "stack size for worker threads in MB (0 means use Boost/thread lib default)"

[[option]]
  name       = "threadArgv"
  category   = "regular"
  type       = "std::vector<std::string>"
  includes   = ["<vector>", "<string>"]
  help       = "Thread configuration (a string to be passed to parseOptions)"

[[option]]
  name       = "thread_id"
  category   = "regular"
  type       = "int"
  default    = "-1"
  help       = "Thread ID, for internal use in case of multi-threaded run"

[[option]]
  name       = "sharingFilterByLength"
  category   = "regular"
  long       = "filter-lemma-length=N"
  type       = "int"
  default    = "-1"
  help       = "don't share (among portfolio threads) lemmas strictly longer than N"

[[option]]
  name       = "fallbackSequential"
  category   = "regular"
  long       = "fallback-sequential"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "Switch to sequential mode (instead of printing an error) if it can't be solved in portfolio mode"

[[option]]
  name       = "incrementalParallel"
  category   = "regular"
  long       = "incremental-parallel"
  type       = "bool"
  default    = "false"
  links      = ["--incremental"]
  read_only  = true
  help       = "Use parallel solver even in incremental mode (may print 'unknown's at times)"

[[option]]
  name       = "interactive"
  category   = "regular"
  long       = "interactive"
  type       = "bool"
  help       = "force interactive/non-interactive mode"

[[option]]
  name       = "interactivePrompt"
  category   = "undocumented"
  long       = "interactive-prompt"
  type       = "bool"
  default    = "true"
  read_only  = true
  help       = "interactive prompting while in interactive mode"

[[option]]
  name       = "continuedExecution"
  category   = "regular"
  long       = "continued-execution"
  type       = "bool"
  default    = "false"
  links      = ["--interactive", "--no-interactive-prompt"]
  read_only  = true
  help       = "continue executing commands, even on error"

[[option]]
  name       = "segvSpin"
  category   = "regular"
  long       = "segv-spin"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "spin on segfault/other crash waiting for gdb"

[[alias]]
  category   = "undocumented"
  long       = "segv-nospin"
  links      = ["--no-segv-spin"]

[[option]]
  name       = "tearDownIncremental"
  category   = "expert"
  long       = "tear-down-incremental=N"
  type       = "int"
  default    = "0"
  read_only  = true
  help       = "implement PUSH/POP/multi-query by destroying and recreating SmtEngine every N queries"

[[option]]
  name       = "waitToJoin"
  category   = "expert"
  long       = "wait-to-join"
  type       = "bool"
  default    = "true"
  read_only  = true
  help       = "wait for other threads to join before quitting"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback