summaryrefslogtreecommitdiff
path: root/src/options/main_options.toml
blob: 10c58016dd013755f1c0c8cfacdc6bba388d741a (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
id     = "DRIVER"
name   = "Driver"

[[option]]
  name       = "showVersion"
  category   = "common"
  short      = "V"
  long       = "version"
  type       = "bool"
  predicates = ["showVersion"]
  alternate  = false
  help       = "identify this cvc5 binary"

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

[[option]]
  name       = "showConfiguration"
  category   = "common"
  long       = "show-config"
  type       = "bool"
  predicates = ["showConfiguration"]
  alternate  = false
  help       = "show cvc5 static configuration"

[[option]]
  name       = "showCopyright"
  category   = "common"
  long       = "copyright"
  type       = "bool"
  predicates = ["showCopyright"]
  alternate  = false
  help       = "show cvc5 copyright information"

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

[[option]]
  name       = "showDebugTags"
  category   = "regular"
  long       = "show-debug-tags"
  type       = "bool"
  predicates = ["showDebugTags"]
  alternate  = false
  help       = "show all available tags for debugging"

[[option]]
  name       = "showTraceTags"
  category   = "regular"
  long       = "show-trace-tags"
  type       = "bool"
  predicates = ["showTraceTags"]
  alternate  = false
  help       = "show all available tags for tracing"

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

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

[[option]]
  name       = "filename"
  category   = "undocumented"
  long       = "filename=FILENAME"
  type       = "std::string"
  help       = "filename of the input"

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

[[option]]
  name       = "dumpModels"
  category   = "regular"
  long       = "dump-models"
  type       = "bool"
  default    = "false"
  help       = "output models after every SAT/INVALID/UNKNOWN response"

[[option]]
  name       = "dumpProofs"
  category   = "regular"
  long       = "dump-proofs"
  type       = "bool"
  default    = "false"
  help       = "output proofs after every UNSAT/VALID response"

[[option]]
  name       = "dumpInstantiations"
  category   = "regular"
  long       = "dump-instantiations"
  type       = "bool"
  default    = "false"
  help       = "output instantiations of quantified formulas after every UNSAT/VALID response"

[[option]]
  name       = "dumpInstantiationsDebug"
  category   = "regular"
  long       = "dump-instantiations-debug"
  type       = "bool"
  default    = "false"
  help       = "output instantiations of quantified formulas after every UNSAT/VALID response, with debug information"

[[option]]
  name       = "dumpUnsatCores"
  category   = "regular"
  long       = "dump-unsat-cores"
  type       = "bool"
  default    = "false"
  help       = "output unsat cores after every UNSAT/VALID response"

[[option]]
  name       = "printUnsatCoresFull"
  category   = "regular"
  long       = "print-unsat-cores-full"
  type       = "bool"
  default    = "false"
  help       = "dump the full unsat core, including unlabeled assertions"

[[option]]
  name       = "dumpDifficulty"
  category   = "regular"
  long       = "dump-difficulty"
  type       = "bool"
  default    = "false"
  help       = "dump the difficulty measure after every response to check-sat"

[[option]]
  name       = "forceNoLimitCpuWhileDump"
  category   = "regular"
  long       = "force-no-limit-cpu-while-dump"
  type       = "bool"
  default    = "false"
  help       = "Force no CPU limit when dumping models and proofs"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback