GCC Code Coverage Report
Directory: . Exec Total Coverage
File: build-coverage/src/main/options.cpp Lines: 421 1705 24.7 %
Date: 2021-09-15 Branches: 785 5695 13.8 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Tim King, Gereon Kremer, Andrew Reynolds
4
 *
5
 * This file is part of the cvc5 project.
6
 *
7
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
8
 * in the top-level source directory and their institutional affiliations.
9
 * All rights reserved.  See the file COPYING in the top-level source
10
 * directory for licensing information.
11
 * ****************************************************************************
12
 *
13
 * Options utilities used in the driver.
14
 */
15
16
#include "main/options.h"
17
18
#if !defined(_BSD_SOURCE) && defined(__MINGW32__) && !defined(__MINGW64__)
19
// force use of optreset; mingw32 croaks on argv-switching otherwise
20
#include "base/cvc5config.h"
21
#define _BSD_SOURCE
22
#undef HAVE_DECL_OPTRESET
23
#define HAVE_DECL_OPTRESET 1
24
#define CVC5_IS_NOT_REALLY_BSD
25
#endif /* !_BSD_SOURCE && __MINGW32__ && !__MINGW64__ */
26
27
#ifdef __MINGW64__
28
extern int optreset;
29
#endif /* __MINGW64__ */
30
31
#include <getopt.h>
32
33
// clean up
34
#ifdef CVC5_IS_NOT_REALLY_BSD
35
#  undef _BSD_SOURCE
36
#endif /* CVC5_IS_NOT_REALLY_BSD */
37
38
#include "base/check.h"
39
#include "base/output.h"
40
#include "options/didyoumean.h"
41
#include "options/option_exception.h"
42
43
#include <cstring>
44
#include <iostream>
45
#include <limits>
46
47
namespace cvc5::main {
48
49
// clang-format off
50
19711
static const std::string commonOptionsDescription =
51
R"FOOBAR(Most commonly-used cvc5 options:
52
  --incremental | -i     enable incremental solving [*]
53
  --lang=LANG | --input-language=LANG | -L LANG
54
                         force input language (default is "auto"; see --lang
55
                         help)
56
  --output-lang=LANG | --output-language=LANG
57
                         force output language (default is "auto"; see
58
                         --output-lang help)
59
  --quiet | -q           decrease verbosity (may be repeated)
60
  --rlimit=N             set resource limit
61
  --rlimit-per=N | --reproducible-resource-limit=N
62
                         set resource limit per query
63
  --stats                give statistics on exit [*]
64
  --tlimit=MS            set time limit in milliseconds of wall clock time
65
  --tlimit-per=MS        set time limit per query in milliseconds
66
  --verbose | -v         increase verbosity (may be repeated)
67
  --copyright            show cvc5 copyright information
68
  --help | -h            full command line reference
69
  --seed=N | -s N        seed for random number generator
70
  --show-config          show cvc5 static configuration
71
  --version | -V         identify this cvc5 binary
72
  --strict-parsing       be less tolerant of non-conforming inputs [*]
73
  --dump=MODE            dump preprocessed assertions, etc., see --dump=help
74
  --dump-to=FILE         all dumping goes to FILE (instead of stdout)
75
  --produce-assertions   keep an assertions list (enables get-assertions
76
                         command) [*]
77
  --produce-models | -m  support the get-value and get-model commands [*]
78
)FOOBAR";
79
80
19711
static const std::string additionalOptionsDescription =
81
R"FOOBAR(Additional cvc5 options:
82
83
From the Arithmetic Theory module:
84
  --approx-branch-depth=N
85
                         maximum branch depth the approximate solver is allowed
86
                         to take
87
  --arith-brab           whether to use simple rounding, similar to a unit-cube
88
                         test, for integers [*]
89
  --arith-cong-man       (experimental) whether to use the congruence manager
90
                         when the equality solver is enabled [*]
91
  --arith-eq-solver      whether to use the equality solver in the theory of
92
                         arithmetic [*]
93
  --arith-no-partial-fun do not use partial function semantics for arithmetic
94
                         (not SMT LIB compliant) [*]
95
  --arith-prop=MODE      turns on arithmetic propagation (default is 'old', see
96
                         --arith-prop=help)
97
  --arith-prop-clauses=N rows shorter than this are propagated as clauses
98
  --arith-rewrite-equalities
99
                         turns on the preprocessing rewrite turning equalities
100
                         into a conjunction of inequalities [*]
101
  --collect-pivot-stats  collect the pivot history [*]
102
  --cut-all-bounded      turns on the integer solving step of periodically
103
                         cutting all integer variables that have both upper and
104
                         lower bounds [*]
105
  --dio-decomps          let skolem variables for integer divisibility
106
                         constraints leak from the dio solver [*]
107
  --dio-repeat           handle dio solver constraints in mass or one at a time
108
                         [*]
109
  --dio-solver           turns on Linear Diophantine Equation solver (Griggio,
110
                         JSAT 2012) [*]
111
  --dio-turns=N          turns in a row dio solver cutting gets
112
  --error-selection-rule=RULE
113
                         change the pivot rule for the basic variable (default
114
                         is 'min', see --pivot-rule help)
115
  --fc-penalties         turns on degenerate pivot penalties [*]
116
  --heuristic-pivots=N   the number of times to apply the heuristic pivot rule;
117
                         if N < 0, this defaults to the number of variables; if
118
                         this is unset, this is tuned by the logic selection
119
  --lemmas-on-replay-failure
120
                         attempt to use external lemmas if approximate solve
121
                         integer failed [*]
122
  --maxCutsInContext=N   maximum cuts in a given context before signalling a
123
                         restart
124
  --miplib-trick         turns on the preprocessing step of attempting to infer
125
                         bounds on miplib problems [*]
126
  --miplib-trick-subs=N  do substitution for miplib 'tmp' vars if defined in <=
127
                         N eliminated vars
128
  --new-prop             use the new row propagation system [*]
129
  --nl-cad               whether to use the cylindrical algebraic decomposition
130
                         solver for non-linear arithmetic [*]
131
  --nl-cad-initial       whether to use the linear model as initial guess for
132
                         the cylindrical algebraic decomposition solver [*]
133
  --nl-cad-lift=MODE     choose the CAD lifting mode (EXPERTS only)
134
  --nl-cad-proj=MODE     choose the CAD projection operator (EXPERTS only)
135
  --nl-ext=MODE          incremental linearization approach to non-linear
136
  --nl-ext-ent-conf      check for entailed conflicts in non-linear solver [*]
137
  --nl-ext-factor        use factoring inference in non-linear incremental
138
                         linearization solver [*]
139
  --nl-ext-inc-prec      whether to increment the precision for irrational
140
                         function constraints [*]
141
  --nl-ext-purify        purify non-linear terms at preprocess [*]
142
  --nl-ext-rbound        use resolution-style inference for inferring new bounds
143
                         in non-linear incremental linearization solver [*]
144
  --nl-ext-rewrite       do context-dependent simplification based on rewrites
145
                         in non-linear solver [*]
146
  --nl-ext-split-zero    initial splits on zero for all variables [*]
147
  --nl-ext-tf-taylor-deg=N
148
                         initial degree of polynomials for Taylor approximation
149
  --nl-ext-tf-tplanes    use non-terminating tangent plane strategy for
150
                         transcendental functions for non-linear incremental
151
                         linearization solver [*]
152
  --nl-ext-tplanes       use non-terminating tangent plane strategy for
153
                         non-linear incremental linearization solver [*]
154
  --nl-ext-tplanes-interleave
155
                         interleave tangent plane strategy for non-linear
156
                         incremental linearization solver [*]
157
  --nl-icp               whether to use ICP-style propagations for non-linear
158
                         arithmetic [*]
159
  --nl-rlv=MODE          choose mode for using relevance of assertions in
160
                         non-linear arithmetic
161
  --nl-rlv-assert-bounds use bound inference utility to prune when an assertion
162
                         is entailed by another [*]
163
  --pb-rewrites          apply pseudo boolean rewrites [*]
164
  --pivot-threshold=N    sets the number of pivots using --pivot-rule per basic
165
                         variable per simplex instance before using variable
166
                         order
167
  --pp-assert-max-sub-size=N
168
                         threshold for substituting an equality in ppAssert
169
  --prop-row-length=N    sets the maximum row length to be used in propagation
170
  --replay-early-close-depth=N
171
                         multiples of the depths to try to close the approx log
172
                         eagerly
173
  --replay-failure-penalty=N
174
                         number of solve integer attempts to skips after a
175
                         numeric failure
176
  --replay-lemma-reject-cut=N
177
                         maximum complexity of any coefficient while outputting
178
                         replaying cut lemmas
179
  --replay-num-err-penalty=N
180
                         number of solve integer attempts to skips after a
181
                         numeric failure
182
  --replay-reject-cut=N  maximum complexity of any coefficient while replaying
183
                         cuts
184
  --replay-soi-major-threshold=T
185
                         threshold for a major tolerance failure by the
186
                         approximate solver
187
  --replay-soi-major-threshold-pen=N
188
                         threshold for a major tolerance failure by the
189
                         approximate solver
190
  --replay-soi-minor-threshold=T
191
                         threshold for a minor tolerance failure by the
192
                         approximate solver
193
  --replay-soi-minor-threshold-pen=N
194
                         threshold for a minor tolerance failure by the
195
                         approximate solver
196
  --restrict-pivots      have a pivot cap for simplex at effort levels below
197
                         fullEffort [*]
198
  --revert-arith-models-on-unsat
199
                         revert the arithmetic model to a known safe model on
200
                         unsat if one is cached [*]
201
  --rr-turns=N           round robin turn
202
  --se-solve-int         attempt to use the approximate solve integer method on
203
                         standard effort [*]
204
  --simplex-check-period=N
205
                         the number of pivots to do in simplex before rechecking
206
                         for a conflict on all variables
207
  --soi-qe               use quick explain to minimize the sum of infeasibility
208
                         conflicts [*]
209
  --standard-effort-variable-order-pivots=N
210
                         limits the number of pivots in a single invocation of
211
                         check() at a non-full effort level using Bland's pivot
212
                         rule (EXPERTS only)
213
  --unate-lemmas=MODE    determines which lemmas to add before solving (default
214
                         is 'all', see --unate-lemmas=help)
215
  --use-approx           attempt to use an approximate solver [*]
216
  --use-fcsimplex        use focusing and converging simplex (FMCAD 2013
217
                         submission) [*]
218
  --use-soi              use sum of infeasibility simplex (FMCAD 2013
219
                         submission) [*]
220
221
From the Arrays Theory module:
222
  --arrays-config=N      set different array option configurations - for
223
                         developers only
224
  --arrays-eager-index   turn on eager index splitting for generated array
225
                         lemmas [*]
226
  --arrays-eager-lemmas  turn on eager lemma generation for arrays [*]
227
  --arrays-exp           enable experimental features in the theory of arrays
228
                         (EXPERTS only) [*]
229
  --arrays-model-based   turn on model-based array solver [*]
230
  --arrays-optimize-linear
231
                         turn on optimization for linear array terms (see de
232
                         Moura FMCAD 09 arrays paper) [*]
233
  --arrays-prop=N        propagation effort for arrays: 0 is none, 1 is some, 2
234
                         is full
235
  --arrays-reduce-sharing
236
                         use model information to reduce size of care graph for
237
                         arrays [*]
238
  --arrays-weak-equiv    use algorithm from Christ/Hoenicke (SMT 2014) [*]
239
240
From the Base module:
241
  --debug=TAG | -d TAG   debug something (e.g. -d arith), can repeat
242
  --output=TAG | -o TAG  Enable output tag.
243
  --parse-only           exit after parsing input [*]
244
  --preprocess-only      exit after preprocessing input [*]
245
  --print-success        print the "success" output required of SMT-LIBv2 [*]
246
  --rweight=VAL=N        set a single resource weight (EXPERTS only)
247
  --stats-all            print unchanged (defaulted) statistics as well (EXPERTS
248
                         only) [*]
249
  --stats-every-query    in incremental mode, print stats after every
250
                         satisfiability or validity query [*]
251
  --stats-expert         print expert (non-public) statistics as well (EXPERTS
252
                         only) [*]
253
  --trace=TAG | -t TAG   trace something (e.g. -t pushpop), can repeat
254
  --verbosity=N          the verbosity level of cvc5
255
256
From the Bitvector Theory module:
257
  --bitblast=MODE        choose bitblasting mode, see --bitblast=help
258
  --bitblast-aig         bitblast by first converting to AIG (implies
259
                         --bitblast=eager) [*]
260
  --bitwise-eq           lift equivalence with one-bit bit-vectors to be boolean
261
                         operations [*]
262
  --bool-to-bv=MODE      convert booleans to bit-vectors of size 1 at various
263
                         levels of aggressiveness, see --bool-to-bv=help
264
  --bv-aig-simp=COMMAND  abc command to run AIG simplifications (implies
265
                         --bitblast-aig, default is "balance;drw") (EXPERTS
266
                         only)
267
  --bv-alg-extf          algebraic inferences for extended functions [*]
268
  --bv-algebraic-budget=N
269
                         the budget allowed for the algebraic solver in number
270
                         of SAT conflicts (EXPERTS only)
271
  --bv-algebraic-solver  turn on experimental algebraic solver for the
272
                         bit-vector theory (only if --bv-solver=layered)
273
                         (EXPERTS only) [*]
274
  --bv-assert-input      assert input assertions on user-level 0 instead of
275
                         assuming them in the bit-vector SAT solver [*]
276
  --bv-eager-explanations
277
                         compute bit-blasting propagation explanations eagerly
278
                         (EXPERTS only) [*]
279
  --bv-eq-solver         use the equality engine for the bit-vector theory (only
280
                         if --bv-solver=layered) [*]
281
  --bv-extract-arith     enable rewrite pushing extract [i:0] over arithmetic
282
                         operations (can blow up) (EXPERTS only) [*]
283
  --bv-gauss-elim        simplify formula via Gaussian Elimination if applicable
284
                         (EXPERTS only) [*]
285
  --bv-inequality-solver turn on the inequality solver for the bit-vector theory
286
                         (only if --bv-solver=layered) [*]
287
  --bv-intro-pow2        introduce bitvector powers of two as a preprocessing
288
                         pass (EXPERTS only) [*]
289
  --bv-num-func=N        number of function symbols in conflicts that are
290
                         generalized (EXPERTS only)
291
  --bv-print-consts-as-indexed-symbols
292
                         print bit-vector constants in decimal (e.g. (_ bv1 4))
293
                         instead of binary (e.g. #b0001), applies to SMT-LIB 2.x
294
                         [*]
295
  --bv-propagate         use bit-vector propagation in the bit-blaster [*]
296
  --bv-quick-xplain      minimize bv conflicts using the QuickXplain algorithm
297
                         (EXPERTS only) [*]
298
  --bv-sat-solver=MODE   choose which sat solver to use, see
299
                         --bv-sat-solver=help (EXPERTS only)
300
  --bv-solver=MODE       choose bit-vector solver, see --bv-solver=help
301
  --bv-to-bool           lift bit-vectors of size 1 to booleans when possible
302
                         [*]
303
304
From the Datatypes Theory module:
305
  --cdt-bisimilar        do bisimilarity check for co-datatypes [*]
306
  --dt-binary-split      do binary splits for datatype constructor types [*]
307
  --dt-blast-splits      when applicable, blast splitting lemmas for all
308
                         variables at once [*]
309
  --dt-cyclic            do cyclicity check for datatypes [*]
310
  --dt-force-assignment  force the datatypes solver to give specific values to
311
                         all datatypes terms before answering sat [*]
312
  --dt-infer-as-lemmas   always send lemmas out instead of making internal
313
                         inferences [*]
314
  --dt-nested-rec        allow nested recursion in datatype definitions [*]
315
  --dt-polite-optimize   turn on optimization for polite combination (EXPERTS
316
                         only) [*]
317
  --dt-rewrite-error-sel rewrite incorrectly applied selectors to arbitrary
318
                         ground term (EXPERTS only) [*]
319
  --dt-share-sel         internally use shared selectors across multiple
320
                         constructors [*]
321
  --sygus-abort-size=N   tells enumerative sygus to only consider solutions up
322
                         to term size N (-1 == no limit, default)
323
  --sygus-fair=MODE      if and how to apply fairness for sygus
324
  --sygus-fair-max       use max instead of sum for multi-function sygus
325
                         conjectures [*]
326
  --sygus-sym-break      simple sygus symmetry breaking lemmas [*]
327
  --sygus-sym-break-agg  use aggressive checks for simple sygus symmetry
328
                         breaking lemmas [*]
329
  --sygus-sym-break-dynamic
330
                         dynamic sygus symmetry breaking lemmas [*]
331
  --sygus-sym-break-lazy lazily add symmetry breaking lemmas for terms [*]
332
  --sygus-sym-break-pbe  sygus symmetry breaking lemmas based on pbe conjectures
333
                         [*]
334
  --sygus-sym-break-rlv  add relevancy conditions to symmetry breaking lemmas
335
                         [*]
336
337
From the Decision Heuristics module:
338
  --decision=MODE | --decision-mode=MODE
339
                         choose decision mode, see --decision=help
340
  --decision-random-weight=N
341
                         assign random weights to nodes between 0 and N-1 (0:
342
                         disable) (EXPERTS only)
343
  --decision-threshold=N ignore all nodes greater than threshold in first
344
                         attempt to pick decision (EXPERTS only)
345
  --decision-use-weight  use the weight nodes (locally, by looking at children)
346
                         to direct recursive search (EXPERTS only) [*]
347
  --decision-weight-internal=HOW
348
                         compute weights of internal nodes using children: off,
349
                         max, sum, usr1 (EXPERTS only)
350
  --jh-rlv-order         maintain activity-based ordering for decision
351
                         justification heuristic (EXPERTS only) [*]
352
  --jh-skolem=MODE       policy for when to satisfy skolem definitions in
353
                         justification heuristic (EXPERTS only)
354
  --jh-skolem-rlv=MODE   policy for when to consider skolem definitions relevant
355
                         in justification heuristic (EXPERTS only)
356
357
From the Expression module:
358
  --dag-thresh=N         dagify common subexprs appearing > N times (1 ==
359
                         default, 0 == don't dagify)
360
  --expr-depth=N         print exprs to depth N (0 == default, -1 == no limit)
361
  --type-checking        type check expressions [*]
362
363
From the Floating-Point module:
364
  --fp-exp               Allow floating-point sorts of all sizes, rather than
365
                         only Float32 (8/24) or Float64 (11/53) (experimental)
366
                         [*]
367
  --fp-lazy-wb           Enable lazier word-blasting (on preNotifyFact instead
368
                         of registerTerm) (EXPERTS only) [*]
369
370
From the Driver module:
371
  --dump-difficulty      dump the difficulty measure after every response to
372
                         check-sat [*]
373
  --dump-instantiations  output instantiations of quantified formulas after
374
                         every UNSAT/VALID response [*]
375
  --dump-instantiations-debug
376
                         output instantiations of quantified formulas after
377
                         every UNSAT/VALID response, with debug information [*]
378
  --dump-models          output models after every SAT/INVALID/UNKNOWN response
379
                         [*]
380
  --dump-proofs          output proofs after every UNSAT/VALID response [*]
381
  --dump-unsat-cores     output unsat cores after every UNSAT/VALID response [*]
382
  --dump-unsat-cores-full
383
                         dump the full unsat core, including unlabeled
384
                         assertions [*]
385
  --early-exit           do not run destructors at exit; default on except in
386
                         debug builds (EXPERTS only) [*]
387
  --force-no-limit-cpu-while-dump
388
                         Force no CPU limit when dumping models and proofs [*]
389
  --interactive          force interactive shell/non-interactive mode [*]
390
  --segv-spin            spin on segfault/other crash waiting for gdb [*]
391
  --show-debug-tags      show all available tags for debugging
392
  --show-trace-tags      show all available tags for tracing
393
394
From the Parser module:
395
  --force-logic=LOGIC    set the logic, and override all further user attempts
396
                         to change it (EXPERTS only)
397
  --global-declarations  force all declarations and definitions to be global [*]
398
  --mmap                 memory map file input [*]
399
  --semantic-checks      enable semantic checks, including type checks [*]
400
401
From the Printing module:
402
  --flatten-ho-chains    print (binary) application chains in a flattened way,
403
                         e.g. (a b c) rather than ((a b) c) [*]
404
  --model-format=MODE    print format mode for models, see --model-format=help
405
  --print-inst=MODE      print format for printing instantiations
406
  --print-inst-full      print instantiations for formulas that do not have
407
                         given identifiers [*]
408
409
From the Proof module:
410
  --proof-check=MODE     select proof checking mode
411
  --proof-format-mode=MODE
412
                         select language of proof output
413
  --proof-granularity=MODE
414
                         modes for proof granularity
415
  --proof-pedantic=N     assertion failure for any incorrect rule application or
416
                         untrusted lemma having pedantic level <=N with proof
417
  --proof-pp-merge       merge subproofs in final proof post-processor [*]
418
  --proof-print-conclusion
419
                         Print conclusion of proof steps when printing AST [*]
420
421
From the SAT Layer module:
422
  --minisat-dump-dimacs  instead of solving minisat dumps the asserted clauses
423
                         in Dimacs format [*]
424
  --minisat-elimination  use Minisat elimination [*]
425
  --random-freq=P | --random-frequency=P
426
                         sets the frequency of random decisions in the sat
427
                         solver (P=0.0 by default)
428
  --random-seed=S        sets the random seed for the sat solver
429
  --refine-conflicts     refine theory conflict clauses (default false) [*]
430
  --restart-int-base=N   sets the base restart interval for the sat solver (N=25
431
                         by default)
432
  --restart-int-inc=F    sets the restart interval increase factor for the sat
433
                         solver (F=3.0 by default)
434
435
From the Quantifiers module:
436
  --ag-miniscope-quant   perform aggressive miniscoping for quantifiers [*]
437
  --cegis-sample=MODE    mode for using samples in the counterexample-guided
438
                         inductive synthesis loop
439
  --cegqi                turns on counterexample-based quantifier instantiation
440
                         [*]
441
  --cegqi-all            apply counterexample-based instantiation to all
442
                         quantified formulas [*]
443
  --cegqi-bv             use word-level inversion approach for
444
                         counterexample-guided quantifier instantiation for
445
                         bit-vectors [*]
446
  --cegqi-bv-concat-inv  compute inverse for concat over equalities rather than
447
                         producing an invertibility condition [*]
448
  --cegqi-bv-ineq=MODE   choose mode for handling bit-vector inequalities with
449
                         counterexample-guided instantiation
450
  --cegqi-bv-interleave-value
451
                         interleave model value instantiation with word-level
452
                         inversion approach [*]
453
  --cegqi-bv-linear      linearize adder chains for variables [*]
454
  --cegqi-bv-rm-extract  replaces extract terms with variables for
455
                         counterexample-guided instantiation for bit-vectors [*]
456
  --cegqi-bv-solve-nl    try to solve non-linear bv literals using model value
457
                         projections [*]
458
  --cegqi-full           turns on full effort counterexample-based quantifier
459
                         instantiation, which may resort to model-value
460
                         instantiation [*]
461
  --cegqi-innermost      only process innermost quantified formulas in
462
                         counterexample-based quantifier instantiation [*]
463
  --cegqi-midpoint       choose substitutions based on midpoints of lower and
464
                         upper bounds for counterexample-based quantifier
465
                         instantiation [*]
466
  --cegqi-min-bounds     use minimally constrained lower/upper bound for
467
                         counterexample-based quantifier instantiation [*]
468
  --cegqi-model          guide instantiations by model values for
469
                         counterexample-based quantifier instantiation [*]
470
  --cegqi-multi-inst     when applicable, do multi instantiations per quantifier
471
                         per round in counterexample-based quantifier
472
                         instantiation [*]
473
  --cegqi-nested-qe      process nested quantified formulas with quantifier
474
                         elimination in counterexample-based quantifier
475
                         instantiation [*]
476
  --cegqi-nopt           non-optimal bounds for counterexample-based quantifier
477
                         instantiation [*]
478
  --cegqi-repeat-lit     solve literals more than once in counterexample-based
479
                         quantifier instantiation [*]
480
  --cegqi-round-up-lia   round up integer lower bounds in substitutions for
481
                         counterexample-based quantifier instantiation [*]
482
  --cegqi-sat            answer sat when quantifiers are asserted with
483
                         counterexample-based quantifier instantiation [*]
484
  --cegqi-use-inf-int    use integer infinity for vts in counterexample-based
485
                         quantifier instantiation [*]
486
  --cegqi-use-inf-real   use real infinity for vts in counterexample-based
487
                         quantifier instantiation [*]
488
  --cond-var-split-agg-quant
489
                         aggressive split quantified formulas that lead to
490
                         variable eliminations [*]
491
  --cond-var-split-quant split quantified formulas that lead to variable
492
                         eliminations [*]
493
  --conjecture-filter-active-terms
494
                         filter based on active terms [*]
495
  --conjecture-filter-canonical
496
                         filter based on canonicity [*]
497
  --conjecture-filter-model
498
                         filter based on model [*]
499
  --conjecture-gen       generate candidate conjectures for inductive proofs [*]
500
  --conjecture-gen-gt-enum=N
501
                         number of ground terms to generate for model filtering
502
  --conjecture-gen-max-depth=N
503
                         maximum depth of terms to consider for conjectures
504
  --conjecture-gen-per-round=N
505
                         number of conjectures to generate per instantiation
506
                         round
507
  --conjecture-gen-uee-intro
508
                         more aggressive merging for universal equality engine,
509
                         introduces terms [*]
510
  --conjecture-no-filter do not filter conjectures [*]
511
  --dt-stc-ind           apply strengthening for existential quantification over
512
                         datatypes based on structural induction [*]
513
  --dt-var-exp-quant     expand datatype variables bound to one constructor in
514
                         quantifiers [*]
515
  --e-matching           whether to do heuristic E-matching [*]
516
  --elim-taut-quant      eliminate tautological disjuncts of quantified formulas
517
                         [*]
518
  --ext-rewrite-quant    apply extended rewriting to bodies of quantified
519
                         formulas [*]
520
  --finite-model-find    use finite model finding heuristic for quantifier
521
                         instantiation [*]
522
  --fmf-bound            finite model finding on bounded quantification [*]
523
  --fmf-bound-int        finite model finding on bounded integer quantification
524
                         [*]
525
  --fmf-bound-lazy       enforce bounds for bounded quantification lazily via
526
                         use of proxy variables [*]
527
  --fmf-fmc-simple       simple models in full model check for finite model
528
                         finding [*]
529
  --fmf-fresh-dc         use fresh distinguished representative when applying
530
                         Inst-Gen techniques [*]
531
  --fmf-fun              find models for recursively defined functions, assumes
532
                         functions are admissible [*]
533
  --fmf-fun-rlv          find models for recursively defined functions, assumes
534
                         functions are admissible, allows empty type when
535
                         function is irrelevant [*]
536
  --fmf-inst-engine      use instantiation engine in conjunction with finite
537
                         model finding [*]
538
  --fmf-type-completion-thresh=N
539
                         the maximum cardinality of an interpreted type for
540
                         which exhaustive enumeration in finite model finding is
541
                         attempted
542
  --fs-interleave        interleave enumerative instantiation with other
543
                         techniques [*]
544
  --fs-stratify          stratify effort levels in enumerative instantiation,
545
                         which favors speed over fairness [*]
546
  --fs-sum               enumerating tuples of quantifiers by increasing the sum
547
                         of indices, rather than the maximum [*]
548
  --full-saturate-quant  enumerative instantiation: instantiate with ground
549
                         terms from relevant domain, then arbitrary ground terms
550
                         before answering unknown [*]
551
  --full-saturate-quant-limit=N
552
                         maximum number of rounds of enumerative instantiation
553
                         to apply (-1 means no limit)
554
  --full-saturate-quant-rd
555
                         whether to use relevant domain first for enumerative
556
                         instantiation strategy [*]
557
  --global-negate        do global negation of input formula [*]
558
  --ho-elim              eagerly eliminate higher-order constraints [*]
559
  --ho-elim-store-ax     use store axiom during ho-elim [*]
560
  --ho-matching          do higher-order matching algorithm for triggers with
561
                         variable operators [*]
562
  --ho-matching-var-priority
563
                         give priority to variable arguments over constant
564
                         arguments [*]
565
  --ho-merge-term-db     merge term indices modulo equality [*]
566
  --increment-triggers   generate additional triggers as needed during search
567
                         [*]
568
  --inst-level-input-only
569
                         only input terms are assigned instantiation level zero
570
                         [*]
571
  --inst-max-level=N     maximum inst level of terms used to instantiate
572
                         quantified formulas with (-1 == no limit, default)
573
  --inst-max-rounds=N    maximum number of instantiation rounds (-1 == no limit,
574
                         default)
575
  --inst-no-entail       do not consider instances of quantified formulas that
576
                         are currently entailed [*]
577
  --inst-when=MODE       when to apply instantiation
578
  --inst-when-phase=N    instantiation rounds quantifiers takes (>=1) before
579
                         allowing theory combination to happen
580
  --inst-when-strict-interleave
581
                         ensure theory combination and standard quantifier
582
                         effort strategies take turns [*]
583
  --inst-when-tc-first   allow theory combination to happen once initially,
584
                         before quantifier strategies are run [*]
585
  --int-wf-ind           apply strengthening for integers based on well-founded
586
                         induction [*]
587
  --ite-dtt-split-quant  split ites with dt testers as conditions [*]
588
  --ite-lift-quant=MODE  ite lifting mode for quantified formulas
589
  --literal-matching=MODE
590
                         choose literal matching mode
591
  --macros-quant         perform quantifiers macro expansion [*]
592
  --macros-quant-mode=MODE
593
                         mode for quantifiers macro expansion
594
  --mbqi=MODE            choose mode for model-based quantifier instantiation
595
  --mbqi-interleave      interleave model-based quantifier instantiation with
596
                         other techniques [*]
597
  --mbqi-one-inst-per-round
598
                         only add one instantiation per quantifier per round for
599
                         mbqi [*]
600
  --miniscope-quant      miniscope quantifiers [*]
601
  --miniscope-quant-fv   miniscope quantifiers for ground subformulas [*]
602
  --multi-trigger-cache  caching version of multi triggers [*]
603
  --multi-trigger-linear implementation of multi triggers where maximum number
604
                         of instantiations is linear wrt number of ground terms
605
                         [*]
606
  --multi-trigger-priority
607
                         only try multi triggers if single triggers give no
608
                         instantiations [*]
609
  --multi-trigger-when-single
610
                         select multi triggers when single triggers exist [*]
611
  --partial-triggers     use triggers that do not contain all free variables [*]
612
  --pool-inst            pool-based instantiation: instantiate with ground terms
613
                         occurring in user-specified pools [*]
614
  --pre-skolem-quant     apply skolemization eagerly to bodies of quantified
615
                         formulas [*]
616
  --pre-skolem-quant-agg apply skolemization to quantified formulas aggressively
617
                         [*]
618
  --pre-skolem-quant-nested
619
                         apply skolemization to nested quantified formulas [*]
620
  --prenex-quant=MODE    prenex mode for quantified formulas
621
  --prenex-quant-user    prenex quantified formulas with user patterns [*]
622
  --purify-triggers      purify triggers, e.g. f( x+1 ) becomes f( y ), x mapsto
623
                         y-1 [*]
624
  --qcf-all-conflict     add all available conflicting instances during
625
                         conflict-based instantiation [*]
626
  --qcf-eager-check-rd   optimization, eagerly check relevant domain of matched
627
                         position [*]
628
  --qcf-eager-test       optimization, test qcf instances eagerly [*]
629
  --qcf-nested-conflict  consider conflicts for nested quantifiers [*]
630
  --qcf-skip-rd          optimization, skip instances based on possibly
631
                         irrelevant portions of quantified formulas [*]
632
  --qcf-tconstraint      enable entailment checks for t-constraints in qcf
633
                         algorithm [*]
634
  --qcf-vo-exp           qcf experimental variable ordering [*]
635
  --quant-alpha-equiv    infer alpha equivalence between quantified formulas [*]
636
  --quant-cf             enable conflict find mechanism for quantifiers [*]
637
  --quant-cf-mode=MODE   what effort to apply conflict find mechanism
638
  --quant-cf-when=MODE   when to invoke conflict find mechanism for quantifiers
639
  --quant-dsplit-mode=MODE
640
                         mode for dynamic quantifiers splitting
641
  --quant-fun-wd         assume that function defined by quantifiers are well
642
                         defined [*]
643
  --quant-ind            use all available techniques for inductive reasoning
644
                         [*]
645
  --quant-rep-mode=MODE  selection mode for representatives in quantifiers
646
                         engine
647
  --quant-split          apply splitting to quantified formulas based on
648
                         variable disjoint disjuncts [*]
649
  --register-quant-body-terms
650
                         consider ground terms within bodies of quantified
651
                         formulas for matching [*]
652
  --relational-triggers  choose relational triggers such as x = f(y), x >= f(y)
653
                         [*]
654
  --relevant-triggers    prefer triggers that are more relevant based on SInE
655
                         style analysis [*]
656
  --sygus                use sygus solver (default is true for sygus inputs) [*]
657
  --sygus-active-gen=MODE
658
                         mode for actively-generated sygus enumerators
659
  --sygus-active-gen-cfactor=N
660
                         the branching factor for the number of interpreted
661
                         constants to consider for each size when using
662
                         --sygus-active-gen=enum
663
  --sygus-add-const-grammar
664
                         statically add constants appearing in conjecture to
665
                         grammars [*]
666
  --sygus-arg-relevant   static inference techniques for computing whether
667
                         arguments of functions-to-synthesize are relevant [*]
668
  --sygus-auto-unfold    enable approach which automatically unfolds transition
669
                         systems for directly solving invariant synthesis
670
                         problems [*]
671
  --sygus-bool-ite-return-const
672
                         Only use Boolean constants for return values in
673
                         unification-based function synthesis [*]
674
  --sygus-core-connective
675
                         use unsat core analysis to construct Boolean connective
676
                         to sygus conjectures [*]
677
  --sygus-crepair-abort  abort if constant repair techniques are not applicable
678
                         [*]
679
  --sygus-eval-opt       use optimized approach for evaluation in sygus [*]
680
  --sygus-eval-unfold    do unfolding of sygus evaluation functions [*]
681
  --sygus-eval-unfold-bool
682
                         do unfolding of Boolean evaluation functions that
683
                         appear in refinement lemmas [*]
684
  --sygus-expr-miner-check-timeout=N
685
                         timeout (in milliseconds) for satisfiability checks in
686
                         expression miners
687
  --sygus-ext-rew        use extended rewriter for sygus [*]
688
  --sygus-filter-sol=MODE
689
                         mode for filtering sygus solutions
690
  --sygus-filter-sol-rev compute backwards filtering to compute whether previous
691
                         solutions are filtered based on later ones (EXPERTS
692
                         only) [*]
693
  --sygus-grammar-cons=MODE
694
                         mode for SyGuS grammar construction
695
  --sygus-grammar-norm   statically normalize sygus grammars based on flattening
696
                         (linearization) [*]
697
  --sygus-inference      attempt to preprocess arbitrary inputs to sygus
698
                         conjectures [*]
699
  --sygus-inst           Enable SyGuS instantiation quantifiers module [*]
700
  --sygus-inst-mode=MODE select instantiation lemma mode
701
  --sygus-inst-scope=MODE
702
                         select scope of ground terms
703
  --sygus-inst-term-sel=MODE
704
                         granularity for ground terms
705
  --sygus-inv-templ=MODE template mode for sygus invariant synthesis (weaken
706
                         pre-condition, strengthen post-condition, or none)
707
  --sygus-inv-templ-when-sg
708
                         use invariant templates (with solution reconstruction)
709
                         for syntax guided problems [*]
710
  --sygus-min-grammar    statically minimize sygus grammars [*]
711
  --sygus-pbe            enable approach which unifies conditional solutions,
712
                         specialized for programming-by-examples (pbe)
713
                         conjectures [*]
714
  --sygus-pbe-multi-fair when using multiple enumerators, ensure that we only
715
                         register value of minimial term size [*]
716
  --sygus-pbe-multi-fair-diff=N
717
                         when using multiple enumerators, ensure that we only
718
                         register values of minimial term size plus this value
719
                         (default 0)
720
  --sygus-qe-preproc     use quantifier elimination as a preprocessing step for
721
                         sygus [*]
722
  --sygus-query-gen      use sygus to enumerate interesting satisfiability
723
                         queries [*]
724
  --sygus-query-gen-check
725
                         use interesting satisfiability queries to check
726
                         soundness of cvc5 [*]
727
  --sygus-query-gen-dump-files=MODE
728
                         mode for dumping external files corresponding to
729
                         interesting satisfiability queries with sygus-query-gen
730
  --sygus-query-gen-thresh=N
731
                         number of points that we allow to be equal for
732
                         enumerating satisfiable queries with sygus-query-gen
733
  --sygus-rec-fun        enable efficient support for recursive functions in
734
                         sygus grammars [*]
735
  --sygus-rec-fun-eval-limit=N
736
                         use a hard limit for how many times in a given
737
                         evaluator call a recursive function can be evaluated
738
                         (so infinite loops can be avoided)
739
  --sygus-repair-const   use approach to repair constants in sygus candidate
740
                         solutions [*]
741
  --sygus-repair-const-timeout=N
742
                         timeout (in milliseconds) for the satisfiability check
743
                         to repair constants in sygus candidate solutions
744
  --sygus-rr             use sygus to enumerate and verify correctness of
745
                         rewrite rules [*]
746
  --sygus-rr-synth       use sygus to enumerate candidate rewrite rules [*]
747
  --sygus-rr-synth-accel add dynamic symmetry breaking clauses based on
748
                         candidate rewrites [*]
749
  --sygus-rr-synth-check use satisfiability check to verify correctness of
750
                         candidate rewrites [*]
751
  --sygus-rr-synth-filter-cong
752
                         filter candidate rewrites based on congruence [*]
753
  --sygus-rr-synth-filter-match
754
                         filter candidate rewrites based on matching [*]
755
  --sygus-rr-synth-filter-nl
756
                         filter non-linear candidate rewrites [*]
757
  --sygus-rr-synth-filter-order
758
                         filter candidate rewrites based on variable ordering
759
                         [*]
760
  --sygus-rr-synth-input synthesize rewrite rules based on the input formula [*]
761
  --sygus-rr-synth-input-nvars=N
762
                         the maximum number of variables per type that appear in
763
                         rewrites from sygus-rr-synth-input
764
  --sygus-rr-synth-input-use-bool
765
                         synthesize Boolean rewrite rules based on the input
766
                         formula [*]
767
  --sygus-rr-synth-rec   synthesize rewrite rules over all sygus grammar types
768
                         recursively [*]
769
  --sygus-rr-verify      use sygus to verify the correctness of rewrite rules
770
                         via sampling [*]
771
  --sygus-rr-verify-abort
772
                         abort when sygus-rr-verify finds an instance of
773
                         unsoundness [*]
774
  --sygus-sample-fp-uniform
775
                         sample floating-point values uniformly instead of in a
776
                         biased fashion [*]
777
  --sygus-sample-grammar when applicable, use grammar for choosing sample points
778
                         [*]
779
  --sygus-samples=N      number of points to consider when doing sygus rewriter
780
                         sample testing
781
  --sygus-si=MODE        mode for processing single invocation synthesis
782
                         conjectures
783
  --sygus-si-abort       abort if synthesis conjecture is not single invocation
784
                         [*]
785
  --sygus-si-partial     combined techniques for synthesis conjectures that are
786
                         partially single invocation [*]
787
  --sygus-si-rcons=MODE  policy for reconstructing solutions for single
788
                         invocation conjectures
789
  --sygus-si-rcons-limit=N
790
                         number of rounds of enumeration to use during solution
791
                         reconstruction (negative means unlimited)
792
  --sygus-si-reconstruct-const
793
                         include constants when reconstruct solutions for single
794
                         invocation conjectures in original grammar [*]
795
  --sygus-stream         enumerate a stream of solutions instead of terminating
796
                         after the first one [*]
797
  --sygus-templ-embed-grammar
798
                         embed sygus templates into grammars [*]
799
  --sygus-unif-cond-independent-no-repeat-sol
800
                         Do not try repeated solutions when using independent
801
                         synthesis of conditions in unification-based function
802
                         synthesis [*]
803
  --sygus-unif-pi=MODE   mode for synthesis via piecewise-indepedent unification
804
  --sygus-unif-shuffle-cond
805
                         Shuffle condition pool when building solutions (may
806
                         change solutions sizes) [*]
807
  --sygus-verify-inst-max-rounds=N
808
                         maximum number of instantiation rounds for sygus
809
                         verification calls (-1 == no limit, default is 3)
810
  --term-db-cd           register terms in term database based on the SAT
811
                         context [*]
812
  --term-db-mode=MODE    which ground terms to consider for instantiation
813
  --trigger-active-sel=MODE
814
                         selection mode to activate triggers
815
  --trigger-sel=MODE     selection mode for triggers
816
  --user-pat=MODE        policy for handling user-provided patterns for
817
                         quantifier instantiation
818
  --var-elim-quant       enable simple variable elimination for quantified
819
                         formulas [*]
820
  --var-ineq-elim-quant  enable variable elimination based on infinite
821
                         projection of unbound arithmetic variables [*]
822
823
From the Separation Logic Theory module:
824
  --sep-check-neg        check negated spatial assertions [*]
825
  --sep-child-refine     child-specific refinements of negated star, positive
826
                         wand [*]
827
  --sep-deq-c            assume cardinality elements are distinct [*]
828
  --sep-exp              experimental flag for sep [*]
829
  --sep-min-refine       only add refinement lemmas for minimal (innermost)
830
                         assertions [*]
831
  --sep-pre-skolem-emp   eliminate emp constraint at preprocess time [*]
832
833
From the Sets Theory module:
834
  --sets-ext             enable extended symbols such as complement and universe
835
                         in theory of sets [*]
836
  --sets-infer-as-lemmas send inferences as lemmas [*]
837
  --sets-proxy-lemmas    introduce proxy variables eagerly to shorten lemmas [*]
838
839
From the SMT Layer module:
840
  --abstract-values      in models, output arrays (and in future, maybe others)
841
                         using abstract values, as required by the SMT-LIB
842
                         standard [*]
843
  --ackermann            eliminate functions by ackermannization [*]
844
  --block-models=MODE    mode for producing several models
845
  --check-abducts        checks whether produced solutions to get-abduct are
846
                         correct [*]
847
  --check-interpols      checks whether produced solutions to get-interpol are
848
                         correct [*]
849
  --check-models         after SAT/INVALID/UNKNOWN, check that the generated
850
                         model satisfies user assertions [*]
851
  --check-proofs         after UNSAT/VALID, check the generated proof (with
852
                         proof) [*]
853
  --check-synth-sol      checks whether produced solutions to
854
                         functions-to-synthesize satisfy the conjecture [*]
855
  --check-unsat-cores    after UNSAT/VALID, produce and check an unsat core
856
                         (expensive) [*]
857
  --debug-check-models   after SAT/INVALID/UNKNOWN, check that the generated
858
                         model satisfies user and internal assertions [*]
859
  --difficulty-mode=MODE choose output mode for get-difficulty, see
860
                         --difficulty-mode=help
861
  --early-ite-removal    remove ITEs early in preprocessing (EXPERTS only) [*]
862
  --expand-definitions   always expand symbol definitions in output [*]
863
  --ext-rew-prep         use extended rewriter as a preprocessing pass [*]
864
  --ext-rew-prep-agg     use aggressive extended rewriter as a preprocessing
865
                         pass [*]
866
  --foreign-theory-rewrite
867
                         Cross-theory rewrites [*]
868
  --ite-simp             turn on ite simplification (Kim (and Somenzi) et al.,
869
                         SAT 2009) [*]
870
  --learned-rewrite      rewrite the input based on learned literals [*]
871
  --minimal-unsat-cores  if an unsat core is produced, it is reduced to a
872
                         minimal unsat core [*]
873
  --model-cores=MODE     mode for producing model cores
874
  --model-u-print=MODE | --model-uninterp-print=MODE
875
                         determines how to print uninterpreted elements in
876
                         models
877
  --model-witness-value  in models, use a witness constant for choice functions
878
                         [*]
879
  --on-repeat-ite-simp   do the ite simplification pass again if repeating
880
                         simplification [*]
881
  --produce-assignments  support the get-assignment command [*]
882
  --produce-difficulty   enable tracking of difficulty. [*]
883
  --produce-proofs       produce proofs, support check-proofs and get-proof [*]
884
  --produce-unsat-assumptions
885
                         turn on unsat assumptions generation [*]
886
  --produce-unsat-cores  turn on unsat core generation. Unless otherwise
887
                         specified, cores will be produced using SAT soving
888
                         under assumptions and preprocessing proofs. [*]
889
  --repeat-simp          make multiple passes with nonclausal simplifier [*]
890
  --simp-ite-compress    enables compressing ites after ite simplification [*]
891
  --simp-ite-hunt-zombies=N
892
                         post ite compression enables zombie removal while the
893
                         number of nodes is above this threshold
894
  --simp-with-care       enables simplifyWithCare in ite simplificiation [*]
895
  --simplification=MODE | --simplification-mode=MODE
896
                         choose simplification mode, see --simplification=help
897
  --sort-inference       calculate sort inference of input problem, convert the
898
                         input based on monotonic sorts [*]
899
  --static-learning      use static learning (on by default) [*]
900
  --sygus-out=MODE       output mode for sygus
901
  --sygus-print-callbacks
902
                         use sygus print callbacks to print sygus terms in the
903
                         user-provided form (disable for debugging) [*]
904
  --unconstrained-simp   turn on unconstrained simplification (see
905
                         Bruttomesso/Brummayer PhD thesis). Fully supported only
906
                         in (subsets of) the logic QF_ABV. [*]
907
  --unsat-cores-mode=MODE
908
                         choose unsat core mode, see --unsat-cores-mode=help
909
910
From the Strings Theory module:
911
  --re-elim              elimination techniques for regular expressions [*]
912
  --re-elim-agg          aggressive elimination techniques for regular
913
                         expressions [*]
914
  --re-inter-mode=MODE   determines which regular expressions intersections to
915
                         compute (EXPERTS only)
916
  --strings-check-entail-len
917
                         check entailment between length terms to reduce
918
                         splitting [*]
919
  --strings-eager        strings eager check [*]
920
  --strings-eager-eval   perform eager context-dependent evaluation for
921
                         applications of string kinds [*]
922
  --strings-eager-len    strings eager length lemmas [*]
923
  --strings-exp          experimental features in the theory of strings [*]
924
  --strings-ff           do flat form inferences [*]
925
  --strings-fmf          the finite model finding used by the theory of strings
926
                         [*]
927
  --strings-guess-model  use model guessing to avoid string extended function
928
                         reductions [*]
929
  --strings-infer-as-lemmas
930
                         always send lemmas out instead of making internal
931
                         inferences [*]
932
  --strings-infer-sym    strings split on empty string [*]
933
  --strings-lazy-pp      perform string preprocessing lazily [*]
934
  --strings-len-norm     strings length normalization lemma [*]
935
  --strings-lprop-csp    do length propagation based on constant splits [*]
936
  --strings-min-prefix-explain
937
                         minimize explanations for prefix of normal forms in
938
                         strings [*]
939
  --strings-process-loop-mode=MODE
940
                         determines how to process looping string equations
941
                         (EXPERTS only)
942
  --strings-rexplain-lemmas
943
                         regression explanations for string lemmas [*]
944
  --strings-unified-vspt use a single skolem for the variable splitting rule [*]
945
946
From the Theory Layer module:
947
  --assign-function-values
948
                         assign values for uninterpreted functions in models [*]
949
  --condense-function-values
950
                         condense values for functions in models rather than
951
                         explicitly representing them [*]
952
  --ee-mode=MODE         mode for managing equalities across theory solvers
953
                         (EXPERTS only)
954
  --relevance-filter     enable analysis of relevance of asserted literals with
955
                         respect to the input formula [*]
956
  --tc-mode=MODE         mode for theory combination (EXPERTS only)
957
  --theoryof-mode=MODE   mode for Theory::theoryof() (EXPERTS only)
958
959
From the Uninterpreted Functions Theory module:
960
  --symmetry-breaker | --uf-symmetry-breaker
961
                         use UF symmetry breaker (Deharbe et al., CADE 2011) [*]
962
  --uf-ho                enable support for higher-order reasoning [*]
963
  --uf-ho-ext            apply extensionality on function symbols [*]
964
  --uf-ss=MODE           mode of operation for uf with cardinality solver.
965
  --uf-ss-abort-card=N   tells the uf with cardinality to only consider models
966
                         that interpret uninterpreted sorts of cardinality at
967
                         most N (-1 == no limit, default)
968
  --uf-ss-fair           use fair strategy for finite model finding multiple
969
                         sorts [*]
970
  --uf-ss-fair-monotone  group monotone sorts when enforcing fairness for finite
971
                         model finding [*]
972
  --uf-ss-totality-limited=N
973
                         apply totality axioms, but only up to cardinality N (-1
974
                         == do not apply totality axioms, default)
975
  --uf-ss-totality-sym-break
976
                         apply symmetry breaking for totality axioms [*]
977
)FOOBAR";
978
979
19711
static const std::string optionsFootnote = "\n\
980
[*] Each of these options has a --no-OPTIONNAME variant, which reverses the\n\
981
    sense of the option.\n\
982
";
983
984
19711
static const std::string languageDescription =
985
    "\
986
Languages currently supported as arguments to the -L / --lang option:\n\
987
  auto                           attempt to automatically determine language\n\
988
  cvc | presentation | pl        CVC presentation language\n\
989
  smt | smtlib | smt2 |\n\
990
  smt2.6 | smtlib2.6             SMT-LIB format 2.6 with support for the strings standard\n\
991
  tptp                           TPTP format (cnf, fof and tff)\n\
992
  sygus | sygus2                 SyGuS version 2.0\n\
993
\n\
994
Languages currently supported as arguments to the --output-lang option:\n\
995
  auto                           match output language to input language\n\
996
  cvc | presentation | pl        CVC presentation language\n\
997
  smt | smtlib | smt2 |\n\
998
  smt2.6 | smtlib2.6             SMT-LIB format 2.6 with support for the strings standard\n\
999
  tptp                           TPTP format\n\
1000
  ast                            internal format (simple syntax trees)\n\
1001
";
1002
// clang-format on
1003
1004
void printUsage(const std::string& msg, std::ostream& os)
1005
{
1006
  os << msg << "\n"
1007
     << commonOptionsDescription << "\n\n"
1008
     << additionalOptionsDescription << std::endl
1009
     << optionsFootnote << std::endl;
1010
}
1011
1012
void printShortUsage(const std::string& msg, std::ostream& os)
1013
{
1014
  os << msg << "\n"
1015
     << commonOptionsDescription << std::endl
1016
     << optionsFootnote << std::endl
1017
     << "For full usage, please use --help." << std::endl
1018
     << std::endl;
1019
}
1020
1021
void printLanguageHelp(std::ostream& os)
1022
{
1023
  os << languageDescription << std::flush;
1024
}
1025
1026
/**
1027
 * This is a table of long options.  By policy, each short option
1028
 * should have an equivalent long option (but the reverse isn't the
1029
 * case), so this table should thus contain all command-line options.
1030
 *
1031
 * Each option in this array has four elements:
1032
 *
1033
 * 1. the long option string
1034
 * 2. argument behavior for the option:
1035
 *    no_argument - no argument permitted
1036
 *    required_argument - an argument is expected
1037
 *    optional_argument - an argument is permitted but not required
1038
 * 3. this is a pointer to an int which is set to the 4th entry of the
1039
 *    array if the option is present; or nullptr, in which case
1040
 *    getopt_long() returns the 4th entry
1041
 * 4. the return value for getopt_long() when this long option (or the
1042
 *    value to set the 3rd entry to; see #3)
1043
 */
1044
static struct option cmdlineOptions[] = {
1045
// clang-format off
1046
  { "approx-branch-depth", required_argument, nullptr, 256 },
1047
  { "arith-brab", no_argument, nullptr, 257 },
1048
  { "no-arith-brab", no_argument, nullptr, 258 },
1049
  { "arith-cong-man", no_argument, nullptr, 259 },
1050
  { "no-arith-cong-man", no_argument, nullptr, 260 },
1051
  { "arith-eq-solver", no_argument, nullptr, 261 },
1052
  { "no-arith-eq-solver", no_argument, nullptr, 262 },
1053
  { "arith-no-partial-fun", no_argument, nullptr, 263 },
1054
  { "no-arith-no-partial-fun", no_argument, nullptr, 264 },
1055
  { "arith-prop", required_argument, nullptr, 265 },
1056
  { "arith-prop-clauses", required_argument, nullptr, 266 },
1057
  { "arith-rewrite-equalities", no_argument, nullptr, 267 },
1058
  { "no-arith-rewrite-equalities", no_argument, nullptr, 268 },
1059
  { "collect-pivot-stats", no_argument, nullptr, 269 },
1060
  { "no-collect-pivot-stats", no_argument, nullptr, 270 },
1061
  { "cut-all-bounded", no_argument, nullptr, 271 },
1062
  { "no-cut-all-bounded", no_argument, nullptr, 272 },
1063
  { "dio-decomps", no_argument, nullptr, 273 },
1064
  { "no-dio-decomps", no_argument, nullptr, 274 },
1065
  { "dio-repeat", no_argument, nullptr, 275 },
1066
  { "no-dio-repeat", no_argument, nullptr, 276 },
1067
  { "dio-solver", no_argument, nullptr, 277 },
1068
  { "no-dio-solver", no_argument, nullptr, 278 },
1069
  { "dio-turns", required_argument, nullptr, 279 },
1070
  { "error-selection-rule", required_argument, nullptr, 280 },
1071
  { "fc-penalties", no_argument, nullptr, 281 },
1072
  { "no-fc-penalties", no_argument, nullptr, 282 },
1073
  { "heuristic-pivots", required_argument, nullptr, 283 },
1074
  { "lemmas-on-replay-failure", no_argument, nullptr, 284 },
1075
  { "no-lemmas-on-replay-failure", no_argument, nullptr, 285 },
1076
  { "maxCutsInContext", required_argument, nullptr, 286 },
1077
  { "miplib-trick", no_argument, nullptr, 287 },
1078
  { "no-miplib-trick", no_argument, nullptr, 288 },
1079
  { "miplib-trick-subs", required_argument, nullptr, 289 },
1080
  { "new-prop", no_argument, nullptr, 290 },
1081
  { "no-new-prop", no_argument, nullptr, 291 },
1082
  { "nl-cad", no_argument, nullptr, 292 },
1083
  { "no-nl-cad", no_argument, nullptr, 293 },
1084
  { "nl-cad-initial", no_argument, nullptr, 294 },
1085
  { "no-nl-cad-initial", no_argument, nullptr, 295 },
1086
  { "nl-cad-lift", required_argument, nullptr, 296 },
1087
  { "nl-cad-proj", required_argument, nullptr, 297 },
1088
  { "nl-ext", required_argument, nullptr, 298 },
1089
  { "nl-ext-ent-conf", no_argument, nullptr, 299 },
1090
  { "no-nl-ext-ent-conf", no_argument, nullptr, 300 },
1091
  { "nl-ext-factor", no_argument, nullptr, 301 },
1092
  { "no-nl-ext-factor", no_argument, nullptr, 302 },
1093
  { "nl-ext-inc-prec", no_argument, nullptr, 303 },
1094
  { "no-nl-ext-inc-prec", no_argument, nullptr, 304 },
1095
  { "nl-ext-purify", no_argument, nullptr, 305 },
1096
  { "no-nl-ext-purify", no_argument, nullptr, 306 },
1097
  { "nl-ext-rbound", no_argument, nullptr, 307 },
1098
  { "no-nl-ext-rbound", no_argument, nullptr, 308 },
1099
  { "nl-ext-rewrite", no_argument, nullptr, 309 },
1100
  { "no-nl-ext-rewrite", no_argument, nullptr, 310 },
1101
  { "nl-ext-split-zero", no_argument, nullptr, 311 },
1102
  { "no-nl-ext-split-zero", no_argument, nullptr, 312 },
1103
  { "nl-ext-tf-taylor-deg", required_argument, nullptr, 313 },
1104
  { "nl-ext-tf-tplanes", no_argument, nullptr, 314 },
1105
  { "no-nl-ext-tf-tplanes", no_argument, nullptr, 315 },
1106
  { "nl-ext-tplanes", no_argument, nullptr, 316 },
1107
  { "no-nl-ext-tplanes", no_argument, nullptr, 317 },
1108
  { "nl-ext-tplanes-interleave", no_argument, nullptr, 318 },
1109
  { "no-nl-ext-tplanes-interleave", no_argument, nullptr, 319 },
1110
  { "nl-icp", no_argument, nullptr, 320 },
1111
  { "no-nl-icp", no_argument, nullptr, 321 },
1112
  { "nl-rlv", required_argument, nullptr, 322 },
1113
  { "nl-rlv-assert-bounds", no_argument, nullptr, 323 },
1114
  { "no-nl-rlv-assert-bounds", no_argument, nullptr, 324 },
1115
  { "pb-rewrites", no_argument, nullptr, 325 },
1116
  { "no-pb-rewrites", no_argument, nullptr, 326 },
1117
  { "pivot-threshold", required_argument, nullptr, 327 },
1118
  { "pp-assert-max-sub-size", required_argument, nullptr, 328 },
1119
  { "prop-row-length", required_argument, nullptr, 329 },
1120
  { "replay-early-close-depth", required_argument, nullptr, 330 },
1121
  { "replay-failure-penalty", required_argument, nullptr, 331 },
1122
  { "replay-lemma-reject-cut", required_argument, nullptr, 332 },
1123
  { "replay-num-err-penalty", required_argument, nullptr, 333 },
1124
  { "replay-reject-cut", required_argument, nullptr, 334 },
1125
  { "replay-soi-major-threshold", required_argument, nullptr, 335 },
1126
  { "replay-soi-major-threshold-pen", required_argument, nullptr, 336 },
1127
  { "replay-soi-minor-threshold", required_argument, nullptr, 337 },
1128
  { "replay-soi-minor-threshold-pen", required_argument, nullptr, 338 },
1129
  { "restrict-pivots", no_argument, nullptr, 339 },
1130
  { "no-restrict-pivots", no_argument, nullptr, 340 },
1131
  { "revert-arith-models-on-unsat", no_argument, nullptr, 341 },
1132
  { "no-revert-arith-models-on-unsat", no_argument, nullptr, 342 },
1133
  { "rr-turns", required_argument, nullptr, 343 },
1134
  { "se-solve-int", no_argument, nullptr, 344 },
1135
  { "no-se-solve-int", no_argument, nullptr, 345 },
1136
  { "simplex-check-period", required_argument, nullptr, 346 },
1137
  { "soi-qe", no_argument, nullptr, 347 },
1138
  { "no-soi-qe", no_argument, nullptr, 348 },
1139
  { "standard-effort-variable-order-pivots", required_argument, nullptr, 349 },
1140
  { "unate-lemmas", required_argument, nullptr, 350 },
1141
  { "use-approx", no_argument, nullptr, 351 },
1142
  { "no-use-approx", no_argument, nullptr, 352 },
1143
  { "use-fcsimplex", no_argument, nullptr, 353 },
1144
  { "no-use-fcsimplex", no_argument, nullptr, 354 },
1145
  { "use-soi", no_argument, nullptr, 355 },
1146
  { "no-use-soi", no_argument, nullptr, 356 },
1147
  { "arrays-config", required_argument, nullptr, 357 },
1148
  { "arrays-eager-index", no_argument, nullptr, 358 },
1149
  { "no-arrays-eager-index", no_argument, nullptr, 359 },
1150
  { "arrays-eager-lemmas", no_argument, nullptr, 360 },
1151
  { "no-arrays-eager-lemmas", no_argument, nullptr, 361 },
1152
  { "arrays-exp", no_argument, nullptr, 362 },
1153
  { "no-arrays-exp", no_argument, nullptr, 363 },
1154
  { "arrays-model-based", no_argument, nullptr, 364 },
1155
  { "no-arrays-model-based", no_argument, nullptr, 365 },
1156
  { "arrays-optimize-linear", no_argument, nullptr, 366 },
1157
  { "no-arrays-optimize-linear", no_argument, nullptr, 367 },
1158
  { "arrays-prop", required_argument, nullptr, 368 },
1159
  { "arrays-reduce-sharing", no_argument, nullptr, 369 },
1160
  { "no-arrays-reduce-sharing", no_argument, nullptr, 370 },
1161
  { "arrays-weak-equiv", no_argument, nullptr, 371 },
1162
  { "no-arrays-weak-equiv", no_argument, nullptr, 372 },
1163
  { "debug", required_argument, nullptr, 373 },
1164
  { "err", required_argument, nullptr, 374 },
1165
  { "diagnostic-output-channel", required_argument, nullptr, 375 },
1166
  { "in", required_argument, nullptr, 376 },
1167
  { "incremental", no_argument, nullptr, 377 },
1168
  { "no-incremental", no_argument, nullptr, 378 },
1169
  { "lang", required_argument, nullptr, 379 },
1170
  { "input-language", required_argument, nullptr, 380 },
1171
  { "language-help", no_argument, nullptr, 381 },
1172
  { "no-language-help", no_argument, nullptr, 382 },
1173
  { "out", required_argument, nullptr, 383 },
1174
  { "regular-output-channel", required_argument, nullptr, 384 },
1175
  { "output", required_argument, nullptr, 385 },
1176
  { "output-lang", required_argument, nullptr, 386 },
1177
  { "output-language", required_argument, nullptr, 387 },
1178
  { "parse-only", no_argument, nullptr, 388 },
1179
  { "no-parse-only", no_argument, nullptr, 389 },
1180
  { "preprocess-only", no_argument, nullptr, 390 },
1181
  { "no-preprocess-only", no_argument, nullptr, 391 },
1182
  { "print-success", no_argument, nullptr, 392 },
1183
  { "no-print-success", no_argument, nullptr, 393 },
1184
  { "quiet", no_argument, nullptr, 394 },
1185
  { "rlimit", required_argument, nullptr, 395 },
1186
  { "rlimit-per", required_argument, nullptr, 396 },
1187
  { "reproducible-resource-limit", required_argument, nullptr, 397 },
1188
  { "rweight", required_argument, nullptr, 398 },
1189
  { "stats", no_argument, nullptr, 399 },
1190
  { "no-stats", no_argument, nullptr, 400 },
1191
  { "stats-all", no_argument, nullptr, 401 },
1192
  { "no-stats-all", no_argument, nullptr, 402 },
1193
  { "stats-every-query", no_argument, nullptr, 403 },
1194
  { "no-stats-every-query", no_argument, nullptr, 404 },
1195
  { "stats-expert", no_argument, nullptr, 405 },
1196
  { "no-stats-expert", no_argument, nullptr, 406 },
1197
  { "tlimit", required_argument, nullptr, 407 },
1198
  { "tlimit-per", required_argument, nullptr, 408 },
1199
  { "trace", required_argument, nullptr, 409 },
1200
  { "verbose", no_argument, nullptr, 410 },
1201
  { "verbosity", required_argument, nullptr, 411 },
1202
  { "bitblast", required_argument, nullptr, 412 },
1203
  { "bitblast-aig", no_argument, nullptr, 413 },
1204
  { "no-bitblast-aig", no_argument, nullptr, 414 },
1205
  { "bitwise-eq", no_argument, nullptr, 415 },
1206
  { "no-bitwise-eq", no_argument, nullptr, 416 },
1207
  { "bool-to-bv", required_argument, nullptr, 417 },
1208
  { "bv-abstraction", no_argument, nullptr, 418 },
1209
  { "no-bv-abstraction", no_argument, nullptr, 419 },
1210
  { "bv-aig-simp", required_argument, nullptr, 420 },
1211
  { "bv-alg-extf", no_argument, nullptr, 421 },
1212
  { "no-bv-alg-extf", no_argument, nullptr, 422 },
1213
  { "bv-algebraic-budget", required_argument, nullptr, 423 },
1214
  { "bv-algebraic-solver", no_argument, nullptr, 424 },
1215
  { "no-bv-algebraic-solver", no_argument, nullptr, 425 },
1216
  { "bv-assert-input", no_argument, nullptr, 426 },
1217
  { "no-bv-assert-input", no_argument, nullptr, 427 },
1218
  { "bv-eager-explanations", no_argument, nullptr, 428 },
1219
  { "no-bv-eager-explanations", no_argument, nullptr, 429 },
1220
  { "bv-eq-solver", no_argument, nullptr, 430 },
1221
  { "no-bv-eq-solver", no_argument, nullptr, 431 },
1222
  { "bv-extract-arith", no_argument, nullptr, 432 },
1223
  { "no-bv-extract-arith", no_argument, nullptr, 433 },
1224
  { "bv-gauss-elim", no_argument, nullptr, 434 },
1225
  { "no-bv-gauss-elim", no_argument, nullptr, 435 },
1226
  { "bv-inequality-solver", no_argument, nullptr, 436 },
1227
  { "no-bv-inequality-solver", no_argument, nullptr, 437 },
1228
  { "bv-intro-pow2", no_argument, nullptr, 438 },
1229
  { "no-bv-intro-pow2", no_argument, nullptr, 439 },
1230
  { "bv-num-func", required_argument, nullptr, 440 },
1231
  { "bv-print-consts-as-indexed-symbols", no_argument, nullptr, 441 },
1232
  { "no-bv-print-consts-as-indexed-symbols", no_argument, nullptr, 442 },
1233
  { "bv-propagate", no_argument, nullptr, 443 },
1234
  { "no-bv-propagate", no_argument, nullptr, 444 },
1235
  { "bv-quick-xplain", no_argument, nullptr, 445 },
1236
  { "no-bv-quick-xplain", no_argument, nullptr, 446 },
1237
  { "bv-sat-solver", required_argument, nullptr, 447 },
1238
  { "bv-skolemize", no_argument, nullptr, 448 },
1239
  { "no-bv-skolemize", no_argument, nullptr, 449 },
1240
  { "bv-solver", required_argument, nullptr, 450 },
1241
  { "bv-to-bool", no_argument, nullptr, 451 },
1242
  { "no-bv-to-bool", no_argument, nullptr, 452 },
1243
  { "cdt-bisimilar", no_argument, nullptr, 453 },
1244
  { "no-cdt-bisimilar", no_argument, nullptr, 454 },
1245
  { "dt-binary-split", no_argument, nullptr, 455 },
1246
  { "no-dt-binary-split", no_argument, nullptr, 456 },
1247
  { "dt-blast-splits", no_argument, nullptr, 457 },
1248
  { "no-dt-blast-splits", no_argument, nullptr, 458 },
1249
  { "dt-cyclic", no_argument, nullptr, 459 },
1250
  { "no-dt-cyclic", no_argument, nullptr, 460 },
1251
  { "dt-force-assignment", no_argument, nullptr, 461 },
1252
  { "no-dt-force-assignment", no_argument, nullptr, 462 },
1253
  { "dt-infer-as-lemmas", no_argument, nullptr, 463 },
1254
  { "no-dt-infer-as-lemmas", no_argument, nullptr, 464 },
1255
  { "dt-nested-rec", no_argument, nullptr, 465 },
1256
  { "no-dt-nested-rec", no_argument, nullptr, 466 },
1257
  { "dt-polite-optimize", no_argument, nullptr, 467 },
1258
  { "no-dt-polite-optimize", no_argument, nullptr, 468 },
1259
  { "dt-rewrite-error-sel", no_argument, nullptr, 469 },
1260
  { "no-dt-rewrite-error-sel", no_argument, nullptr, 470 },
1261
  { "dt-share-sel", no_argument, nullptr, 471 },
1262
  { "no-dt-share-sel", no_argument, nullptr, 472 },
1263
  { "sygus-abort-size", required_argument, nullptr, 473 },
1264
  { "sygus-fair", required_argument, nullptr, 474 },
1265
  { "sygus-fair-max", no_argument, nullptr, 475 },
1266
  { "no-sygus-fair-max", no_argument, nullptr, 476 },
1267
  { "sygus-sym-break", no_argument, nullptr, 477 },
1268
  { "no-sygus-sym-break", no_argument, nullptr, 478 },
1269
  { "sygus-sym-break-agg", no_argument, nullptr, 479 },
1270
  { "no-sygus-sym-break-agg", no_argument, nullptr, 480 },
1271
  { "sygus-sym-break-dynamic", no_argument, nullptr, 481 },
1272
  { "no-sygus-sym-break-dynamic", no_argument, nullptr, 482 },
1273
  { "sygus-sym-break-lazy", no_argument, nullptr, 483 },
1274
  { "no-sygus-sym-break-lazy", no_argument, nullptr, 484 },
1275
  { "sygus-sym-break-pbe", no_argument, nullptr, 485 },
1276
  { "no-sygus-sym-break-pbe", no_argument, nullptr, 486 },
1277
  { "sygus-sym-break-rlv", no_argument, nullptr, 487 },
1278
  { "no-sygus-sym-break-rlv", no_argument, nullptr, 488 },
1279
  { "decision", required_argument, nullptr, 489 },
1280
  { "decision-mode", required_argument, nullptr, 490 },
1281
  { "decision-random-weight", required_argument, nullptr, 491 },
1282
  { "decision-threshold", required_argument, nullptr, 492 },
1283
  { "decision-use-weight", no_argument, nullptr, 493 },
1284
  { "no-decision-use-weight", no_argument, nullptr, 494 },
1285
  { "decision-weight-internal", required_argument, nullptr, 495 },
1286
  { "jh-rlv-order", no_argument, nullptr, 496 },
1287
  { "no-jh-rlv-order", no_argument, nullptr, 497 },
1288
  { "jh-skolem", required_argument, nullptr, 498 },
1289
  { "jh-skolem-rlv", required_argument, nullptr, 499 },
1290
  { "dag-thresh", required_argument, nullptr, 500 },
1291
  { "expr-depth", required_argument, nullptr, 501 },
1292
  { "type-checking", no_argument, nullptr, 502 },
1293
  { "no-type-checking", no_argument, nullptr, 503 },
1294
  { "fp-exp", no_argument, nullptr, 504 },
1295
  { "no-fp-exp", no_argument, nullptr, 505 },
1296
  { "fp-lazy-wb", no_argument, nullptr, 506 },
1297
  { "no-fp-lazy-wb", no_argument, nullptr, 507 },
1298
  { "copyright", no_argument, nullptr, 508 },
1299
  { "dump-difficulty", no_argument, nullptr, 509 },
1300
  { "no-dump-difficulty", no_argument, nullptr, 510 },
1301
  { "dump-instantiations", no_argument, nullptr, 511 },
1302
  { "no-dump-instantiations", no_argument, nullptr, 512 },
1303
  { "dump-instantiations-debug", no_argument, nullptr, 513 },
1304
  { "no-dump-instantiations-debug", no_argument, nullptr, 514 },
1305
  { "dump-models", no_argument, nullptr, 515 },
1306
  { "no-dump-models", no_argument, nullptr, 516 },
1307
  { "dump-proofs", no_argument, nullptr, 517 },
1308
  { "no-dump-proofs", no_argument, nullptr, 518 },
1309
  { "dump-unsat-cores", no_argument, nullptr, 519 },
1310
  { "no-dump-unsat-cores", no_argument, nullptr, 520 },
1311
  { "dump-unsat-cores-full", no_argument, nullptr, 521 },
1312
  { "no-dump-unsat-cores-full", no_argument, nullptr, 522 },
1313
  { "early-exit", no_argument, nullptr, 523 },
1314
  { "no-early-exit", no_argument, nullptr, 524 },
1315
  { "filename", required_argument, nullptr, 525 },
1316
  { "force-no-limit-cpu-while-dump", no_argument, nullptr, 526 },
1317
  { "no-force-no-limit-cpu-while-dump", no_argument, nullptr, 527 },
1318
  { "help", no_argument, nullptr, 528 },
1319
  { "interactive", no_argument, nullptr, 529 },
1320
  { "no-interactive", no_argument, nullptr, 530 },
1321
  { "seed", required_argument, nullptr, 531 },
1322
  { "segv-spin", no_argument, nullptr, 532 },
1323
  { "no-segv-spin", no_argument, nullptr, 533 },
1324
  { "show-config", no_argument, nullptr, 534 },
1325
  { "show-debug-tags", no_argument, nullptr, 535 },
1326
  { "show-trace-tags", no_argument, nullptr, 536 },
1327
  { "version", no_argument, nullptr, 537 },
1328
  { "filesystem-access", no_argument, nullptr, 538 },
1329
  { "no-filesystem-access", no_argument, nullptr, 539 },
1330
  { "force-logic", required_argument, nullptr, 540 },
1331
  { "global-declarations", no_argument, nullptr, 541 },
1332
  { "no-global-declarations", no_argument, nullptr, 542 },
1333
  { "mmap", no_argument, nullptr, 543 },
1334
  { "no-mmap", no_argument, nullptr, 544 },
1335
  { "semantic-checks", no_argument, nullptr, 545 },
1336
  { "no-semantic-checks", no_argument, nullptr, 546 },
1337
  { "strict-parsing", no_argument, nullptr, 547 },
1338
  { "no-strict-parsing", no_argument, nullptr, 548 },
1339
  { "flatten-ho-chains", no_argument, nullptr, 549 },
1340
  { "no-flatten-ho-chains", no_argument, nullptr, 550 },
1341
  { "model-format", required_argument, nullptr, 551 },
1342
  { "print-inst", required_argument, nullptr, 552 },
1343
  { "print-inst-full", no_argument, nullptr, 553 },
1344
  { "no-print-inst-full", no_argument, nullptr, 554 },
1345
  { "proof-check", required_argument, nullptr, 555 },
1346
  { "proof-format-mode", required_argument, nullptr, 556 },
1347
  { "proof-granularity", required_argument, nullptr, 557 },
1348
  { "proof-pedantic", required_argument, nullptr, 558 },
1349
  { "proof-pp-merge", no_argument, nullptr, 559 },
1350
  { "no-proof-pp-merge", no_argument, nullptr, 560 },
1351
  { "proof-print-conclusion", no_argument, nullptr, 561 },
1352
  { "no-proof-print-conclusion", no_argument, nullptr, 562 },
1353
  { "minisat-dump-dimacs", no_argument, nullptr, 563 },
1354
  { "no-minisat-dump-dimacs", no_argument, nullptr, 564 },
1355
  { "minisat-elimination", no_argument, nullptr, 565 },
1356
  { "no-minisat-elimination", no_argument, nullptr, 566 },
1357
  { "random-freq", required_argument, nullptr, 567 },
1358
  { "random-frequency", required_argument, nullptr, 568 },
1359
  { "random-seed", required_argument, nullptr, 569 },
1360
  { "refine-conflicts", no_argument, nullptr, 570 },
1361
  { "no-refine-conflicts", no_argument, nullptr, 571 },
1362
  { "restart-int-base", required_argument, nullptr, 572 },
1363
  { "restart-int-inc", required_argument, nullptr, 573 },
1364
  { "ag-miniscope-quant", no_argument, nullptr, 574 },
1365
  { "no-ag-miniscope-quant", no_argument, nullptr, 575 },
1366
  { "cegis-sample", required_argument, nullptr, 576 },
1367
  { "cegqi", no_argument, nullptr, 577 },
1368
  { "no-cegqi", no_argument, nullptr, 578 },
1369
  { "cegqi-all", no_argument, nullptr, 579 },
1370
  { "no-cegqi-all", no_argument, nullptr, 580 },
1371
  { "cegqi-bv", no_argument, nullptr, 581 },
1372
  { "no-cegqi-bv", no_argument, nullptr, 582 },
1373
  { "cegqi-bv-concat-inv", no_argument, nullptr, 583 },
1374
  { "no-cegqi-bv-concat-inv", no_argument, nullptr, 584 },
1375
  { "cegqi-bv-ineq", required_argument, nullptr, 585 },
1376
  { "cegqi-bv-interleave-value", no_argument, nullptr, 586 },
1377
  { "no-cegqi-bv-interleave-value", no_argument, nullptr, 587 },
1378
  { "cegqi-bv-linear", no_argument, nullptr, 588 },
1379
  { "no-cegqi-bv-linear", no_argument, nullptr, 589 },
1380
  { "cegqi-bv-rm-extract", no_argument, nullptr, 590 },
1381
  { "no-cegqi-bv-rm-extract", no_argument, nullptr, 591 },
1382
  { "cegqi-bv-solve-nl", no_argument, nullptr, 592 },
1383
  { "no-cegqi-bv-solve-nl", no_argument, nullptr, 593 },
1384
  { "cegqi-full", no_argument, nullptr, 594 },
1385
  { "no-cegqi-full", no_argument, nullptr, 595 },
1386
  { "cegqi-innermost", no_argument, nullptr, 596 },
1387
  { "no-cegqi-innermost", no_argument, nullptr, 597 },
1388
  { "cegqi-midpoint", no_argument, nullptr, 598 },
1389
  { "no-cegqi-midpoint", no_argument, nullptr, 599 },
1390
  { "cegqi-min-bounds", no_argument, nullptr, 600 },
1391
  { "no-cegqi-min-bounds", no_argument, nullptr, 601 },
1392
  { "cegqi-model", no_argument, nullptr, 602 },
1393
  { "no-cegqi-model", no_argument, nullptr, 603 },
1394
  { "cegqi-multi-inst", no_argument, nullptr, 604 },
1395
  { "no-cegqi-multi-inst", no_argument, nullptr, 605 },
1396
  { "cegqi-nested-qe", no_argument, nullptr, 606 },
1397
  { "no-cegqi-nested-qe", no_argument, nullptr, 607 },
1398
  { "cegqi-nopt", no_argument, nullptr, 608 },
1399
  { "no-cegqi-nopt", no_argument, nullptr, 609 },
1400
  { "cegqi-repeat-lit", no_argument, nullptr, 610 },
1401
  { "no-cegqi-repeat-lit", no_argument, nullptr, 611 },
1402
  { "cegqi-round-up-lia", no_argument, nullptr, 612 },
1403
  { "no-cegqi-round-up-lia", no_argument, nullptr, 613 },
1404
  { "cegqi-sat", no_argument, nullptr, 614 },
1405
  { "no-cegqi-sat", no_argument, nullptr, 615 },
1406
  { "cegqi-use-inf-int", no_argument, nullptr, 616 },
1407
  { "no-cegqi-use-inf-int", no_argument, nullptr, 617 },
1408
  { "cegqi-use-inf-real", no_argument, nullptr, 618 },
1409
  { "no-cegqi-use-inf-real", no_argument, nullptr, 619 },
1410
  { "cond-var-split-agg-quant", no_argument, nullptr, 620 },
1411
  { "no-cond-var-split-agg-quant", no_argument, nullptr, 621 },
1412
  { "cond-var-split-quant", no_argument, nullptr, 622 },
1413
  { "no-cond-var-split-quant", no_argument, nullptr, 623 },
1414
  { "conjecture-filter-active-terms", no_argument, nullptr, 624 },
1415
  { "no-conjecture-filter-active-terms", no_argument, nullptr, 625 },
1416
  { "conjecture-filter-canonical", no_argument, nullptr, 626 },
1417
  { "no-conjecture-filter-canonical", no_argument, nullptr, 627 },
1418
  { "conjecture-filter-model", no_argument, nullptr, 628 },
1419
  { "no-conjecture-filter-model", no_argument, nullptr, 629 },
1420
  { "conjecture-gen", no_argument, nullptr, 630 },
1421
  { "no-conjecture-gen", no_argument, nullptr, 631 },
1422
  { "conjecture-gen-gt-enum", required_argument, nullptr, 632 },
1423
  { "conjecture-gen-max-depth", required_argument, nullptr, 633 },
1424
  { "conjecture-gen-per-round", required_argument, nullptr, 634 },
1425
  { "conjecture-gen-uee-intro", no_argument, nullptr, 635 },
1426
  { "no-conjecture-gen-uee-intro", no_argument, nullptr, 636 },
1427
  { "conjecture-no-filter", no_argument, nullptr, 637 },
1428
  { "no-conjecture-no-filter", no_argument, nullptr, 638 },
1429
  { "dt-stc-ind", no_argument, nullptr, 639 },
1430
  { "no-dt-stc-ind", no_argument, nullptr, 640 },
1431
  { "dt-var-exp-quant", no_argument, nullptr, 641 },
1432
  { "no-dt-var-exp-quant", no_argument, nullptr, 642 },
1433
  { "e-matching", no_argument, nullptr, 643 },
1434
  { "no-e-matching", no_argument, nullptr, 644 },
1435
  { "elim-taut-quant", no_argument, nullptr, 645 },
1436
  { "no-elim-taut-quant", no_argument, nullptr, 646 },
1437
  { "ext-rewrite-quant", no_argument, nullptr, 647 },
1438
  { "no-ext-rewrite-quant", no_argument, nullptr, 648 },
1439
  { "finite-model-find", no_argument, nullptr, 649 },
1440
  { "no-finite-model-find", no_argument, nullptr, 650 },
1441
  { "fmf-bound", no_argument, nullptr, 651 },
1442
  { "no-fmf-bound", no_argument, nullptr, 652 },
1443
  { "fmf-bound-int", no_argument, nullptr, 653 },
1444
  { "no-fmf-bound-int", no_argument, nullptr, 654 },
1445
  { "fmf-bound-lazy", no_argument, nullptr, 655 },
1446
  { "no-fmf-bound-lazy", no_argument, nullptr, 656 },
1447
  { "fmf-fmc-simple", no_argument, nullptr, 657 },
1448
  { "no-fmf-fmc-simple", no_argument, nullptr, 658 },
1449
  { "fmf-fresh-dc", no_argument, nullptr, 659 },
1450
  { "no-fmf-fresh-dc", no_argument, nullptr, 660 },
1451
  { "fmf-fun", no_argument, nullptr, 661 },
1452
  { "no-fmf-fun", no_argument, nullptr, 662 },
1453
  { "fmf-fun-rlv", no_argument, nullptr, 663 },
1454
  { "no-fmf-fun-rlv", no_argument, nullptr, 664 },
1455
  { "fmf-inst-engine", no_argument, nullptr, 665 },
1456
  { "no-fmf-inst-engine", no_argument, nullptr, 666 },
1457
  { "fmf-type-completion-thresh", required_argument, nullptr, 667 },
1458
  { "fs-interleave", no_argument, nullptr, 668 },
1459
  { "no-fs-interleave", no_argument, nullptr, 669 },
1460
  { "fs-stratify", no_argument, nullptr, 670 },
1461
  { "no-fs-stratify", no_argument, nullptr, 671 },
1462
  { "fs-sum", no_argument, nullptr, 672 },
1463
  { "no-fs-sum", no_argument, nullptr, 673 },
1464
  { "full-saturate-quant", no_argument, nullptr, 674 },
1465
  { "no-full-saturate-quant", no_argument, nullptr, 675 },
1466
  { "full-saturate-quant-limit", required_argument, nullptr, 676 },
1467
  { "full-saturate-quant-rd", no_argument, nullptr, 677 },
1468
  { "no-full-saturate-quant-rd", no_argument, nullptr, 678 },
1469
  { "global-negate", no_argument, nullptr, 679 },
1470
  { "no-global-negate", no_argument, nullptr, 680 },
1471
  { "ho-elim", no_argument, nullptr, 681 },
1472
  { "no-ho-elim", no_argument, nullptr, 682 },
1473
  { "ho-elim-store-ax", no_argument, nullptr, 683 },
1474
  { "no-ho-elim-store-ax", no_argument, nullptr, 684 },
1475
  { "ho-matching", no_argument, nullptr, 685 },
1476
  { "no-ho-matching", no_argument, nullptr, 686 },
1477
  { "ho-matching-var-priority", no_argument, nullptr, 687 },
1478
  { "no-ho-matching-var-priority", no_argument, nullptr, 688 },
1479
  { "ho-merge-term-db", no_argument, nullptr, 689 },
1480
  { "no-ho-merge-term-db", no_argument, nullptr, 690 },
1481
  { "increment-triggers", no_argument, nullptr, 691 },
1482
  { "no-increment-triggers", no_argument, nullptr, 692 },
1483
  { "inst-level-input-only", no_argument, nullptr, 693 },
1484
  { "no-inst-level-input-only", no_argument, nullptr, 694 },
1485
  { "inst-max-level", required_argument, nullptr, 695 },
1486
  { "inst-max-rounds", required_argument, nullptr, 696 },
1487
  { "inst-no-entail", no_argument, nullptr, 697 },
1488
  { "no-inst-no-entail", no_argument, nullptr, 698 },
1489
  { "inst-when", required_argument, nullptr, 699 },
1490
  { "inst-when-phase", required_argument, nullptr, 700 },
1491
  { "inst-when-strict-interleave", no_argument, nullptr, 701 },
1492
  { "no-inst-when-strict-interleave", no_argument, nullptr, 702 },
1493
  { "inst-when-tc-first", no_argument, nullptr, 703 },
1494
  { "no-inst-when-tc-first", no_argument, nullptr, 704 },
1495
  { "int-wf-ind", no_argument, nullptr, 705 },
1496
  { "no-int-wf-ind", no_argument, nullptr, 706 },
1497
  { "ite-dtt-split-quant", no_argument, nullptr, 707 },
1498
  { "no-ite-dtt-split-quant", no_argument, nullptr, 708 },
1499
  { "ite-lift-quant", required_argument, nullptr, 709 },
1500
  { "literal-matching", required_argument, nullptr, 710 },
1501
  { "macros-quant", no_argument, nullptr, 711 },
1502
  { "no-macros-quant", no_argument, nullptr, 712 },
1503
  { "macros-quant-mode", required_argument, nullptr, 713 },
1504
  { "mbqi", required_argument, nullptr, 714 },
1505
  { "mbqi-interleave", no_argument, nullptr, 715 },
1506
  { "no-mbqi-interleave", no_argument, nullptr, 716 },
1507
  { "mbqi-one-inst-per-round", no_argument, nullptr, 717 },
1508
  { "no-mbqi-one-inst-per-round", no_argument, nullptr, 718 },
1509
  { "miniscope-quant", no_argument, nullptr, 719 },
1510
  { "no-miniscope-quant", no_argument, nullptr, 720 },
1511
  { "miniscope-quant-fv", no_argument, nullptr, 721 },
1512
  { "no-miniscope-quant-fv", no_argument, nullptr, 722 },
1513
  { "multi-trigger-cache", no_argument, nullptr, 723 },
1514
  { "no-multi-trigger-cache", no_argument, nullptr, 724 },
1515
  { "multi-trigger-linear", no_argument, nullptr, 725 },
1516
  { "no-multi-trigger-linear", no_argument, nullptr, 726 },
1517
  { "multi-trigger-priority", no_argument, nullptr, 727 },
1518
  { "no-multi-trigger-priority", no_argument, nullptr, 728 },
1519
  { "multi-trigger-when-single", no_argument, nullptr, 729 },
1520
  { "no-multi-trigger-when-single", no_argument, nullptr, 730 },
1521
  { "partial-triggers", no_argument, nullptr, 731 },
1522
  { "no-partial-triggers", no_argument, nullptr, 732 },
1523
  { "pool-inst", no_argument, nullptr, 733 },
1524
  { "no-pool-inst", no_argument, nullptr, 734 },
1525
  { "pre-skolem-quant", no_argument, nullptr, 735 },
1526
  { "no-pre-skolem-quant", no_argument, nullptr, 736 },
1527
  { "pre-skolem-quant-agg", no_argument, nullptr, 737 },
1528
  { "no-pre-skolem-quant-agg", no_argument, nullptr, 738 },
1529
  { "pre-skolem-quant-nested", no_argument, nullptr, 739 },
1530
  { "no-pre-skolem-quant-nested", no_argument, nullptr, 740 },
1531
  { "prenex-quant", required_argument, nullptr, 741 },
1532
  { "prenex-quant-user", no_argument, nullptr, 742 },
1533
  { "no-prenex-quant-user", no_argument, nullptr, 743 },
1534
  { "purify-triggers", no_argument, nullptr, 744 },
1535
  { "no-purify-triggers", no_argument, nullptr, 745 },
1536
  { "qcf-all-conflict", no_argument, nullptr, 746 },
1537
  { "no-qcf-all-conflict", no_argument, nullptr, 747 },
1538
  { "qcf-eager-check-rd", no_argument, nullptr, 748 },
1539
  { "no-qcf-eager-check-rd", no_argument, nullptr, 749 },
1540
  { "qcf-eager-test", no_argument, nullptr, 750 },
1541
  { "no-qcf-eager-test", no_argument, nullptr, 751 },
1542
  { "qcf-nested-conflict", no_argument, nullptr, 752 },
1543
  { "no-qcf-nested-conflict", no_argument, nullptr, 753 },
1544
  { "qcf-skip-rd", no_argument, nullptr, 754 },
1545
  { "no-qcf-skip-rd", no_argument, nullptr, 755 },
1546
  { "qcf-tconstraint", no_argument, nullptr, 756 },
1547
  { "no-qcf-tconstraint", no_argument, nullptr, 757 },
1548
  { "qcf-vo-exp", no_argument, nullptr, 758 },
1549
  { "no-qcf-vo-exp", no_argument, nullptr, 759 },
1550
  { "quant-alpha-equiv", no_argument, nullptr, 760 },
1551
  { "no-quant-alpha-equiv", no_argument, nullptr, 761 },
1552
  { "quant-cf", no_argument, nullptr, 762 },
1553
  { "no-quant-cf", no_argument, nullptr, 763 },
1554
  { "quant-cf-mode", required_argument, nullptr, 764 },
1555
  { "quant-cf-when", required_argument, nullptr, 765 },
1556
  { "quant-dsplit-mode", required_argument, nullptr, 766 },
1557
  { "quant-fun-wd", no_argument, nullptr, 767 },
1558
  { "no-quant-fun-wd", no_argument, nullptr, 768 },
1559
  { "quant-ind", no_argument, nullptr, 769 },
1560
  { "no-quant-ind", no_argument, nullptr, 770 },
1561
  { "quant-rep-mode", required_argument, nullptr, 771 },
1562
  { "quant-split", no_argument, nullptr, 772 },
1563
  { "no-quant-split", no_argument, nullptr, 773 },
1564
  { "register-quant-body-terms", no_argument, nullptr, 774 },
1565
  { "no-register-quant-body-terms", no_argument, nullptr, 775 },
1566
  { "relational-triggers", no_argument, nullptr, 776 },
1567
  { "no-relational-triggers", no_argument, nullptr, 777 },
1568
  { "relevant-triggers", no_argument, nullptr, 778 },
1569
  { "no-relevant-triggers", no_argument, nullptr, 779 },
1570
  { "sygus", no_argument, nullptr, 780 },
1571
  { "no-sygus", no_argument, nullptr, 781 },
1572
  { "sygus-active-gen", required_argument, nullptr, 782 },
1573
  { "sygus-active-gen-cfactor", required_argument, nullptr, 783 },
1574
  { "sygus-add-const-grammar", no_argument, nullptr, 784 },
1575
  { "no-sygus-add-const-grammar", no_argument, nullptr, 785 },
1576
  { "sygus-arg-relevant", no_argument, nullptr, 786 },
1577
  { "no-sygus-arg-relevant", no_argument, nullptr, 787 },
1578
  { "sygus-auto-unfold", no_argument, nullptr, 788 },
1579
  { "no-sygus-auto-unfold", no_argument, nullptr, 789 },
1580
  { "sygus-bool-ite-return-const", no_argument, nullptr, 790 },
1581
  { "no-sygus-bool-ite-return-const", no_argument, nullptr, 791 },
1582
  { "sygus-core-connective", no_argument, nullptr, 792 },
1583
  { "no-sygus-core-connective", no_argument, nullptr, 793 },
1584
  { "sygus-crepair-abort", no_argument, nullptr, 794 },
1585
  { "no-sygus-crepair-abort", no_argument, nullptr, 795 },
1586
  { "sygus-eval-opt", no_argument, nullptr, 796 },
1587
  { "no-sygus-eval-opt", no_argument, nullptr, 797 },
1588
  { "sygus-eval-unfold", no_argument, nullptr, 798 },
1589
  { "no-sygus-eval-unfold", no_argument, nullptr, 799 },
1590
  { "sygus-eval-unfold-bool", no_argument, nullptr, 800 },
1591
  { "no-sygus-eval-unfold-bool", no_argument, nullptr, 801 },
1592
  { "sygus-expr-miner-check-timeout", required_argument, nullptr, 802 },
1593
  { "sygus-ext-rew", no_argument, nullptr, 803 },
1594
  { "no-sygus-ext-rew", no_argument, nullptr, 804 },
1595
  { "sygus-filter-sol", required_argument, nullptr, 805 },
1596
  { "sygus-filter-sol-rev", no_argument, nullptr, 806 },
1597
  { "no-sygus-filter-sol-rev", no_argument, nullptr, 807 },
1598
  { "sygus-grammar-cons", required_argument, nullptr, 808 },
1599
  { "sygus-grammar-norm", no_argument, nullptr, 809 },
1600
  { "no-sygus-grammar-norm", no_argument, nullptr, 810 },
1601
  { "sygus-inference", no_argument, nullptr, 811 },
1602
  { "no-sygus-inference", no_argument, nullptr, 812 },
1603
  { "sygus-inst", no_argument, nullptr, 813 },
1604
  { "no-sygus-inst", no_argument, nullptr, 814 },
1605
  { "sygus-inst-mode", required_argument, nullptr, 815 },
1606
  { "sygus-inst-scope", required_argument, nullptr, 816 },
1607
  { "sygus-inst-term-sel", required_argument, nullptr, 817 },
1608
  { "sygus-inv-templ", required_argument, nullptr, 818 },
1609
  { "sygus-inv-templ-when-sg", no_argument, nullptr, 819 },
1610
  { "no-sygus-inv-templ-when-sg", no_argument, nullptr, 820 },
1611
  { "sygus-min-grammar", no_argument, nullptr, 821 },
1612
  { "no-sygus-min-grammar", no_argument, nullptr, 822 },
1613
  { "sygus-pbe", no_argument, nullptr, 823 },
1614
  { "no-sygus-pbe", no_argument, nullptr, 824 },
1615
  { "sygus-pbe-multi-fair", no_argument, nullptr, 825 },
1616
  { "no-sygus-pbe-multi-fair", no_argument, nullptr, 826 },
1617
  { "sygus-pbe-multi-fair-diff", required_argument, nullptr, 827 },
1618
  { "sygus-qe-preproc", no_argument, nullptr, 828 },
1619
  { "no-sygus-qe-preproc", no_argument, nullptr, 829 },
1620
  { "sygus-query-gen", no_argument, nullptr, 830 },
1621
  { "no-sygus-query-gen", no_argument, nullptr, 831 },
1622
  { "sygus-query-gen-check", no_argument, nullptr, 832 },
1623
  { "no-sygus-query-gen-check", no_argument, nullptr, 833 },
1624
  { "sygus-query-gen-dump-files", required_argument, nullptr, 834 },
1625
  { "sygus-query-gen-thresh", required_argument, nullptr, 835 },
1626
  { "sygus-rec-fun", no_argument, nullptr, 836 },
1627
  { "no-sygus-rec-fun", no_argument, nullptr, 837 },
1628
  { "sygus-rec-fun-eval-limit", required_argument, nullptr, 838 },
1629
  { "sygus-repair-const", no_argument, nullptr, 839 },
1630
  { "no-sygus-repair-const", no_argument, nullptr, 840 },
1631
  { "sygus-repair-const-timeout", required_argument, nullptr, 841 },
1632
  { "sygus-rr", no_argument, nullptr, 842 },
1633
  { "no-sygus-rr", no_argument, nullptr, 843 },
1634
  { "sygus-rr-synth", no_argument, nullptr, 844 },
1635
  { "no-sygus-rr-synth", no_argument, nullptr, 845 },
1636
  { "sygus-rr-synth-accel", no_argument, nullptr, 846 },
1637
  { "no-sygus-rr-synth-accel", no_argument, nullptr, 847 },
1638
  { "sygus-rr-synth-check", no_argument, nullptr, 848 },
1639
  { "no-sygus-rr-synth-check", no_argument, nullptr, 849 },
1640
  { "sygus-rr-synth-filter-cong", no_argument, nullptr, 850 },
1641
  { "no-sygus-rr-synth-filter-cong", no_argument, nullptr, 851 },
1642
  { "sygus-rr-synth-filter-match", no_argument, nullptr, 852 },
1643
  { "no-sygus-rr-synth-filter-match", no_argument, nullptr, 853 },
1644
  { "sygus-rr-synth-filter-nl", no_argument, nullptr, 854 },
1645
  { "no-sygus-rr-synth-filter-nl", no_argument, nullptr, 855 },
1646
  { "sygus-rr-synth-filter-order", no_argument, nullptr, 856 },
1647
  { "no-sygus-rr-synth-filter-order", no_argument, nullptr, 857 },
1648
  { "sygus-rr-synth-input", no_argument, nullptr, 858 },
1649
  { "no-sygus-rr-synth-input", no_argument, nullptr, 859 },
1650
  { "sygus-rr-synth-input-nvars", required_argument, nullptr, 860 },
1651
  { "sygus-rr-synth-input-use-bool", no_argument, nullptr, 861 },
1652
  { "no-sygus-rr-synth-input-use-bool", no_argument, nullptr, 862 },
1653
  { "sygus-rr-synth-rec", no_argument, nullptr, 863 },
1654
  { "no-sygus-rr-synth-rec", no_argument, nullptr, 864 },
1655
  { "sygus-rr-verify", no_argument, nullptr, 865 },
1656
  { "no-sygus-rr-verify", no_argument, nullptr, 866 },
1657
  { "sygus-rr-verify-abort", no_argument, nullptr, 867 },
1658
  { "no-sygus-rr-verify-abort", no_argument, nullptr, 868 },
1659
  { "sygus-sample-fp-uniform", no_argument, nullptr, 869 },
1660
  { "no-sygus-sample-fp-uniform", no_argument, nullptr, 870 },
1661
  { "sygus-sample-grammar", no_argument, nullptr, 871 },
1662
  { "no-sygus-sample-grammar", no_argument, nullptr, 872 },
1663
  { "sygus-samples", required_argument, nullptr, 873 },
1664
  { "sygus-si", required_argument, nullptr, 874 },
1665
  { "sygus-si-abort", no_argument, nullptr, 875 },
1666
  { "no-sygus-si-abort", no_argument, nullptr, 876 },
1667
  { "sygus-si-partial", no_argument, nullptr, 877 },
1668
  { "no-sygus-si-partial", no_argument, nullptr, 878 },
1669
  { "sygus-si-rcons", required_argument, nullptr, 879 },
1670
  { "sygus-si-rcons-limit", required_argument, nullptr, 880 },
1671
  { "sygus-si-reconstruct-const", no_argument, nullptr, 881 },
1672
  { "no-sygus-si-reconstruct-const", no_argument, nullptr, 882 },
1673
  { "sygus-stream", no_argument, nullptr, 883 },
1674
  { "no-sygus-stream", no_argument, nullptr, 884 },
1675
  { "sygus-templ-embed-grammar", no_argument, nullptr, 885 },
1676
  { "no-sygus-templ-embed-grammar", no_argument, nullptr, 886 },
1677
  { "sygus-unif-cond-independent-no-repeat-sol", no_argument, nullptr, 887 },
1678
  { "no-sygus-unif-cond-independent-no-repeat-sol", no_argument, nullptr, 888 },
1679
  { "sygus-unif-pi", required_argument, nullptr, 889 },
1680
  { "sygus-unif-shuffle-cond", no_argument, nullptr, 890 },
1681
  { "no-sygus-unif-shuffle-cond", no_argument, nullptr, 891 },
1682
  { "sygus-verify-inst-max-rounds", required_argument, nullptr, 892 },
1683
  { "term-db-cd", no_argument, nullptr, 893 },
1684
  { "no-term-db-cd", no_argument, nullptr, 894 },
1685
  { "term-db-mode", required_argument, nullptr, 895 },
1686
  { "trigger-active-sel", required_argument, nullptr, 896 },
1687
  { "trigger-sel", required_argument, nullptr, 897 },
1688
  { "user-pat", required_argument, nullptr, 898 },
1689
  { "var-elim-quant", no_argument, nullptr, 899 },
1690
  { "no-var-elim-quant", no_argument, nullptr, 900 },
1691
  { "var-ineq-elim-quant", no_argument, nullptr, 901 },
1692
  { "no-var-ineq-elim-quant", no_argument, nullptr, 902 },
1693
  { "sep-check-neg", no_argument, nullptr, 903 },
1694
  { "no-sep-check-neg", no_argument, nullptr, 904 },
1695
  { "sep-child-refine", no_argument, nullptr, 905 },
1696
  { "no-sep-child-refine", no_argument, nullptr, 906 },
1697
  { "sep-deq-c", no_argument, nullptr, 907 },
1698
  { "no-sep-deq-c", no_argument, nullptr, 908 },
1699
  { "sep-exp", no_argument, nullptr, 909 },
1700
  { "no-sep-exp", no_argument, nullptr, 910 },
1701
  { "sep-min-refine", no_argument, nullptr, 911 },
1702
  { "no-sep-min-refine", no_argument, nullptr, 912 },
1703
  { "sep-pre-skolem-emp", no_argument, nullptr, 913 },
1704
  { "no-sep-pre-skolem-emp", no_argument, nullptr, 914 },
1705
  { "sets-ext", no_argument, nullptr, 915 },
1706
  { "no-sets-ext", no_argument, nullptr, 916 },
1707
  { "sets-infer-as-lemmas", no_argument, nullptr, 917 },
1708
  { "no-sets-infer-as-lemmas", no_argument, nullptr, 918 },
1709
  { "sets-proxy-lemmas", no_argument, nullptr, 919 },
1710
  { "no-sets-proxy-lemmas", no_argument, nullptr, 920 },
1711
  { "abstract-values", no_argument, nullptr, 921 },
1712
  { "no-abstract-values", no_argument, nullptr, 922 },
1713
  { "ackermann", no_argument, nullptr, 923 },
1714
  { "no-ackermann", no_argument, nullptr, 924 },
1715
  { "block-models", required_argument, nullptr, 925 },
1716
  { "bvand-integer-granularity", required_argument, nullptr, 926 },
1717
  { "check-abducts", no_argument, nullptr, 927 },
1718
  { "no-check-abducts", no_argument, nullptr, 928 },
1719
  { "check-interpols", no_argument, nullptr, 929 },
1720
  { "no-check-interpols", no_argument, nullptr, 930 },
1721
  { "check-models", no_argument, nullptr, 931 },
1722
  { "no-check-models", no_argument, nullptr, 932 },
1723
  { "check-proofs", no_argument, nullptr, 933 },
1724
  { "no-check-proofs", no_argument, nullptr, 934 },
1725
  { "check-synth-sol", no_argument, nullptr, 935 },
1726
  { "no-check-synth-sol", no_argument, nullptr, 936 },
1727
  { "check-unsat-cores", no_argument, nullptr, 937 },
1728
  { "no-check-unsat-cores", no_argument, nullptr, 938 },
1729
  { "debug-check-models", no_argument, nullptr, 939 },
1730
  { "no-debug-check-models", no_argument, nullptr, 940 },
1731
  { "difficulty-mode", required_argument, nullptr, 941 },
1732
  { "dump", required_argument, nullptr, 942 },
1733
  { "dump-to", required_argument, nullptr, 943 },
1734
  { "early-ite-removal", no_argument, nullptr, 944 },
1735
  { "no-early-ite-removal", no_argument, nullptr, 945 },
1736
  { "expand-definitions", no_argument, nullptr, 946 },
1737
  { "no-expand-definitions", no_argument, nullptr, 947 },
1738
  { "ext-rew-prep", no_argument, nullptr, 948 },
1739
  { "no-ext-rew-prep", no_argument, nullptr, 949 },
1740
  { "ext-rew-prep-agg", no_argument, nullptr, 950 },
1741
  { "no-ext-rew-prep-agg", no_argument, nullptr, 951 },
1742
  { "foreign-theory-rewrite", no_argument, nullptr, 952 },
1743
  { "no-foreign-theory-rewrite", no_argument, nullptr, 953 },
1744
  { "iand-mode", required_argument, nullptr, 954 },
1745
  { "interactive-mode", no_argument, nullptr, 955 },
1746
  { "no-interactive-mode", no_argument, nullptr, 956 },
1747
  { "ite-simp", no_argument, nullptr, 957 },
1748
  { "no-ite-simp", no_argument, nullptr, 958 },
1749
  { "learned-rewrite", no_argument, nullptr, 959 },
1750
  { "no-learned-rewrite", no_argument, nullptr, 960 },
1751
  { "minimal-unsat-cores", no_argument, nullptr, 961 },
1752
  { "no-minimal-unsat-cores", no_argument, nullptr, 962 },
1753
  { "model-cores", required_argument, nullptr, 963 },
1754
  { "model-u-print", required_argument, nullptr, 964 },
1755
  { "model-uninterp-print", required_argument, nullptr, 965 },
1756
  { "model-witness-value", no_argument, nullptr, 966 },
1757
  { "no-model-witness-value", no_argument, nullptr, 967 },
1758
  { "on-repeat-ite-simp", no_argument, nullptr, 968 },
1759
  { "no-on-repeat-ite-simp", no_argument, nullptr, 969 },
1760
  { "produce-abducts", no_argument, nullptr, 970 },
1761
  { "no-produce-abducts", no_argument, nullptr, 971 },
1762
  { "produce-assertions", no_argument, nullptr, 972 },
1763
  { "no-produce-assertions", no_argument, nullptr, 973 },
1764
  { "produce-assignments", no_argument, nullptr, 974 },
1765
  { "no-produce-assignments", no_argument, nullptr, 975 },
1766
  { "produce-difficulty", no_argument, nullptr, 976 },
1767
  { "no-produce-difficulty", no_argument, nullptr, 977 },
1768
  { "produce-interpols", required_argument, nullptr, 978 },
1769
  { "produce-models", no_argument, nullptr, 979 },
1770
  { "no-produce-models", no_argument, nullptr, 980 },
1771
  { "produce-proofs", no_argument, nullptr, 981 },
1772
  { "no-produce-proofs", no_argument, nullptr, 982 },
1773
  { "produce-unsat-assumptions", no_argument, nullptr, 983 },
1774
  { "no-produce-unsat-assumptions", no_argument, nullptr, 984 },
1775
  { "produce-unsat-cores", no_argument, nullptr, 985 },
1776
  { "no-produce-unsat-cores", no_argument, nullptr, 986 },
1777
  { "repeat-simp", no_argument, nullptr, 987 },
1778
  { "no-repeat-simp", no_argument, nullptr, 988 },
1779
  { "simp-ite-compress", no_argument, nullptr, 989 },
1780
  { "no-simp-ite-compress", no_argument, nullptr, 990 },
1781
  { "simp-ite-hunt-zombies", required_argument, nullptr, 991 },
1782
  { "simp-with-care", no_argument, nullptr, 992 },
1783
  { "no-simp-with-care", no_argument, nullptr, 993 },
1784
  { "simplification", required_argument, nullptr, 994 },
1785
  { "simplification-mode", required_argument, nullptr, 995 },
1786
  { "solve-bv-as-int", required_argument, nullptr, 996 },
1787
  { "solve-int-as-bv", required_argument, nullptr, 997 },
1788
  { "solve-real-as-int", no_argument, nullptr, 998 },
1789
  { "no-solve-real-as-int", no_argument, nullptr, 999 },
1790
  { "sort-inference", no_argument, nullptr, 1000 },
1791
  { "no-sort-inference", no_argument, nullptr, 1001 },
1792
  { "static-learning", no_argument, nullptr, 1002 },
1793
  { "no-static-learning", no_argument, nullptr, 1003 },
1794
  { "sygus-out", required_argument, nullptr, 1004 },
1795
  { "sygus-print-callbacks", no_argument, nullptr, 1005 },
1796
  { "no-sygus-print-callbacks", no_argument, nullptr, 1006 },
1797
  { "unconstrained-simp", no_argument, nullptr, 1007 },
1798
  { "no-unconstrained-simp", no_argument, nullptr, 1008 },
1799
  { "unsat-cores-mode", required_argument, nullptr, 1009 },
1800
  { "re-elim", no_argument, nullptr, 1010 },
1801
  { "no-re-elim", no_argument, nullptr, 1011 },
1802
  { "re-elim-agg", no_argument, nullptr, 1012 },
1803
  { "no-re-elim-agg", no_argument, nullptr, 1013 },
1804
  { "re-inter-mode", required_argument, nullptr, 1014 },
1805
  { "strings-check-entail-len", no_argument, nullptr, 1015 },
1806
  { "no-strings-check-entail-len", no_argument, nullptr, 1016 },
1807
  { "strings-eager", no_argument, nullptr, 1017 },
1808
  { "no-strings-eager", no_argument, nullptr, 1018 },
1809
  { "strings-eager-eval", no_argument, nullptr, 1019 },
1810
  { "no-strings-eager-eval", no_argument, nullptr, 1020 },
1811
  { "strings-eager-len", no_argument, nullptr, 1021 },
1812
  { "no-strings-eager-len", no_argument, nullptr, 1022 },
1813
  { "strings-exp", no_argument, nullptr, 1023 },
1814
  { "no-strings-exp", no_argument, nullptr, 1024 },
1815
  { "strings-ff", no_argument, nullptr, 1025 },
1816
  { "no-strings-ff", no_argument, nullptr, 1026 },
1817
  { "strings-fmf", no_argument, nullptr, 1027 },
1818
  { "no-strings-fmf", no_argument, nullptr, 1028 },
1819
  { "strings-guess-model", no_argument, nullptr, 1029 },
1820
  { "no-strings-guess-model", no_argument, nullptr, 1030 },
1821
  { "strings-infer-as-lemmas", no_argument, nullptr, 1031 },
1822
  { "no-strings-infer-as-lemmas", no_argument, nullptr, 1032 },
1823
  { "strings-infer-sym", no_argument, nullptr, 1033 },
1824
  { "no-strings-infer-sym", no_argument, nullptr, 1034 },
1825
  { "strings-lazy-pp", no_argument, nullptr, 1035 },
1826
  { "no-strings-lazy-pp", no_argument, nullptr, 1036 },
1827
  { "strings-len-norm", no_argument, nullptr, 1037 },
1828
  { "no-strings-len-norm", no_argument, nullptr, 1038 },
1829
  { "strings-lprop-csp", no_argument, nullptr, 1039 },
1830
  { "no-strings-lprop-csp", no_argument, nullptr, 1040 },
1831
  { "strings-min-prefix-explain", no_argument, nullptr, 1041 },
1832
  { "no-strings-min-prefix-explain", no_argument, nullptr, 1042 },
1833
  { "strings-process-loop-mode", required_argument, nullptr, 1043 },
1834
  { "strings-rexplain-lemmas", no_argument, nullptr, 1044 },
1835
  { "no-strings-rexplain-lemmas", no_argument, nullptr, 1045 },
1836
  { "strings-unified-vspt", no_argument, nullptr, 1046 },
1837
  { "no-strings-unified-vspt", no_argument, nullptr, 1047 },
1838
  { "assign-function-values", no_argument, nullptr, 1048 },
1839
  { "no-assign-function-values", no_argument, nullptr, 1049 },
1840
  { "condense-function-values", no_argument, nullptr, 1050 },
1841
  { "no-condense-function-values", no_argument, nullptr, 1051 },
1842
  { "ee-mode", required_argument, nullptr, 1052 },
1843
  { "relevance-filter", no_argument, nullptr, 1053 },
1844
  { "no-relevance-filter", no_argument, nullptr, 1054 },
1845
  { "tc-mode", required_argument, nullptr, 1055 },
1846
  { "theoryof-mode", required_argument, nullptr, 1056 },
1847
  { "symmetry-breaker", no_argument, nullptr, 1057 },
1848
  { "uf-symmetry-breaker", no_argument, nullptr, 1058 },
1849
  { "no-symmetry-breaker", no_argument, nullptr, 1059 },
1850
  { "no-uf-symmetry-breaker", no_argument, nullptr, 1060 },
1851
  { "uf-ho", no_argument, nullptr, 1061 },
1852
  { "no-uf-ho", no_argument, nullptr, 1062 },
1853
  { "uf-ho-ext", no_argument, nullptr, 1063 },
1854
  { "no-uf-ho-ext", no_argument, nullptr, 1064 },
1855
  { "uf-ss", required_argument, nullptr, 1065 },
1856
  { "uf-ss-abort-card", required_argument, nullptr, 1066 },
1857
  { "uf-ss-fair", no_argument, nullptr, 1067 },
1858
  { "no-uf-ss-fair", no_argument, nullptr, 1068 },
1859
  { "uf-ss-fair-monotone", no_argument, nullptr, 1069 },
1860
  { "no-uf-ss-fair-monotone", no_argument, nullptr, 1070 },
1861
  { "uf-ss-totality-limited", required_argument, nullptr, 1071 },
1862
  { "uf-ss-totality-sym-break", no_argument, nullptr, 1072 },
1863
  { "no-uf-ss-totality-sym-break", no_argument, nullptr, 1073 },
1864
// clang-format on
1865
  {nullptr, no_argument, nullptr, '\0'}
1866
};
1867
1868
std::string suggestCommandLineOptions(const std::string& optionName)
1869
{
1870
  DidYouMean didYouMean;
1871
1872
  const char* opt;
1873
  for (size_t i = 0; (opt = cmdlineOptions[i].name) != nullptr; ++i)
1874
  {
1875
    didYouMean.addWord(std::string("--") + cmdlineOptions[i].name);
1876
  }
1877
1878
  return didYouMean.getMatchAsString(
1879
      optionName.substr(0, optionName.find('=')));
1880
}
1881
1882
8800
void parseInternal(api::Solver& solver,
1883
                   int argc,
1884
                   char* argv[],
1885
                   std::vector<std::string>& nonoptions)
1886
{
1887
8800
  Assert(argv != nullptr);
1888
8800
  if (Debug.isOn("options"))
1889
  {
1890
    Debug("options") << "starting a new parseInternal with " << argc
1891
                     << " arguments" << std::endl;
1892
    for (int i = 0; i < argc; ++i)
1893
    {
1894
      Assert(argv[i] != nullptr);
1895
      Debug("options") << "  argv[" << i << "] = " << argv[i] << std::endl;
1896
    }
1897
  }
1898
1899
  // Reset getopt(), in the case of multiple calls to parse().
1900
  // This can be = 1 in newer GNU getopt, but older (< 2007) require = 0.
1901
8800
  optind = 0;
1902
#if HAVE_DECL_OPTRESET
1903
  optreset = 1; // on BSD getopt() (e.g. Mac OS), might need this
1904
#endif /* HAVE_DECL_OPTRESET */
1905
1906
  // We must parse the binary name, which is manually ignored below. Setting
1907
  // this to 1 leads to incorrect behavior on some platforms.
1908
8800
  int main_optind = 0;
1909
  int old_optind;
1910
1911
  while (true)
1912
  {  // Repeat Forever
1913
1914
24305
    optopt = 0;
1915
1916
24305
    optind = main_optind;
1917
24305
    old_optind = main_optind;
1918
1919
    // If we encounter an element that is not at zero and does not start
1920
    // with a "-", this is a non-option. We consume this element as a
1921
    // non-option.
1922
30478
    if (main_optind > 0 && main_optind < argc && argv[main_optind][0] != '-')
1923
    {
1924
12346
      Debug("options") << "enqueueing " << argv[main_optind]
1925
6173
                       << " as a non-option." << std::endl;
1926
6173
      nonoptions.push_back(argv[main_optind]);
1927
6173
      ++main_optind;
1928
13725
      continue;
1929
    }
1930
1931
36264
    Debug("options") << "[ before, main_optind == " << main_optind << " ]"
1932
18132
                     << std::endl;
1933
18132
    Debug("options") << "[ before, optind == " << optind << " ]" << std::endl;
1934
36264
    Debug("options") << "[ argc == " << argc << ", argv == " << argv << " ]"
1935
18132
                     << std::endl;
1936
    // clang-format off
1937
18132
    int c = getopt_long(argc, argv,
1938
                        "+:d:iL:o:qt:vhs:Vm",
1939
18132
                        cmdlineOptions, nullptr);
1940
    // clang-format on
1941
1942
18132
    main_optind = optind;
1943
1944
36264
    Debug("options") << "[ got " << int(c) << " (" << char(c) << ") ]"
1945
18132
                     << "[ next option will be at pos: " << optind << " ]"
1946
18132
                     << std::endl;
1947
1948
    // The initial getopt_long call should always determine that argv[0]
1949
    // is not an option and returns -1. We always manually advance beyond
1950
    // this element.
1951
19511
    if (old_optind == 0 && c == -1)
1952
    {
1953
1379
      Assert(main_optind > 0);
1954
1379
      continue;
1955
    }
1956
1957
16753
    if (c == -1)
1958
    {
1959
6173
      if (Debug.isOn("options"))
1960
      {
1961
        Debug("options") << "done with option parsing" << std::endl;
1962
        for (int index = optind; index < argc; ++index)
1963
        {
1964
          Debug("options") << "remaining " << argv[index] << std::endl;
1965
        }
1966
      }
1967
12346
      break;
1968
    }
1969
1970
18534
    std::string option = argv[old_optind == 0 ? 1 : old_optind];
1971
18534
    std::string optionarg = (optarg == nullptr) ? "" : optarg;
1972
1973
21160
    Debug("preemptGetopt") << "processing option " << c << " (`" << char(c)
1974
10580
                           << "'), " << option << std::endl;
1975
1976
10580
    switch (c)
1977
    {
1978
// clang-format off
1979
    case 256: // --approx-branch-depth
1980
      solver.setOption("approx-branch-depth", optionarg); break;
1981
2
    case 257: // --arith-brab
1982
2
      solver.setOption("arith-brab", "true"); break;
1983
2
    case 258: // --no-arith-brab
1984
2
      solver.setOption("arith-brab", "false"); break;
1985
    case 259: // --arith-cong-man
1986
      solver.setOption("arith-cong-man", "true"); break;
1987
    case 260: // --no-arith-cong-man
1988
      solver.setOption("arith-cong-man", "false"); break;
1989
6
    case 261: // --arith-eq-solver
1990
6
      solver.setOption("arith-eq-solver", "true"); break;
1991
    case 262: // --no-arith-eq-solver
1992
      solver.setOption("arith-eq-solver", "false"); break;
1993
    case 263: // --arith-no-partial-fun
1994
      solver.setOption("arith-no-partial-fun", "true"); break;
1995
    case 264: // --no-arith-no-partial-fun
1996
      solver.setOption("arith-no-partial-fun", "false"); break;
1997
    case 265: // --arith-prop
1998
      solver.setOption("arith-prop", optionarg); break;
1999
    case 266: // --arith-prop-clauses
2000
      solver.setOption("arith-prop-clauses", optionarg); break;
2001
4
    case 267: // --arith-rewrite-equalities
2002
4
      solver.setOption("arith-rewrite-equalities", "true"); break;
2003
    case 268: // --no-arith-rewrite-equalities
2004
      solver.setOption("arith-rewrite-equalities", "false"); break;
2005
    case 269: // --collect-pivot-stats
2006
      solver.setOption("collect-pivot-stats", "true"); break;
2007
    case 270: // --no-collect-pivot-stats
2008
      solver.setOption("collect-pivot-stats", "false"); break;
2009
    case 271: // --cut-all-bounded
2010
      solver.setOption("cut-all-bounded", "true"); break;
2011
    case 272: // --no-cut-all-bounded
2012
      solver.setOption("cut-all-bounded", "false"); break;
2013
    case 273: // --dio-decomps
2014
      solver.setOption("dio-decomps", "true"); break;
2015
    case 274: // --no-dio-decomps
2016
      solver.setOption("dio-decomps", "false"); break;
2017
    case 275: // --dio-repeat
2018
      solver.setOption("dio-repeat", "true"); break;
2019
    case 276: // --no-dio-repeat
2020
      solver.setOption("dio-repeat", "false"); break;
2021
    case 277: // --dio-solver
2022
      solver.setOption("dio-solver", "true"); break;
2023
    case 278: // --no-dio-solver
2024
      solver.setOption("dio-solver", "false"); break;
2025
    case 279: // --dio-turns
2026
      solver.setOption("dio-turns", optionarg); break;
2027
    case 280: // --error-selection-rule
2028
      solver.setOption("error-selection-rule", optionarg); break;
2029
    case 281: // --fc-penalties
2030
      solver.setOption("fc-penalties", "true"); break;
2031
    case 282: // --no-fc-penalties
2032
      solver.setOption("fc-penalties", "false"); break;
2033
    case 283: // --heuristic-pivots
2034
      solver.setOption("heuristic-pivots", optionarg); break;
2035
    case 284: // --lemmas-on-replay-failure
2036
      solver.setOption("lemmas-on-replay-failure", "true"); break;
2037
    case 285: // --no-lemmas-on-replay-failure
2038
      solver.setOption("lemmas-on-replay-failure", "false"); break;
2039
    case 286: // --maxCutsInContext
2040
      solver.setOption("maxCutsInContext", optionarg); break;
2041
8
    case 287: // --miplib-trick
2042
8
      solver.setOption("miplib-trick", "true"); break;
2043
    case 288: // --no-miplib-trick
2044
      solver.setOption("miplib-trick", "false"); break;
2045
    case 289: // --miplib-trick-subs
2046
      solver.setOption("miplib-trick-subs", optionarg); break;
2047
    case 290: // --new-prop
2048
      solver.setOption("new-prop", "true"); break;
2049
8
    case 291: // --no-new-prop
2050
8
      solver.setOption("new-prop", "false"); break;
2051
5
    case 292: // --nl-cad
2052
5
      solver.setOption("nl-cad", "true"); break;
2053
    case 293: // --no-nl-cad
2054
      solver.setOption("nl-cad", "false"); break;
2055
    case 294: // --nl-cad-initial
2056
      solver.setOption("nl-cad-initial", "true"); break;
2057
    case 295: // --no-nl-cad-initial
2058
      solver.setOption("nl-cad-initial", "false"); break;
2059
    case 296: // --nl-cad-lift
2060
      solver.setOption("nl-cad-lift", optionarg); break;
2061
    case 297: // --nl-cad-proj
2062
      solver.setOption("nl-cad-proj", optionarg); break;
2063
126
    case 298: // --nl-ext
2064
126
      solver.setOption("nl-ext", optionarg); break;
2065
    case 299: // --nl-ext-ent-conf
2066
      solver.setOption("nl-ext-ent-conf", "true"); break;
2067
    case 300: // --no-nl-ext-ent-conf
2068
      solver.setOption("nl-ext-ent-conf", "false"); break;
2069
    case 301: // --nl-ext-factor
2070
      solver.setOption("nl-ext-factor", "true"); break;
2071
    case 302: // --no-nl-ext-factor
2072
      solver.setOption("nl-ext-factor", "false"); break;
2073
    case 303: // --nl-ext-inc-prec
2074
      solver.setOption("nl-ext-inc-prec", "true"); break;
2075
2
    case 304: // --no-nl-ext-inc-prec
2076
2
      solver.setOption("nl-ext-inc-prec", "false"); break;
2077
2
    case 305: // --nl-ext-purify
2078
2
      solver.setOption("nl-ext-purify", "true"); break;
2079
    case 306: // --no-nl-ext-purify
2080
      solver.setOption("nl-ext-purify", "false"); break;
2081
    case 307: // --nl-ext-rbound
2082
      solver.setOption("nl-ext-rbound", "true"); break;
2083
    case 308: // --no-nl-ext-rbound
2084
      solver.setOption("nl-ext-rbound", "false"); break;
2085
    case 309: // --nl-ext-rewrite
2086
      solver.setOption("nl-ext-rewrite", "true"); break;
2087
    case 310: // --no-nl-ext-rewrite
2088
      solver.setOption("nl-ext-rewrite", "false"); break;
2089
    case 311: // --nl-ext-split-zero
2090
      solver.setOption("nl-ext-split-zero", "true"); break;
2091
    case 312: // --no-nl-ext-split-zero
2092
      solver.setOption("nl-ext-split-zero", "false"); break;
2093
    case 313: // --nl-ext-tf-taylor-deg
2094
      solver.setOption("nl-ext-tf-taylor-deg", optionarg); break;
2095
39
    case 314: // --nl-ext-tf-tplanes
2096
39
      solver.setOption("nl-ext-tf-tplanes", "true"); break;
2097
2
    case 315: // --no-nl-ext-tf-tplanes
2098
2
      solver.setOption("nl-ext-tf-tplanes", "false"); break;
2099
42
    case 316: // --nl-ext-tplanes
2100
42
      solver.setOption("nl-ext-tplanes", "true"); break;
2101
    case 317: // --no-nl-ext-tplanes
2102
      solver.setOption("nl-ext-tplanes", "false"); break;
2103
    case 318: // --nl-ext-tplanes-interleave
2104
      solver.setOption("nl-ext-tplanes-interleave", "true"); break;
2105
    case 319: // --no-nl-ext-tplanes-interleave
2106
      solver.setOption("nl-ext-tplanes-interleave", "false"); break;
2107
2
    case 320: // --nl-icp
2108
2
      solver.setOption("nl-icp", "true"); break;
2109
    case 321: // --no-nl-icp
2110
      solver.setOption("nl-icp", "false"); break;
2111
6
    case 322: // --nl-rlv
2112
6
      solver.setOption("nl-rlv", optionarg); break;
2113
    case 323: // --nl-rlv-assert-bounds
2114
      solver.setOption("nl-rlv-assert-bounds", "true"); break;
2115
    case 324: // --no-nl-rlv-assert-bounds
2116
      solver.setOption("nl-rlv-assert-bounds", "false"); break;
2117
2
    case 325: // --pb-rewrites
2118
2
      solver.setOption("pb-rewrites", "true"); break;
2119
    case 326: // --no-pb-rewrites
2120
      solver.setOption("pb-rewrites", "false"); break;
2121
    case 327: // --pivot-threshold
2122
      solver.setOption("pivot-threshold", optionarg); break;
2123
    case 328: // --pp-assert-max-sub-size
2124
      solver.setOption("pp-assert-max-sub-size", optionarg); break;
2125
    case 329: // --prop-row-length
2126
      solver.setOption("prop-row-length", optionarg); break;
2127
    case 330: // --replay-early-close-depth
2128
      solver.setOption("replay-early-close-depth", optionarg); break;
2129
    case 331: // --replay-failure-penalty
2130
      solver.setOption("replay-failure-penalty", optionarg); break;
2131
    case 332: // --replay-lemma-reject-cut
2132
      solver.setOption("replay-lemma-reject-cut", optionarg); break;
2133
    case 333: // --replay-num-err-penalty
2134
      solver.setOption("replay-num-err-penalty", optionarg); break;
2135
    case 334: // --replay-reject-cut
2136
      solver.setOption("replay-reject-cut", optionarg); break;
2137
    case 335: // --replay-soi-major-threshold
2138
      solver.setOption("replay-soi-major-threshold", optionarg); break;
2139
    case 336: // --replay-soi-major-threshold-pen
2140
      solver.setOption("replay-soi-major-threshold-pen", optionarg); break;
2141
    case 337: // --replay-soi-minor-threshold
2142
      solver.setOption("replay-soi-minor-threshold", optionarg); break;
2143
    case 338: // --replay-soi-minor-threshold-pen
2144
      solver.setOption("replay-soi-minor-threshold-pen", optionarg); break;
2145
    case 339: // --restrict-pivots
2146
      solver.setOption("restrict-pivots", "true"); break;
2147
    case 340: // --no-restrict-pivots
2148
      solver.setOption("restrict-pivots", "false"); break;
2149
    case 341: // --revert-arith-models-on-unsat
2150
      solver.setOption("revert-arith-models-on-unsat", "true"); break;
2151
    case 342: // --no-revert-arith-models-on-unsat
2152
      solver.setOption("revert-arith-models-on-unsat", "false"); break;
2153
    case 343: // --rr-turns
2154
      solver.setOption("rr-turns", optionarg); break;
2155
    case 344: // --se-solve-int
2156
      solver.setOption("se-solve-int", "true"); break;
2157
    case 345: // --no-se-solve-int
2158
      solver.setOption("se-solve-int", "false"); break;
2159
    case 346: // --simplex-check-period
2160
      solver.setOption("simplex-check-period", optionarg); break;
2161
    case 347: // --soi-qe
2162
      solver.setOption("soi-qe", "true"); break;
2163
    case 348: // --no-soi-qe
2164
      solver.setOption("soi-qe", "false"); break;
2165
    case 349: // --standard-effort-variable-order-pivots
2166
      solver.setOption("standard-effort-variable-order-pivots", optionarg); break;
2167
    case 350: // --unate-lemmas
2168
      solver.setOption("unate-lemmas", optionarg); break;
2169
    case 351: // --use-approx
2170
      solver.setOption("use-approx", "true"); break;
2171
    case 352: // --no-use-approx
2172
      solver.setOption("use-approx", "false"); break;
2173
    case 353: // --use-fcsimplex
2174
      solver.setOption("use-fcsimplex", "true"); break;
2175
    case 354: // --no-use-fcsimplex
2176
      solver.setOption("use-fcsimplex", "false"); break;
2177
    case 355: // --use-soi
2178
      solver.setOption("use-soi", "true"); break;
2179
    case 356: // --no-use-soi
2180
      solver.setOption("use-soi", "false"); break;
2181
    case 357: // --arrays-config
2182
      solver.setOption("arrays-config", optionarg); break;
2183
    case 358: // --arrays-eager-index
2184
      solver.setOption("arrays-eager-index", "true"); break;
2185
    case 359: // --no-arrays-eager-index
2186
      solver.setOption("arrays-eager-index", "false"); break;
2187
    case 360: // --arrays-eager-lemmas
2188
      solver.setOption("arrays-eager-lemmas", "true"); break;
2189
    case 361: // --no-arrays-eager-lemmas
2190
      solver.setOption("arrays-eager-lemmas", "false"); break;
2191
3
    case 362: // --arrays-exp
2192
3
      solver.setOption("arrays-exp", "true"); break;
2193
    case 363: // --no-arrays-exp
2194
      solver.setOption("arrays-exp", "false"); break;
2195
    case 364: // --arrays-model-based
2196
      solver.setOption("arrays-model-based", "true"); break;
2197
    case 365: // --no-arrays-model-based
2198
      solver.setOption("arrays-model-based", "false"); break;
2199
    case 366: // --arrays-optimize-linear
2200
      solver.setOption("arrays-optimize-linear", "true"); break;
2201
    case 367: // --no-arrays-optimize-linear
2202
      solver.setOption("arrays-optimize-linear", "false"); break;
2203
    case 368: // --arrays-prop
2204
      solver.setOption("arrays-prop", optionarg); break;
2205
    case 369: // --arrays-reduce-sharing
2206
      solver.setOption("arrays-reduce-sharing", "true"); break;
2207
    case 370: // --no-arrays-reduce-sharing
2208
      solver.setOption("arrays-reduce-sharing", "false"); break;
2209
    case 371: // --arrays-weak-equiv
2210
      solver.setOption("arrays-weak-equiv", "true"); break;
2211
    case 372: // --no-arrays-weak-equiv
2212
      solver.setOption("arrays-weak-equiv", "false"); break;
2213
    case 'd': // -d
2214
    case 373: // --debug
2215
      solver.setOption("debug", optionarg); break;
2216
    case 374: // --err
2217
    case 375: // --diagnostic-output-channel
2218
      solver.setOption("err", optionarg); break;
2219
    case 376: // --in
2220
      solver.setOption("in", optionarg); break;
2221
664
    case 'i': // -i
2222
    case 377: // --incremental
2223
664
      solver.setOption("incremental", "true"); break;
2224
    case 378: // --no-incremental
2225
      solver.setOption("incremental", "false"); break;
2226
226
    case 'L': // -L
2227
    case 379: // --lang
2228
    case 380: // --input-language
2229
226
      solver.setOption("lang", optionarg); break;
2230
    case 381: // --language-help
2231
      solver.setOption("language-help", "true"); break;
2232
    case 382: // --no-language-help
2233
      solver.setOption("language-help", "false"); break;
2234
    case 383: // --out
2235
    case 384: // --regular-output-channel
2236
      solver.setOption("out", optionarg); break;
2237
4
    case 'o': // -o
2238
    case 385: // --output
2239
4
      solver.setOption("output", optionarg); break;
2240
    case 386: // --output-lang
2241
    case 387: // --output-language
2242
      solver.setOption("output-lang", optionarg); break;
2243
    case 388: // --parse-only
2244
      solver.setOption("parse-only", "true"); break;
2245
    case 389: // --no-parse-only
2246
      solver.setOption("parse-only", "false"); break;
2247
3
    case 390: // --preprocess-only
2248
3
      solver.setOption("preprocess-only", "true"); break;
2249
    case 391: // --no-preprocess-only
2250
      solver.setOption("preprocess-only", "false"); break;
2251
2
    case 392: // --print-success
2252
2
      solver.setOption("print-success", "true"); break;
2253
    case 393: // --no-print-success
2254
      solver.setOption("print-success", "false"); break;
2255
192
    case 'q': // -q
2256
    case 394: // --quiet
2257
192
      solver.setOption("quiet", ""); break;
2258
    case 395: // --rlimit
2259
      solver.setOption("rlimit", optionarg); break;
2260
    case 396: // --rlimit-per
2261
    case 397: // --reproducible-resource-limit
2262
      solver.setOption("rlimit-per", optionarg); break;
2263
    case 398: // --rweight
2264
      solver.setOption("rweight", optionarg); break;
2265
    case 399: // --stats
2266
      solver.setOption("stats", "true"); break;
2267
    case 400: // --no-stats
2268
      solver.setOption("stats", "false"); break;
2269
    case 401: // --stats-all
2270
      solver.setOption("stats-all", "true"); break;
2271
    case 402: // --no-stats-all
2272
      solver.setOption("stats-all", "false"); break;
2273
    case 403: // --stats-every-query
2274
      solver.setOption("stats-every-query", "true"); break;
2275
    case 404: // --no-stats-every-query
2276
      solver.setOption("stats-every-query", "false"); break;
2277
    case 405: // --stats-expert
2278
      solver.setOption("stats-expert", "true"); break;
2279
    case 406: // --no-stats-expert
2280
      solver.setOption("stats-expert", "false"); break;
2281
2
    case 407: // --tlimit
2282
2
      solver.setOption("tlimit", optionarg); break;
2283
6
    case 408: // --tlimit-per
2284
6
      solver.setOption("tlimit-per", optionarg); break;
2285
    case 't': // -t
2286
    case 409: // --trace
2287
      solver.setOption("trace", optionarg); break;
2288
3
    case 'v': // -v
2289
    case 410: // --verbose
2290
3
      solver.setOption("verbose", ""); break;
2291
    case 411: // --verbosity
2292
      solver.setOption("verbosity", optionarg); break;
2293
41
    case 412: // --bitblast
2294
41
      solver.setOption("bitblast", optionarg); break;
2295
    case 413: // --bitblast-aig
2296
      solver.setOption("bitblast-aig", "true"); break;
2297
    case 414: // --no-bitblast-aig
2298
      solver.setOption("bitblast-aig", "false"); break;
2299
    case 415: // --bitwise-eq
2300
      solver.setOption("bitwise-eq", "true"); break;
2301
    case 416: // --no-bitwise-eq
2302
      solver.setOption("bitwise-eq", "false"); break;
2303
12
    case 417: // --bool-to-bv
2304
12
      solver.setOption("bool-to-bv", optionarg); break;
2305
4
    case 418: // --bv-abstraction
2306
4
      solver.setOption("bv-abstraction", "true"); break;
2307
    case 419: // --no-bv-abstraction
2308
      solver.setOption("bv-abstraction", "false"); break;
2309
    case 420: // --bv-aig-simp
2310
      solver.setOption("bv-aig-simp", optionarg); break;
2311
    case 421: // --bv-alg-extf
2312
      solver.setOption("bv-alg-extf", "true"); break;
2313
    case 422: // --no-bv-alg-extf
2314
      solver.setOption("bv-alg-extf", "false"); break;
2315
    case 423: // --bv-algebraic-budget
2316
      solver.setOption("bv-algebraic-budget", optionarg); break;
2317
    case 424: // --bv-algebraic-solver
2318
      solver.setOption("bv-algebraic-solver", "true"); break;
2319
    case 425: // --no-bv-algebraic-solver
2320
      solver.setOption("bv-algebraic-solver", "false"); break;
2321
6
    case 426: // --bv-assert-input
2322
6
      solver.setOption("bv-assert-input", "true"); break;
2323
    case 427: // --no-bv-assert-input
2324
      solver.setOption("bv-assert-input", "false"); break;
2325
    case 428: // --bv-eager-explanations
2326
      solver.setOption("bv-eager-explanations", "true"); break;
2327
    case 429: // --no-bv-eager-explanations
2328
      solver.setOption("bv-eager-explanations", "false"); break;
2329
    case 430: // --bv-eq-solver
2330
      solver.setOption("bv-eq-solver", "true"); break;
2331
2
    case 431: // --no-bv-eq-solver
2332
2
      solver.setOption("bv-eq-solver", "false"); break;
2333
    case 432: // --bv-extract-arith
2334
      solver.setOption("bv-extract-arith", "true"); break;
2335
    case 433: // --no-bv-extract-arith
2336
      solver.setOption("bv-extract-arith", "false"); break;
2337
    case 434: // --bv-gauss-elim
2338
      solver.setOption("bv-gauss-elim", "true"); break;
2339
    case 435: // --no-bv-gauss-elim
2340
      solver.setOption("bv-gauss-elim", "false"); break;
2341
    case 436: // --bv-inequality-solver
2342
      solver.setOption("bv-inequality-solver", "true"); break;
2343
    case 437: // --no-bv-inequality-solver
2344
      solver.setOption("bv-inequality-solver", "false"); break;
2345
2
    case 438: // --bv-intro-pow2
2346
2
      solver.setOption("bv-intro-pow2", "true"); break;
2347
    case 439: // --no-bv-intro-pow2
2348
      solver.setOption("bv-intro-pow2", "false"); break;
2349
    case 440: // --bv-num-func
2350
      solver.setOption("bv-num-func", optionarg); break;
2351
2
    case 441: // --bv-print-consts-as-indexed-symbols
2352
2
      solver.setOption("bv-print-consts-as-indexed-symbols", "true"); break;
2353
    case 442: // --no-bv-print-consts-as-indexed-symbols
2354
      solver.setOption("bv-print-consts-as-indexed-symbols", "false"); break;
2355
    case 443: // --bv-propagate
2356
      solver.setOption("bv-propagate", "true"); break;
2357
    case 444: // --no-bv-propagate
2358
      solver.setOption("bv-propagate", "false"); break;
2359
    case 445: // --bv-quick-xplain
2360
      solver.setOption("bv-quick-xplain", "true"); break;
2361
    case 446: // --no-bv-quick-xplain
2362
      solver.setOption("bv-quick-xplain", "false"); break;
2363
14
    case 447: // --bv-sat-solver
2364
14
      solver.setOption("bv-sat-solver", optionarg); break;
2365
    case 448: // --bv-skolemize
2366
      solver.setOption("bv-skolemize", "true"); break;
2367
    case 449: // --no-bv-skolemize
2368
      solver.setOption("bv-skolemize", "false"); break;
2369
46
    case 450: // --bv-solver
2370
46
      solver.setOption("bv-solver", optionarg); break;
2371
10
    case 451: // --bv-to-bool
2372
10
      solver.setOption("bv-to-bool", "true"); break;
2373
    case 452: // --no-bv-to-bool
2374
      solver.setOption("bv-to-bool", "false"); break;
2375
    case 453: // --cdt-bisimilar
2376
      solver.setOption("cdt-bisimilar", "true"); break;
2377
    case 454: // --no-cdt-bisimilar
2378
      solver.setOption("cdt-bisimilar", "false"); break;
2379
    case 455: // --dt-binary-split
2380
      solver.setOption("dt-binary-split", "true"); break;
2381
    case 456: // --no-dt-binary-split
2382
      solver.setOption("dt-binary-split", "false"); break;
2383
    case 457: // --dt-blast-splits
2384
      solver.setOption("dt-blast-splits", "true"); break;
2385
    case 458: // --no-dt-blast-splits
2386
      solver.setOption("dt-blast-splits", "false"); break;
2387
    case 459: // --dt-cyclic
2388
      solver.setOption("dt-cyclic", "true"); break;
2389
    case 460: // --no-dt-cyclic
2390
      solver.setOption("dt-cyclic", "false"); break;
2391
    case 461: // --dt-force-assignment
2392
      solver.setOption("dt-force-assignment", "true"); break;
2393
    case 462: // --no-dt-force-assignment
2394
      solver.setOption("dt-force-assignment", "false"); break;
2395
    case 463: // --dt-infer-as-lemmas
2396
      solver.setOption("dt-infer-as-lemmas", "true"); break;
2397
    case 464: // --no-dt-infer-as-lemmas
2398
      solver.setOption("dt-infer-as-lemmas", "false"); break;
2399
10
    case 465: // --dt-nested-rec
2400
10
      solver.setOption("dt-nested-rec", "true"); break;
2401
    case 466: // --no-dt-nested-rec
2402
      solver.setOption("dt-nested-rec", "false"); break;
2403
    case 467: // --dt-polite-optimize
2404
      solver.setOption("dt-polite-optimize", "true"); break;
2405
    case 468: // --no-dt-polite-optimize
2406
      solver.setOption("dt-polite-optimize", "false"); break;
2407
5
    case 469: // --dt-rewrite-error-sel
2408
5
      solver.setOption("dt-rewrite-error-sel", "true"); break;
2409
    case 470: // --no-dt-rewrite-error-sel
2410
      solver.setOption("dt-rewrite-error-sel", "false"); break;
2411
    case 471: // --dt-share-sel
2412
      solver.setOption("dt-share-sel", "true"); break;
2413
    case 472: // --no-dt-share-sel
2414
      solver.setOption("dt-share-sel", "false"); break;
2415
11
    case 473: // --sygus-abort-size
2416
11
      solver.setOption("sygus-abort-size", optionarg); break;
2417
2
    case 474: // --sygus-fair
2418
2
      solver.setOption("sygus-fair", optionarg); break;
2419
    case 475: // --sygus-fair-max
2420
      solver.setOption("sygus-fair-max", "true"); break;
2421
    case 476: // --no-sygus-fair-max
2422
      solver.setOption("sygus-fair-max", "false"); break;
2423
    case 477: // --sygus-sym-break
2424
      solver.setOption("sygus-sym-break", "true"); break;
2425
6
    case 478: // --no-sygus-sym-break
2426
6
      solver.setOption("sygus-sym-break", "false"); break;
2427
    case 479: // --sygus-sym-break-agg
2428
      solver.setOption("sygus-sym-break-agg", "true"); break;
2429
    case 480: // --no-sygus-sym-break-agg
2430
      solver.setOption("sygus-sym-break-agg", "false"); break;
2431
    case 481: // --sygus-sym-break-dynamic
2432
      solver.setOption("sygus-sym-break-dynamic", "true"); break;
2433
    case 482: // --no-sygus-sym-break-dynamic
2434
      solver.setOption("sygus-sym-break-dynamic", "false"); break;
2435
    case 483: // --sygus-sym-break-lazy
2436
      solver.setOption("sygus-sym-break-lazy", "true"); break;
2437
    case 484: // --no-sygus-sym-break-lazy
2438
      solver.setOption("sygus-sym-break-lazy", "false"); break;
2439
    case 485: // --sygus-sym-break-pbe
2440
      solver.setOption("sygus-sym-break-pbe", "true"); break;
2441
    case 486: // --no-sygus-sym-break-pbe
2442
      solver.setOption("sygus-sym-break-pbe", "false"); break;
2443
    case 487: // --sygus-sym-break-rlv
2444
      solver.setOption("sygus-sym-break-rlv", "true"); break;
2445
    case 488: // --no-sygus-sym-break-rlv
2446
      solver.setOption("sygus-sym-break-rlv", "false"); break;
2447
94
    case 489: // --decision
2448
    case 490: // --decision-mode
2449
94
      solver.setOption("decision", optionarg); break;
2450
    case 491: // --decision-random-weight
2451
      solver.setOption("decision-random-weight", optionarg); break;
2452
    case 492: // --decision-threshold
2453
      solver.setOption("decision-threshold", optionarg); break;
2454
    case 493: // --decision-use-weight
2455
      solver.setOption("decision-use-weight", "true"); break;
2456
    case 494: // --no-decision-use-weight
2457
      solver.setOption("decision-use-weight", "false"); break;
2458
    case 495: // --decision-weight-internal
2459
      solver.setOption("decision-weight-internal", optionarg); break;
2460
3
    case 496: // --jh-rlv-order
2461
3
      solver.setOption("jh-rlv-order", "true"); break;
2462
7
    case 497: // --no-jh-rlv-order
2463
7
      solver.setOption("jh-rlv-order", "false"); break;
2464
    case 498: // --jh-skolem
2465
      solver.setOption("jh-skolem", optionarg); break;
2466
    case 499: // --jh-skolem-rlv
2467
      solver.setOption("jh-skolem-rlv", optionarg); break;
2468
1
    case 500: // --dag-thresh
2469
1
      solver.setOption("dag-thresh", optionarg); break;
2470
    case 501: // --expr-depth
2471
      solver.setOption("expr-depth", optionarg); break;
2472
    case 502: // --type-checking
2473
      solver.setOption("type-checking", "true"); break;
2474
    case 503: // --no-type-checking
2475
      solver.setOption("type-checking", "false"); break;
2476
22
    case 504: // --fp-exp
2477
22
      solver.setOption("fp-exp", "true"); break;
2478
    case 505: // --no-fp-exp
2479
      solver.setOption("fp-exp", "false"); break;
2480
3
    case 506: // --fp-lazy-wb
2481
3
      solver.setOption("fp-lazy-wb", "true"); break;
2482
    case 507: // --no-fp-lazy-wb
2483
      solver.setOption("fp-lazy-wb", "false"); break;
2484
    case 508: // --copyright
2485
      solver.setOption("copyright", ""); break;
2486
    case 509: // --dump-difficulty
2487
      solver.setOption("dump-difficulty", "true"); break;
2488
    case 510: // --no-dump-difficulty
2489
      solver.setOption("dump-difficulty", "false"); break;
2490
12
    case 511: // --dump-instantiations
2491
12
      solver.setOption("dump-instantiations", "true"); break;
2492
    case 512: // --no-dump-instantiations
2493
      solver.setOption("dump-instantiations", "false"); break;
2494
    case 513: // --dump-instantiations-debug
2495
      solver.setOption("dump-instantiations-debug", "true"); break;
2496
    case 514: // --no-dump-instantiations-debug
2497
      solver.setOption("dump-instantiations-debug", "false"); break;
2498
6
    case 515: // --dump-models
2499
6
      solver.setOption("dump-models", "true"); break;
2500
    case 516: // --no-dump-models
2501
      solver.setOption("dump-models", "false"); break;
2502
    case 517: // --dump-proofs
2503
      solver.setOption("dump-proofs", "true"); break;
2504
    case 518: // --no-dump-proofs
2505
      solver.setOption("dump-proofs", "false"); break;
2506
    case 519: // --dump-unsat-cores
2507
      solver.setOption("dump-unsat-cores", "true"); break;
2508
    case 520: // --no-dump-unsat-cores
2509
      solver.setOption("dump-unsat-cores", "false"); break;
2510
3
    case 521: // --dump-unsat-cores-full
2511
3
      solver.setOption("dump-unsat-cores-full", "true"); break;
2512
    case 522: // --no-dump-unsat-cores-full
2513
      solver.setOption("dump-unsat-cores-full", "false"); break;
2514
    case 523: // --early-exit
2515
      solver.setOption("early-exit", "true"); break;
2516
    case 524: // --no-early-exit
2517
      solver.setOption("early-exit", "false"); break;
2518
    case 525: // --filename
2519
      solver.setOption("filename", optionarg); break;
2520
    case 526: // --force-no-limit-cpu-while-dump
2521
      solver.setOption("force-no-limit-cpu-while-dump", "true"); break;
2522
    case 527: // --no-force-no-limit-cpu-while-dump
2523
      solver.setOption("force-no-limit-cpu-while-dump", "false"); break;
2524
    case 'h': // -h
2525
    case 528: // --help
2526
      solver.setOption("help", "true"); break;
2527
    case 529: // --interactive
2528
      solver.setOption("interactive", "true"); break;
2529
    case 530: // --no-interactive
2530
      solver.setOption("interactive", "false"); break;
2531
    case 's': // -s
2532
    case 531: // --seed
2533
      solver.setOption("seed", optionarg); break;
2534
    case 532: // --segv-spin
2535
      solver.setOption("segv-spin", "true"); break;
2536
    case 533: // --no-segv-spin
2537
      solver.setOption("segv-spin", "false"); break;
2538
2626
    case 534: // --show-config
2539
2626
      solver.setOption("show-config", ""); break;
2540
    case 535: // --show-debug-tags
2541
      solver.setOption("show-debug-tags", ""); break;
2542
    case 536: // --show-trace-tags
2543
      solver.setOption("show-trace-tags", ""); break;
2544
    case 'V': // -V
2545
    case 537: // --version
2546
      solver.setOption("version", "true"); break;
2547
    case 538: // --filesystem-access
2548
      solver.setOption("filesystem-access", "true"); break;
2549
    case 539: // --no-filesystem-access
2550
      solver.setOption("filesystem-access", "false"); break;
2551
9
    case 540: // --force-logic
2552
9
      solver.setOption("force-logic", optionarg); break;
2553
    case 541: // --global-declarations
2554
      solver.setOption("global-declarations", "true"); break;
2555
    case 542: // --no-global-declarations
2556
      solver.setOption("global-declarations", "false"); break;
2557
    case 543: // --mmap
2558
      solver.setOption("mmap", "true"); break;
2559
    case 544: // --no-mmap
2560
      solver.setOption("mmap", "false"); break;
2561
    case 545: // --semantic-checks
2562
      solver.setOption("semantic-checks", "true"); break;
2563
    case 546: // --no-semantic-checks
2564
      solver.setOption("semantic-checks", "false"); break;
2565
9
    case 547: // --strict-parsing
2566
9
      solver.setOption("strict-parsing", "true"); break;
2567
    case 548: // --no-strict-parsing
2568
      solver.setOption("strict-parsing", "false"); break;
2569
    case 549: // --flatten-ho-chains
2570
      solver.setOption("flatten-ho-chains", "true"); break;
2571
    case 550: // --no-flatten-ho-chains
2572
      solver.setOption("flatten-ho-chains", "false"); break;
2573
    case 551: // --model-format
2574
      solver.setOption("model-format", optionarg); break;
2575
3
    case 552: // --print-inst
2576
3
      solver.setOption("print-inst", optionarg); break;
2577
9
    case 553: // --print-inst-full
2578
9
      solver.setOption("print-inst-full", "true"); break;
2579
3
    case 554: // --no-print-inst-full
2580
3
      solver.setOption("print-inst-full", "false"); break;
2581
2
    case 555: // --proof-check
2582
2
      solver.setOption("proof-check", optionarg); break;
2583
    case 556: // --proof-format-mode
2584
      solver.setOption("proof-format-mode", optionarg); break;
2585
    case 557: // --proof-granularity
2586
      solver.setOption("proof-granularity", optionarg); break;
2587
    case 558: // --proof-pedantic
2588
      solver.setOption("proof-pedantic", optionarg); break;
2589
    case 559: // --proof-pp-merge
2590
      solver.setOption("proof-pp-merge", "true"); break;
2591
    case 560: // --no-proof-pp-merge
2592
      solver.setOption("proof-pp-merge", "false"); break;
2593
    case 561: // --proof-print-conclusion
2594
      solver.setOption("proof-print-conclusion", "true"); break;
2595
    case 562: // --no-proof-print-conclusion
2596
      solver.setOption("proof-print-conclusion", "false"); break;
2597
    case 563: // --minisat-dump-dimacs
2598
      solver.setOption("minisat-dump-dimacs", "true"); break;
2599
    case 564: // --no-minisat-dump-dimacs
2600
      solver.setOption("minisat-dump-dimacs", "false"); break;
2601
    case 565: // --minisat-elimination
2602
      solver.setOption("minisat-elimination", "true"); break;
2603
    case 566: // --no-minisat-elimination
2604
      solver.setOption("minisat-elimination", "false"); break;
2605
    case 567: // --random-freq
2606
    case 568: // --random-frequency
2607
      solver.setOption("random-freq", optionarg); break;
2608
    case 569: // --random-seed
2609
      solver.setOption("random-seed", optionarg); break;
2610
    case 570: // --refine-conflicts
2611
      solver.setOption("refine-conflicts", "true"); break;
2612
    case 571: // --no-refine-conflicts
2613
      solver.setOption("refine-conflicts", "false"); break;
2614
    case 572: // --restart-int-base
2615
      solver.setOption("restart-int-base", optionarg); break;
2616
    case 573: // --restart-int-inc
2617
      solver.setOption("restart-int-inc", optionarg); break;
2618
    case 574: // --ag-miniscope-quant
2619
      solver.setOption("ag-miniscope-quant", "true"); break;
2620
    case 575: // --no-ag-miniscope-quant
2621
      solver.setOption("ag-miniscope-quant", "false"); break;
2622
3
    case 576: // --cegis-sample
2623
3
      solver.setOption("cegis-sample", optionarg); break;
2624
17
    case 577: // --cegqi
2625
17
      solver.setOption("cegqi", "true"); break;
2626
2
    case 578: // --no-cegqi
2627
2
      solver.setOption("cegqi", "false"); break;
2628
15
    case 579: // --cegqi-all
2629
15
      solver.setOption("cegqi-all", "true"); break;
2630
    case 580: // --no-cegqi-all
2631
      solver.setOption("cegqi-all", "false"); break;
2632
106
    case 581: // --cegqi-bv
2633
106
      solver.setOption("cegqi-bv", "true"); break;
2634
    case 582: // --no-cegqi-bv
2635
      solver.setOption("cegqi-bv", "false"); break;
2636
    case 583: // --cegqi-bv-concat-inv
2637
      solver.setOption("cegqi-bv-concat-inv", "true"); break;
2638
    case 584: // --no-cegqi-bv-concat-inv
2639
      solver.setOption("cegqi-bv-concat-inv", "false"); break;
2640
82
    case 585: // --cegqi-bv-ineq
2641
82
      solver.setOption("cegqi-bv-ineq", optionarg); break;
2642
    case 586: // --cegqi-bv-interleave-value
2643
      solver.setOption("cegqi-bv-interleave-value", "true"); break;
2644
    case 587: // --no-cegqi-bv-interleave-value
2645
      solver.setOption("cegqi-bv-interleave-value", "false"); break;
2646
    case 588: // --cegqi-bv-linear
2647
      solver.setOption("cegqi-bv-linear", "true"); break;
2648
    case 589: // --no-cegqi-bv-linear
2649
      solver.setOption("cegqi-bv-linear", "false"); break;
2650
2
    case 590: // --cegqi-bv-rm-extract
2651
2
      solver.setOption("cegqi-bv-rm-extract", "true"); break;
2652
    case 591: // --no-cegqi-bv-rm-extract
2653
      solver.setOption("cegqi-bv-rm-extract", "false"); break;
2654
    case 592: // --cegqi-bv-solve-nl
2655
      solver.setOption("cegqi-bv-solve-nl", "true"); break;
2656
    case 593: // --no-cegqi-bv-solve-nl
2657
      solver.setOption("cegqi-bv-solve-nl", "false"); break;
2658
5
    case 594: // --cegqi-full
2659
5
      solver.setOption("cegqi-full", "true"); break;
2660
82
    case 595: // --no-cegqi-full
2661
82
      solver.setOption("cegqi-full", "false"); break;
2662
    case 596: // --cegqi-innermost
2663
      solver.setOption("cegqi-innermost", "true"); break;
2664
    case 597: // --no-cegqi-innermost
2665
      solver.setOption("cegqi-innermost", "false"); break;
2666
    case 598: // --cegqi-midpoint
2667
      solver.setOption("cegqi-midpoint", "true"); break;
2668
    case 599: // --no-cegqi-midpoint
2669
      solver.setOption("cegqi-midpoint", "false"); break;
2670
    case 600: // --cegqi-min-bounds
2671
      solver.setOption("cegqi-min-bounds", "true"); break;
2672
    case 601: // --no-cegqi-min-bounds
2673
      solver.setOption("cegqi-min-bounds", "false"); break;
2674
    case 602: // --cegqi-model
2675
      solver.setOption("cegqi-model", "true"); break;
2676
    case 603: // --no-cegqi-model
2677
      solver.setOption("cegqi-model", "false"); break;
2678
3
    case 604: // --cegqi-multi-inst
2679
3
      solver.setOption("cegqi-multi-inst", "true"); break;
2680
    case 605: // --no-cegqi-multi-inst
2681
      solver.setOption("cegqi-multi-inst", "false"); break;
2682
7
    case 606: // --cegqi-nested-qe
2683
7
      solver.setOption("cegqi-nested-qe", "true"); break;
2684
    case 607: // --no-cegqi-nested-qe
2685
      solver.setOption("cegqi-nested-qe", "false"); break;
2686
    case 608: // --cegqi-nopt
2687
      solver.setOption("cegqi-nopt", "true"); break;
2688
    case 609: // --no-cegqi-nopt
2689
      solver.setOption("cegqi-nopt", "false"); break;
2690
    case 610: // --cegqi-repeat-lit
2691
      solver.setOption("cegqi-repeat-lit", "true"); break;
2692
    case 611: // --no-cegqi-repeat-lit
2693
      solver.setOption("cegqi-repeat-lit", "false"); break;
2694
    case 612: // --cegqi-round-up-lia
2695
      solver.setOption("cegqi-round-up-lia", "true"); break;
2696
    case 613: // --no-cegqi-round-up-lia
2697
      solver.setOption("cegqi-round-up-lia", "false"); break;
2698
    case 614: // --cegqi-sat
2699
      solver.setOption("cegqi-sat", "true"); break;
2700
    case 615: // --no-cegqi-sat
2701
      solver.setOption("cegqi-sat", "false"); break;
2702
3
    case 616: // --cegqi-use-inf-int
2703
3
      solver.setOption("cegqi-use-inf-int", "true"); break;
2704
    case 617: // --no-cegqi-use-inf-int
2705
      solver.setOption("cegqi-use-inf-int", "false"); break;
2706
3
    case 618: // --cegqi-use-inf-real
2707
3
      solver.setOption("cegqi-use-inf-real", "true"); break;
2708
    case 619: // --no-cegqi-use-inf-real
2709
      solver.setOption("cegqi-use-inf-real", "false"); break;
2710
    case 620: // --cond-var-split-agg-quant
2711
      solver.setOption("cond-var-split-agg-quant", "true"); break;
2712
    case 621: // --no-cond-var-split-agg-quant
2713
      solver.setOption("cond-var-split-agg-quant", "false"); break;
2714
    case 622: // --cond-var-split-quant
2715
      solver.setOption("cond-var-split-quant", "true"); break;
2716
    case 623: // --no-cond-var-split-quant
2717
      solver.setOption("cond-var-split-quant", "false"); break;
2718
    case 624: // --conjecture-filter-active-terms
2719
      solver.setOption("conjecture-filter-active-terms", "true"); break;
2720
    case 625: // --no-conjecture-filter-active-terms
2721
      solver.setOption("conjecture-filter-active-terms", "false"); break;
2722
    case 626: // --conjecture-filter-canonical
2723
      solver.setOption("conjecture-filter-canonical", "true"); break;
2724
    case 627: // --no-conjecture-filter-canonical
2725
      solver.setOption("conjecture-filter-canonical", "false"); break;
2726
    case 628: // --conjecture-filter-model
2727
      solver.setOption("conjecture-filter-model", "true"); break;
2728
    case 629: // --no-conjecture-filter-model
2729
      solver.setOption("conjecture-filter-model", "false"); break;
2730
3
    case 630: // --conjecture-gen
2731
3
      solver.setOption("conjecture-gen", "true"); break;
2732
    case 631: // --no-conjecture-gen
2733
      solver.setOption("conjecture-gen", "false"); break;
2734
    case 632: // --conjecture-gen-gt-enum
2735
      solver.setOption("conjecture-gen-gt-enum", optionarg); break;
2736
    case 633: // --conjecture-gen-max-depth
2737
      solver.setOption("conjecture-gen-max-depth", optionarg); break;
2738
    case 634: // --conjecture-gen-per-round
2739
      solver.setOption("conjecture-gen-per-round", optionarg); break;
2740
    case 635: // --conjecture-gen-uee-intro
2741
      solver.setOption("conjecture-gen-uee-intro", "true"); break;
2742
    case 636: // --no-conjecture-gen-uee-intro
2743
      solver.setOption("conjecture-gen-uee-intro", "false"); break;
2744
    case 637: // --conjecture-no-filter
2745
      solver.setOption("conjecture-no-filter", "true"); break;
2746
    case 638: // --no-conjecture-no-filter
2747
      solver.setOption("conjecture-no-filter", "false"); break;
2748
    case 639: // --dt-stc-ind
2749
      solver.setOption("dt-stc-ind", "true"); break;
2750
    case 640: // --no-dt-stc-ind
2751
      solver.setOption("dt-stc-ind", "false"); break;
2752
    case 641: // --dt-var-exp-quant
2753
      solver.setOption("dt-var-exp-quant", "true"); break;
2754
    case 642: // --no-dt-var-exp-quant
2755
      solver.setOption("dt-var-exp-quant", "false"); break;
2756
    case 643: // --e-matching
2757
      solver.setOption("e-matching", "true"); break;
2758
    case 644: // --no-e-matching
2759
      solver.setOption("e-matching", "false"); break;
2760
    case 645: // --elim-taut-quant
2761
      solver.setOption("elim-taut-quant", "true"); break;
2762
    case 646: // --no-elim-taut-quant
2763
      solver.setOption("elim-taut-quant", "false"); break;
2764
8
    case 647: // --ext-rewrite-quant
2765
8
      solver.setOption("ext-rewrite-quant", "true"); break;
2766
    case 648: // --no-ext-rewrite-quant
2767
      solver.setOption("ext-rewrite-quant", "false"); break;
2768
159
    case 649: // --finite-model-find
2769
159
      solver.setOption("finite-model-find", "true"); break;
2770
1
    case 650: // --no-finite-model-find
2771
1
      solver.setOption("finite-model-find", "false"); break;
2772
30
    case 651: // --fmf-bound
2773
30
      solver.setOption("fmf-bound", "true"); break;
2774
    case 652: // --no-fmf-bound
2775
      solver.setOption("fmf-bound", "false"); break;
2776
6
    case 653: // --fmf-bound-int
2777
6
      solver.setOption("fmf-bound-int", "true"); break;
2778
    case 654: // --no-fmf-bound-int
2779
      solver.setOption("fmf-bound-int", "false"); break;
2780
3
    case 655: // --fmf-bound-lazy
2781
3
      solver.setOption("fmf-bound-lazy", "true"); break;
2782
    case 656: // --no-fmf-bound-lazy
2783
      solver.setOption("fmf-bound-lazy", "false"); break;
2784
    case 657: // --fmf-fmc-simple
2785
      solver.setOption("fmf-fmc-simple", "true"); break;
2786
    case 658: // --no-fmf-fmc-simple
2787
      solver.setOption("fmf-fmc-simple", "false"); break;
2788
    case 659: // --fmf-fresh-dc
2789
      solver.setOption("fmf-fresh-dc", "true"); break;
2790
    case 660: // --no-fmf-fresh-dc
2791
      solver.setOption("fmf-fresh-dc", "false"); break;
2792
37
    case 661: // --fmf-fun
2793
37
      solver.setOption("fmf-fun", "true"); break;
2794
    case 662: // --no-fmf-fun
2795
      solver.setOption("fmf-fun", "false"); break;
2796
10
    case 663: // --fmf-fun-rlv
2797
10
      solver.setOption("fmf-fun-rlv", "true"); break;
2798
    case 664: // --no-fmf-fun-rlv
2799
      solver.setOption("fmf-fun-rlv", "false"); break;
2800
7
    case 665: // --fmf-inst-engine
2801
7
      solver.setOption("fmf-inst-engine", "true"); break;
2802
    case 666: // --no-fmf-inst-engine
2803
      solver.setOption("fmf-inst-engine", "false"); break;
2804
    case 667: // --fmf-type-completion-thresh
2805
      solver.setOption("fmf-type-completion-thresh", optionarg); break;
2806
    case 668: // --fs-interleave
2807
      solver.setOption("fs-interleave", "true"); break;
2808
    case 669: // --no-fs-interleave
2809
      solver.setOption("fs-interleave", "false"); break;
2810
3
    case 670: // --fs-stratify
2811
3
      solver.setOption("fs-stratify", "true"); break;
2812
    case 671: // --no-fs-stratify
2813
      solver.setOption("fs-stratify", "false"); break;
2814
    case 672: // --fs-sum
2815
      solver.setOption("fs-sum", "true"); break;
2816
    case 673: // --no-fs-sum
2817
      solver.setOption("fs-sum", "false"); break;
2818
76
    case 674: // --full-saturate-quant
2819
76
      solver.setOption("full-saturate-quant", "true"); break;
2820
    case 675: // --no-full-saturate-quant
2821
      solver.setOption("full-saturate-quant", "false"); break;
2822
3
    case 676: // --full-saturate-quant-limit
2823
3
      solver.setOption("full-saturate-quant-limit", optionarg); break;
2824
    case 677: // --full-saturate-quant-rd
2825
      solver.setOption("full-saturate-quant-rd", "true"); break;
2826
    case 678: // --no-full-saturate-quant-rd
2827
      solver.setOption("full-saturate-quant-rd", "false"); break;
2828
6
    case 679: // --global-negate
2829
6
      solver.setOption("global-negate", "true"); break;
2830
    case 680: // --no-global-negate
2831
      solver.setOption("global-negate", "false"); break;
2832
8
    case 681: // --ho-elim
2833
8
      solver.setOption("ho-elim", "true"); break;
2834
    case 682: // --no-ho-elim
2835
      solver.setOption("ho-elim", "false"); break;
2836
1
    case 683: // --ho-elim-store-ax
2837
1
      solver.setOption("ho-elim-store-ax", "true"); break;
2838
    case 684: // --no-ho-elim-store-ax
2839
      solver.setOption("ho-elim-store-ax", "false"); break;
2840
    case 685: // --ho-matching
2841
      solver.setOption("ho-matching", "true"); break;
2842
    case 686: // --no-ho-matching
2843
      solver.setOption("ho-matching", "false"); break;
2844
    case 687: // --ho-matching-var-priority
2845
      solver.setOption("ho-matching-var-priority", "true"); break;
2846
    case 688: // --no-ho-matching-var-priority
2847
      solver.setOption("ho-matching-var-priority", "false"); break;
2848
    case 689: // --ho-merge-term-db
2849
      solver.setOption("ho-merge-term-db", "true"); break;
2850
    case 690: // --no-ho-merge-term-db
2851
      solver.setOption("ho-merge-term-db", "false"); break;
2852
    case 691: // --increment-triggers
2853
      solver.setOption("increment-triggers", "true"); break;
2854
    case 692: // --no-increment-triggers
2855
      solver.setOption("increment-triggers", "false"); break;
2856
    case 693: // --inst-level-input-only
2857
      solver.setOption("inst-level-input-only", "true"); break;
2858
    case 694: // --no-inst-level-input-only
2859
      solver.setOption("inst-level-input-only", "false"); break;
2860
3
    case 695: // --inst-max-level
2861
3
      solver.setOption("inst-max-level", optionarg); break;
2862
    case 696: // --inst-max-rounds
2863
      solver.setOption("inst-max-rounds", optionarg); break;
2864
    case 697: // --inst-no-entail
2865
      solver.setOption("inst-no-entail", "true"); break;
2866
    case 698: // --no-inst-no-entail
2867
      solver.setOption("inst-no-entail", "false"); break;
2868
3
    case 699: // --inst-when
2869
3
      solver.setOption("inst-when", optionarg); break;
2870
    case 700: // --inst-when-phase
2871
      solver.setOption("inst-when-phase", optionarg); break;
2872
    case 701: // --inst-when-strict-interleave
2873
      solver.setOption("inst-when-strict-interleave", "true"); break;
2874
    case 702: // --no-inst-when-strict-interleave
2875
      solver.setOption("inst-when-strict-interleave", "false"); break;
2876
    case 703: // --inst-when-tc-first
2877
      solver.setOption("inst-when-tc-first", "true"); break;
2878
    case 704: // --no-inst-when-tc-first
2879
      solver.setOption("inst-when-tc-first", "false"); break;
2880
3
    case 705: // --int-wf-ind
2881
3
      solver.setOption("int-wf-ind", "true"); break;
2882
    case 706: // --no-int-wf-ind
2883
      solver.setOption("int-wf-ind", "false"); break;
2884
    case 707: // --ite-dtt-split-quant
2885
      solver.setOption("ite-dtt-split-quant", "true"); break;
2886
    case 708: // --no-ite-dtt-split-quant
2887
      solver.setOption("ite-dtt-split-quant", "false"); break;
2888
    case 709: // --ite-lift-quant
2889
      solver.setOption("ite-lift-quant", optionarg); break;
2890
    case 710: // --literal-matching
2891
      solver.setOption("literal-matching", optionarg); break;
2892
17
    case 711: // --macros-quant
2893
17
      solver.setOption("macros-quant", "true"); break;
2894
    case 712: // --no-macros-quant
2895
      solver.setOption("macros-quant", "false"); break;
2896
2
    case 713: // --macros-quant-mode
2897
2
      solver.setOption("macros-quant-mode", optionarg); break;
2898
    case 714: // --mbqi
2899
      solver.setOption("mbqi", optionarg); break;
2900
    case 715: // --mbqi-interleave
2901
      solver.setOption("mbqi-interleave", "true"); break;
2902
    case 716: // --no-mbqi-interleave
2903
      solver.setOption("mbqi-interleave", "false"); break;
2904
    case 717: // --mbqi-one-inst-per-round
2905
      solver.setOption("mbqi-one-inst-per-round", "true"); break;
2906
    case 718: // --no-mbqi-one-inst-per-round
2907
      solver.setOption("mbqi-one-inst-per-round", "false"); break;
2908
    case 719: // --miniscope-quant
2909
      solver.setOption("miniscope-quant", "true"); break;
2910
    case 720: // --no-miniscope-quant
2911
      solver.setOption("miniscope-quant", "false"); break;
2912
    case 721: // --miniscope-quant-fv
2913
      solver.setOption("miniscope-quant-fv", "true"); break;
2914
    case 722: // --no-miniscope-quant-fv
2915
      solver.setOption("miniscope-quant-fv", "false"); break;
2916
3
    case 723: // --multi-trigger-cache
2917
3
      solver.setOption("multi-trigger-cache", "true"); break;
2918
    case 724: // --no-multi-trigger-cache
2919
      solver.setOption("multi-trigger-cache", "false"); break;
2920
    case 725: // --multi-trigger-linear
2921
      solver.setOption("multi-trigger-linear", "true"); break;
2922
    case 726: // --no-multi-trigger-linear
2923
      solver.setOption("multi-trigger-linear", "false"); break;
2924
    case 727: // --multi-trigger-priority
2925
      solver.setOption("multi-trigger-priority", "true"); break;
2926
    case 728: // --no-multi-trigger-priority
2927
      solver.setOption("multi-trigger-priority", "false"); break;
2928
    case 729: // --multi-trigger-when-single
2929
      solver.setOption("multi-trigger-when-single", "true"); break;
2930
    case 730: // --no-multi-trigger-when-single
2931
      solver.setOption("multi-trigger-when-single", "false"); break;
2932
3
    case 731: // --partial-triggers
2933
3
      solver.setOption("partial-triggers", "true"); break;
2934
    case 732: // --no-partial-triggers
2935
      solver.setOption("partial-triggers", "false"); break;
2936
3
    case 733: // --pool-inst
2937
3
      solver.setOption("pool-inst", "true"); break;
2938
    case 734: // --no-pool-inst
2939
      solver.setOption("pool-inst", "false"); break;
2940
    case 735: // --pre-skolem-quant
2941
      solver.setOption("pre-skolem-quant", "true"); break;
2942
    case 736: // --no-pre-skolem-quant
2943
      solver.setOption("pre-skolem-quant", "false"); break;
2944
    case 737: // --pre-skolem-quant-agg
2945
      solver.setOption("pre-skolem-quant-agg", "true"); break;
2946
    case 738: // --no-pre-skolem-quant-agg
2947
      solver.setOption("pre-skolem-quant-agg", "false"); break;
2948
    case 739: // --pre-skolem-quant-nested
2949
      solver.setOption("pre-skolem-quant-nested", "true"); break;
2950
    case 740: // --no-pre-skolem-quant-nested
2951
      solver.setOption("pre-skolem-quant-nested", "false"); break;
2952
    case 741: // --prenex-quant
2953
      solver.setOption("prenex-quant", optionarg); break;
2954
    case 742: // --prenex-quant-user
2955
      solver.setOption("prenex-quant-user", "true"); break;
2956
    case 743: // --no-prenex-quant-user
2957
      solver.setOption("prenex-quant-user", "false"); break;
2958
3
    case 744: // --purify-triggers
2959
3
      solver.setOption("purify-triggers", "true"); break;
2960
    case 745: // --no-purify-triggers
2961
      solver.setOption("purify-triggers", "false"); break;
2962
    case 746: // --qcf-all-conflict
2963
      solver.setOption("qcf-all-conflict", "true"); break;
2964
    case 747: // --no-qcf-all-conflict
2965
      solver.setOption("qcf-all-conflict", "false"); break;
2966
    case 748: // --qcf-eager-check-rd
2967
      solver.setOption("qcf-eager-check-rd", "true"); break;
2968
    case 749: // --no-qcf-eager-check-rd
2969
      solver.setOption("qcf-eager-check-rd", "false"); break;
2970
    case 750: // --qcf-eager-test
2971
      solver.setOption("qcf-eager-test", "true"); break;
2972
    case 751: // --no-qcf-eager-test
2973
      solver.setOption("qcf-eager-test", "false"); break;
2974
    case 752: // --qcf-nested-conflict
2975
      solver.setOption("qcf-nested-conflict", "true"); break;
2976
    case 753: // --no-qcf-nested-conflict
2977
      solver.setOption("qcf-nested-conflict", "false"); break;
2978
    case 754: // --qcf-skip-rd
2979
      solver.setOption("qcf-skip-rd", "true"); break;
2980
    case 755: // --no-qcf-skip-rd
2981
      solver.setOption("qcf-skip-rd", "false"); break;
2982
6
    case 756: // --qcf-tconstraint
2983
6
      solver.setOption("qcf-tconstraint", "true"); break;
2984
    case 757: // --no-qcf-tconstraint
2985
      solver.setOption("qcf-tconstraint", "false"); break;
2986
    case 758: // --qcf-vo-exp
2987
      solver.setOption("qcf-vo-exp", "true"); break;
2988
    case 759: // --no-qcf-vo-exp
2989
      solver.setOption("qcf-vo-exp", "false"); break;
2990
    case 760: // --quant-alpha-equiv
2991
      solver.setOption("quant-alpha-equiv", "true"); break;
2992
    case 761: // --no-quant-alpha-equiv
2993
      solver.setOption("quant-alpha-equiv", "false"); break;
2994
    case 762: // --quant-cf
2995
      solver.setOption("quant-cf", "true"); break;
2996
    case 763: // --no-quant-cf
2997
      solver.setOption("quant-cf", "false"); break;
2998
    case 764: // --quant-cf-mode
2999
      solver.setOption("quant-cf-mode", optionarg); break;
3000
    case 765: // --quant-cf-when
3001
      solver.setOption("quant-cf-when", optionarg); break;
3002
    case 766: // --quant-dsplit-mode
3003
      solver.setOption("quant-dsplit-mode", optionarg); break;
3004
    case 767: // --quant-fun-wd
3005
      solver.setOption("quant-fun-wd", "true"); break;
3006
    case 768: // --no-quant-fun-wd
3007
      solver.setOption("quant-fun-wd", "false"); break;
3008
6
    case 769: // --quant-ind
3009
6
      solver.setOption("quant-ind", "true"); break;
3010
    case 770: // --no-quant-ind
3011
      solver.setOption("quant-ind", "false"); break;
3012
    case 771: // --quant-rep-mode
3013
      solver.setOption("quant-rep-mode", optionarg); break;
3014
    case 772: // --quant-split
3015
      solver.setOption("quant-split", "true"); break;
3016
    case 773: // --no-quant-split
3017
      solver.setOption("quant-split", "false"); break;
3018
    case 774: // --register-quant-body-terms
3019
      solver.setOption("register-quant-body-terms", "true"); break;
3020
    case 775: // --no-register-quant-body-terms
3021
      solver.setOption("register-quant-body-terms", "false"); break;
3022
12
    case 776: // --relational-triggers
3023
12
      solver.setOption("relational-triggers", "true"); break;
3024
3
    case 777: // --no-relational-triggers
3025
3
      solver.setOption("relational-triggers", "false"); break;
3026
3
    case 778: // --relevant-triggers
3027
3
      solver.setOption("relevant-triggers", "true"); break;
3028
    case 779: // --no-relevant-triggers
3029
      solver.setOption("relevant-triggers", "false"); break;
3030
    case 780: // --sygus
3031
      solver.setOption("sygus", "true"); break;
3032
    case 781: // --no-sygus
3033
      solver.setOption("sygus", "false"); break;
3034
13
    case 782: // --sygus-active-gen
3035
13
      solver.setOption("sygus-active-gen", optionarg); break;
3036
    case 783: // --sygus-active-gen-cfactor
3037
      solver.setOption("sygus-active-gen-cfactor", optionarg); break;
3038
1
    case 784: // --sygus-add-const-grammar
3039
1
      solver.setOption("sygus-add-const-grammar", "true"); break;
3040
1
    case 785: // --no-sygus-add-const-grammar
3041
1
      solver.setOption("sygus-add-const-grammar", "false"); break;
3042
3
    case 786: // --sygus-arg-relevant
3043
3
      solver.setOption("sygus-arg-relevant", "true"); break;
3044
    case 787: // --no-sygus-arg-relevant
3045
      solver.setOption("sygus-arg-relevant", "false"); break;
3046
    case 788: // --sygus-auto-unfold
3047
      solver.setOption("sygus-auto-unfold", "true"); break;
3048
    case 789: // --no-sygus-auto-unfold
3049
      solver.setOption("sygus-auto-unfold", "false"); break;
3050
1
    case 790: // --sygus-bool-ite-return-const
3051
1
      solver.setOption("sygus-bool-ite-return-const", "true"); break;
3052
    case 791: // --no-sygus-bool-ite-return-const
3053
      solver.setOption("sygus-bool-ite-return-const", "false"); break;
3054
5
    case 792: // --sygus-core-connective
3055
5
      solver.setOption("sygus-core-connective", "true"); break;
3056
    case 793: // --no-sygus-core-connective
3057
      solver.setOption("sygus-core-connective", "false"); break;
3058
    case 794: // --sygus-crepair-abort
3059
      solver.setOption("sygus-crepair-abort", "true"); break;
3060
    case 795: // --no-sygus-crepair-abort
3061
      solver.setOption("sygus-crepair-abort", "false"); break;
3062
    case 796: // --sygus-eval-opt
3063
      solver.setOption("sygus-eval-opt", "true"); break;
3064
    case 797: // --no-sygus-eval-opt
3065
      solver.setOption("sygus-eval-opt", "false"); break;
3066
    case 798: // --sygus-eval-unfold
3067
      solver.setOption("sygus-eval-unfold", "true"); break;
3068
    case 799: // --no-sygus-eval-unfold
3069
      solver.setOption("sygus-eval-unfold", "false"); break;
3070
    case 800: // --sygus-eval-unfold-bool
3071
      solver.setOption("sygus-eval-unfold-bool", "true"); break;
3072
    case 801: // --no-sygus-eval-unfold-bool
3073
      solver.setOption("sygus-eval-unfold-bool", "false"); break;
3074
    case 802: // --sygus-expr-miner-check-timeout
3075
      solver.setOption("sygus-expr-miner-check-timeout", optionarg); break;
3076
    case 803: // --sygus-ext-rew
3077
      solver.setOption("sygus-ext-rew", "true"); break;
3078
    case 804: // --no-sygus-ext-rew
3079
      solver.setOption("sygus-ext-rew", "false"); break;
3080
    case 805: // --sygus-filter-sol
3081
      solver.setOption("sygus-filter-sol", optionarg); break;
3082
    case 806: // --sygus-filter-sol-rev
3083
      solver.setOption("sygus-filter-sol-rev", "true"); break;
3084
    case 807: // --no-sygus-filter-sol-rev
3085
      solver.setOption("sygus-filter-sol-rev", "false"); break;
3086
6
    case 808: // --sygus-grammar-cons
3087
6
      solver.setOption("sygus-grammar-cons", optionarg); break;
3088
    case 809: // --sygus-grammar-norm
3089
      solver.setOption("sygus-grammar-norm", "true"); break;
3090
    case 810: // --no-sygus-grammar-norm
3091
      solver.setOption("sygus-grammar-norm", "false"); break;
3092
45
    case 811: // --sygus-inference
3093
45
      solver.setOption("sygus-inference", "true"); break;
3094
    case 812: // --no-sygus-inference
3095
      solver.setOption("sygus-inference", "false"); break;
3096
14
    case 813: // --sygus-inst
3097
14
      solver.setOption("sygus-inst", "true"); break;
3098
8
    case 814: // --no-sygus-inst
3099
8
      solver.setOption("sygus-inst", "false"); break;
3100
    case 815: // --sygus-inst-mode
3101
      solver.setOption("sygus-inst-mode", optionarg); break;
3102
    case 816: // --sygus-inst-scope
3103
      solver.setOption("sygus-inst-scope", optionarg); break;
3104
    case 817: // --sygus-inst-term-sel
3105
      solver.setOption("sygus-inst-term-sel", optionarg); break;
3106
3
    case 818: // --sygus-inv-templ
3107
3
      solver.setOption("sygus-inv-templ", optionarg); break;
3108
    case 819: // --sygus-inv-templ-when-sg
3109
      solver.setOption("sygus-inv-templ-when-sg", "true"); break;
3110
    case 820: // --no-sygus-inv-templ-when-sg
3111
      solver.setOption("sygus-inv-templ-when-sg", "false"); break;
3112
    case 821: // --sygus-min-grammar
3113
      solver.setOption("sygus-min-grammar", "true"); break;
3114
    case 822: // --no-sygus-min-grammar
3115
      solver.setOption("sygus-min-grammar", "false"); break;
3116
    case 823: // --sygus-pbe
3117
      solver.setOption("sygus-pbe", "true"); break;
3118
6
    case 824: // --no-sygus-pbe
3119
6
      solver.setOption("sygus-pbe", "false"); break;
3120
    case 825: // --sygus-pbe-multi-fair
3121
      solver.setOption("sygus-pbe-multi-fair", "true"); break;
3122
    case 826: // --no-sygus-pbe-multi-fair
3123
      solver.setOption("sygus-pbe-multi-fair", "false"); break;
3124
    case 827: // --sygus-pbe-multi-fair-diff
3125
      solver.setOption("sygus-pbe-multi-fair-diff", optionarg); break;
3126
4
    case 828: // --sygus-qe-preproc
3127
4
      solver.setOption("sygus-qe-preproc", "true"); break;
3128
    case 829: // --no-sygus-qe-preproc
3129
      solver.setOption("sygus-qe-preproc", "false"); break;
3130
    case 830: // --sygus-query-gen
3131
      solver.setOption("sygus-query-gen", "true"); break;
3132
    case 831: // --no-sygus-query-gen
3133
      solver.setOption("sygus-query-gen", "false"); break;
3134
    case 832: // --sygus-query-gen-check
3135
      solver.setOption("sygus-query-gen-check", "true"); break;
3136
    case 833: // --no-sygus-query-gen-check
3137
      solver.setOption("sygus-query-gen-check", "false"); break;
3138
    case 834: // --sygus-query-gen-dump-files
3139
      solver.setOption("sygus-query-gen-dump-files", optionarg); break;
3140
    case 835: // --sygus-query-gen-thresh
3141
      solver.setOption("sygus-query-gen-thresh", optionarg); break;
3142
1
    case 836: // --sygus-rec-fun
3143
1
      solver.setOption("sygus-rec-fun", "true"); break;
3144
    case 837: // --no-sygus-rec-fun
3145
      solver.setOption("sygus-rec-fun", "false"); break;
3146
    case 838: // --sygus-rec-fun-eval-limit
3147
      solver.setOption("sygus-rec-fun-eval-limit", optionarg); break;
3148
5
    case 839: // --sygus-repair-const
3149
5
      solver.setOption("sygus-repair-const", "true"); break;
3150
3
    case 840: // --no-sygus-repair-const
3151
3
      solver.setOption("sygus-repair-const", "false"); break;
3152
    case 841: // --sygus-repair-const-timeout
3153
      solver.setOption("sygus-repair-const-timeout", optionarg); break;
3154
6
    case 842: // --sygus-rr
3155
6
      solver.setOption("sygus-rr", "true"); break;
3156
    case 843: // --no-sygus-rr
3157
      solver.setOption("sygus-rr", "false"); break;
3158
1
    case 844: // --sygus-rr-synth
3159
1
      solver.setOption("sygus-rr-synth", "true"); break;
3160
    case 845: // --no-sygus-rr-synth
3161
      solver.setOption("sygus-rr-synth", "false"); break;
3162
    case 846: // --sygus-rr-synth-accel
3163
      solver.setOption("sygus-rr-synth-accel", "true"); break;
3164
    case 847: // --no-sygus-rr-synth-accel
3165
      solver.setOption("sygus-rr-synth-accel", "false"); break;
3166
3
    case 848: // --sygus-rr-synth-check
3167
3
      solver.setOption("sygus-rr-synth-check", "true"); break;
3168
    case 849: // --no-sygus-rr-synth-check
3169
      solver.setOption("sygus-rr-synth-check", "false"); break;
3170
    case 850: // --sygus-rr-synth-filter-cong
3171
      solver.setOption("sygus-rr-synth-filter-cong", "true"); break;
3172
    case 851: // --no-sygus-rr-synth-filter-cong
3173
      solver.setOption("sygus-rr-synth-filter-cong", "false"); break;
3174
    case 852: // --sygus-rr-synth-filter-match
3175
      solver.setOption("sygus-rr-synth-filter-match", "true"); break;
3176
    case 853: // --no-sygus-rr-synth-filter-match
3177
      solver.setOption("sygus-rr-synth-filter-match", "false"); break;
3178
    case 854: // --sygus-rr-synth-filter-nl
3179
      solver.setOption("sygus-rr-synth-filter-nl", "true"); break;
3180
    case 855: // --no-sygus-rr-synth-filter-nl
3181
      solver.setOption("sygus-rr-synth-filter-nl", "false"); break;
3182
    case 856: // --sygus-rr-synth-filter-order
3183
      solver.setOption("sygus-rr-synth-filter-order", "true"); break;
3184
    case 857: // --no-sygus-rr-synth-filter-order
3185
      solver.setOption("sygus-rr-synth-filter-order", "false"); break;
3186
    case 858: // --sygus-rr-synth-input
3187
      solver.setOption("sygus-rr-synth-input", "true"); break;
3188
    case 859: // --no-sygus-rr-synth-input
3189
      solver.setOption("sygus-rr-synth-input", "false"); break;
3190
    case 860: // --sygus-rr-synth-input-nvars
3191
      solver.setOption("sygus-rr-synth-input-nvars", optionarg); break;
3192
    case 861: // --sygus-rr-synth-input-use-bool
3193
      solver.setOption("sygus-rr-synth-input-use-bool", "true"); break;
3194
    case 862: // --no-sygus-rr-synth-input-use-bool
3195
      solver.setOption("sygus-rr-synth-input-use-bool", "false"); break;
3196
    case 863: // --sygus-rr-synth-rec
3197
      solver.setOption("sygus-rr-synth-rec", "true"); break;
3198
    case 864: // --no-sygus-rr-synth-rec
3199
      solver.setOption("sygus-rr-synth-rec", "false"); break;
3200
    case 865: // --sygus-rr-verify
3201
      solver.setOption("sygus-rr-verify", "true"); break;
3202
    case 866: // --no-sygus-rr-verify
3203
      solver.setOption("sygus-rr-verify", "false"); break;
3204
7
    case 867: // --sygus-rr-verify-abort
3205
7
      solver.setOption("sygus-rr-verify-abort", "true"); break;
3206
    case 868: // --no-sygus-rr-verify-abort
3207
      solver.setOption("sygus-rr-verify-abort", "false"); break;
3208
    case 869: // --sygus-sample-fp-uniform
3209
      solver.setOption("sygus-sample-fp-uniform", "true"); break;
3210
    case 870: // --no-sygus-sample-fp-uniform
3211
      solver.setOption("sygus-sample-fp-uniform", "false"); break;
3212
    case 871: // --sygus-sample-grammar
3213
      solver.setOption("sygus-sample-grammar", "true"); break;
3214
    case 872: // --no-sygus-sample-grammar
3215
      solver.setOption("sygus-sample-grammar", "false"); break;
3216
7
    case 873: // --sygus-samples
3217
7
      solver.setOption("sygus-samples", optionarg); break;
3218
47
    case 874: // --sygus-si
3219
47
      solver.setOption("sygus-si", optionarg); break;
3220
    case 875: // --sygus-si-abort
3221
      solver.setOption("sygus-si-abort", "true"); break;
3222
    case 876: // --no-sygus-si-abort
3223
      solver.setOption("sygus-si-abort", "false"); break;
3224
    case 877: // --sygus-si-partial
3225
      solver.setOption("sygus-si-partial", "true"); break;
3226
    case 878: // --no-sygus-si-partial
3227
      solver.setOption("sygus-si-partial", "false"); break;
3228
    case 879: // --sygus-si-rcons
3229
      solver.setOption("sygus-si-rcons", optionarg); break;
3230
1
    case 880: // --sygus-si-rcons-limit
3231
1
      solver.setOption("sygus-si-rcons-limit", optionarg); break;
3232
    case 881: // --sygus-si-reconstruct-const
3233
      solver.setOption("sygus-si-reconstruct-const", "true"); break;
3234
    case 882: // --no-sygus-si-reconstruct-const
3235
      solver.setOption("sygus-si-reconstruct-const", "false"); break;
3236
4
    case 883: // --sygus-stream
3237
4
      solver.setOption("sygus-stream", "true"); break;
3238
    case 884: // --no-sygus-stream
3239
      solver.setOption("sygus-stream", "false"); break;
3240
    case 885: // --sygus-templ-embed-grammar
3241
      solver.setOption("sygus-templ-embed-grammar", "true"); break;
3242
    case 886: // --no-sygus-templ-embed-grammar
3243
      solver.setOption("sygus-templ-embed-grammar", "false"); break;
3244
    case 887: // --sygus-unif-cond-independent-no-repeat-sol
3245
      solver.setOption("sygus-unif-cond-independent-no-repeat-sol", "true"); break;
3246
    case 888: // --no-sygus-unif-cond-independent-no-repeat-sol
3247
      solver.setOption("sygus-unif-cond-independent-no-repeat-sol", "false"); break;
3248
9
    case 889: // --sygus-unif-pi
3249
9
      solver.setOption("sygus-unif-pi", optionarg); break;
3250
    case 890: // --sygus-unif-shuffle-cond
3251
      solver.setOption("sygus-unif-shuffle-cond", "true"); break;
3252
    case 891: // --no-sygus-unif-shuffle-cond
3253
      solver.setOption("sygus-unif-shuffle-cond", "false"); break;
3254
    case 892: // --sygus-verify-inst-max-rounds
3255
      solver.setOption("sygus-verify-inst-max-rounds", optionarg); break;
3256
    case 893: // --term-db-cd
3257
      solver.setOption("term-db-cd", "true"); break;
3258
    case 894: // --no-term-db-cd
3259
      solver.setOption("term-db-cd", "false"); break;
3260
    case 895: // --term-db-mode
3261
      solver.setOption("term-db-mode", optionarg); break;
3262
    case 896: // --trigger-active-sel
3263
      solver.setOption("trigger-active-sel", optionarg); break;
3264
    case 897: // --trigger-sel
3265
      solver.setOption("trigger-sel", optionarg); break;
3266
    case 898: // --user-pat
3267
      solver.setOption("user-pat", optionarg); break;
3268
    case 899: // --var-elim-quant
3269
      solver.setOption("var-elim-quant", "true"); break;
3270
    case 900: // --no-var-elim-quant
3271
      solver.setOption("var-elim-quant", "false"); break;
3272
2
    case 901: // --var-ineq-elim-quant
3273
2
      solver.setOption("var-ineq-elim-quant", "true"); break;
3274
    case 902: // --no-var-ineq-elim-quant
3275
      solver.setOption("var-ineq-elim-quant", "false"); break;
3276
    case 903: // --sep-check-neg
3277
      solver.setOption("sep-check-neg", "true"); break;
3278
    case 904: // --no-sep-check-neg
3279
      solver.setOption("sep-check-neg", "false"); break;
3280
    case 905: // --sep-child-refine
3281
      solver.setOption("sep-child-refine", "true"); break;
3282
    case 906: // --no-sep-child-refine
3283
      solver.setOption("sep-child-refine", "false"); break;
3284
    case 907: // --sep-deq-c
3285
      solver.setOption("sep-deq-c", "true"); break;
3286
    case 908: // --no-sep-deq-c
3287
      solver.setOption("sep-deq-c", "false"); break;
3288
    case 909: // --sep-exp
3289
      solver.setOption("sep-exp", "true"); break;
3290
    case 910: // --no-sep-exp
3291
      solver.setOption("sep-exp", "false"); break;
3292
    case 911: // --sep-min-refine
3293
      solver.setOption("sep-min-refine", "true"); break;
3294
    case 912: // --no-sep-min-refine
3295
      solver.setOption("sep-min-refine", "false"); break;
3296
1
    case 913: // --sep-pre-skolem-emp
3297
1
      solver.setOption("sep-pre-skolem-emp", "true"); break;
3298
    case 914: // --no-sep-pre-skolem-emp
3299
      solver.setOption("sep-pre-skolem-emp", "false"); break;
3300
32
    case 915: // --sets-ext
3301
32
      solver.setOption("sets-ext", "true"); break;
3302
    case 916: // --no-sets-ext
3303
      solver.setOption("sets-ext", "false"); break;
3304
2
    case 917: // --sets-infer-as-lemmas
3305
2
      solver.setOption("sets-infer-as-lemmas", "true"); break;
3306
    case 918: // --no-sets-infer-as-lemmas
3307
      solver.setOption("sets-infer-as-lemmas", "false"); break;
3308
    case 919: // --sets-proxy-lemmas
3309
      solver.setOption("sets-proxy-lemmas", "true"); break;
3310
    case 920: // --no-sets-proxy-lemmas
3311
      solver.setOption("sets-proxy-lemmas", "false"); break;
3312
4
    case 921: // --abstract-values
3313
4
      solver.setOption("abstract-values", "true"); break;
3314
    case 922: // --no-abstract-values
3315
      solver.setOption("abstract-values", "false"); break;
3316
31
    case 923: // --ackermann
3317
31
      solver.setOption("ackermann", "true"); break;
3318
    case 924: // --no-ackermann
3319
      solver.setOption("ackermann", "false"); break;
3320
7
    case 925: // --block-models
3321
7
      solver.setOption("block-models", optionarg); break;
3322
78
    case 926: // --bvand-integer-granularity
3323
78
      solver.setOption("bvand-integer-granularity", optionarg); break;
3324
13
    case 927: // --check-abducts
3325
13
      solver.setOption("check-abducts", "true"); break;
3326
    case 928: // --no-check-abducts
3327
      solver.setOption("check-abducts", "false"); break;
3328
8
    case 929: // --check-interpols
3329
8
      solver.setOption("check-interpols", "true"); break;
3330
    case 930: // --no-check-interpols
3331
      solver.setOption("check-interpols", "false"); break;
3332
26
    case 931: // --check-models
3333
26
      solver.setOption("check-models", "true"); break;
3334
86
    case 932: // --no-check-models
3335
86
      solver.setOption("check-models", "false"); break;
3336
1156
    case 933: // --check-proofs
3337
1156
      solver.setOption("check-proofs", "true"); break;
3338
13
    case 934: // --no-check-proofs
3339
13
      solver.setOption("check-proofs", "false"); break;
3340
186
    case 935: // --check-synth-sol
3341
186
      solver.setOption("check-synth-sol", "true"); break;
3342
6
    case 936: // --no-check-synth-sol
3343
6
      solver.setOption("check-synth-sol", "false"); break;
3344
1145
    case 937: // --check-unsat-cores
3345
1145
      solver.setOption("check-unsat-cores", "true"); break;
3346
42
    case 938: // --no-check-unsat-cores
3347
42
      solver.setOption("check-unsat-cores", "false"); break;
3348
1230
    case 939: // --debug-check-models
3349
1230
      solver.setOption("debug-check-models", "true"); break;
3350
    case 940: // --no-debug-check-models
3351
      solver.setOption("debug-check-models", "false"); break;
3352
    case 941: // --difficulty-mode
3353
      solver.setOption("difficulty-mode", optionarg); break;
3354
2
    case 942: // --dump
3355
3
      solver.setOption("dump", optionarg); break;
3356
    case 943: // --dump-to
3357
      solver.setOption("dump-to", optionarg); break;
3358
    case 944: // --early-ite-removal
3359
      solver.setOption("early-ite-removal", "true"); break;
3360
    case 945: // --no-early-ite-removal
3361
      solver.setOption("early-ite-removal", "false"); break;
3362
    case 946: // --expand-definitions
3363
      solver.setOption("expand-definitions", "true"); break;
3364
    case 947: // --no-expand-definitions
3365
      solver.setOption("expand-definitions", "false"); break;
3366
17
    case 948: // --ext-rew-prep
3367
17
      solver.setOption("ext-rew-prep", "true"); break;
3368
    case 949: // --no-ext-rew-prep
3369
      solver.setOption("ext-rew-prep", "false"); break;
3370
7
    case 950: // --ext-rew-prep-agg
3371
7
      solver.setOption("ext-rew-prep-agg", "true"); break;
3372
    case 951: // --no-ext-rew-prep-agg
3373
      solver.setOption("ext-rew-prep-agg", "false"); break;
3374
2
    case 952: // --foreign-theory-rewrite
3375
2
      solver.setOption("foreign-theory-rewrite", "true"); break;
3376
    case 953: // --no-foreign-theory-rewrite
3377
      solver.setOption("foreign-theory-rewrite", "false"); break;
3378
67
    case 954: // --iand-mode
3379
67
      solver.setOption("iand-mode", optionarg); break;
3380
    case 955: // --interactive-mode
3381
      solver.setOption("interactive-mode", "true"); break;
3382
    case 956: // --no-interactive-mode
3383
      solver.setOption("interactive-mode", "false"); break;
3384
    case 957: // --ite-simp
3385
      solver.setOption("ite-simp", "true"); break;
3386
    case 958: // --no-ite-simp
3387
      solver.setOption("ite-simp", "false"); break;
3388
2
    case 959: // --learned-rewrite
3389
2
      solver.setOption("learned-rewrite", "true"); break;
3390
    case 960: // --no-learned-rewrite
3391
      solver.setOption("learned-rewrite", "false"); break;
3392
3
    case 961: // --minimal-unsat-cores
3393
3
      solver.setOption("minimal-unsat-cores", "true"); break;
3394
    case 962: // --no-minimal-unsat-cores
3395
      solver.setOption("minimal-unsat-cores", "false"); break;
3396
6
    case 963: // --model-cores
3397
6
      solver.setOption("model-cores", optionarg); break;
3398
1
    case 964: // --model-u-print
3399
    case 965: // --model-uninterp-print
3400
1
      solver.setOption("model-u-print", optionarg); break;
3401
1
    case 966: // --model-witness-value
3402
1
      solver.setOption("model-witness-value", "true"); break;
3403
    case 967: // --no-model-witness-value
3404
      solver.setOption("model-witness-value", "false"); break;
3405
    case 968: // --on-repeat-ite-simp
3406
      solver.setOption("on-repeat-ite-simp", "true"); break;
3407
    case 969: // --no-on-repeat-ite-simp
3408
      solver.setOption("on-repeat-ite-simp", "false"); break;
3409
12
    case 970: // --produce-abducts
3410
12
      solver.setOption("produce-abducts", "true"); break;
3411
    case 971: // --no-produce-abducts
3412
      solver.setOption("produce-abducts", "false"); break;
3413
    case 972: // --produce-assertions
3414
      solver.setOption("produce-assertions", "true"); break;
3415
    case 973: // --no-produce-assertions
3416
      solver.setOption("produce-assertions", "false"); break;
3417
    case 974: // --produce-assignments
3418
      solver.setOption("produce-assignments", "true"); break;
3419
    case 975: // --no-produce-assignments
3420
      solver.setOption("produce-assignments", "false"); break;
3421
    case 976: // --produce-difficulty
3422
      solver.setOption("produce-difficulty", "true"); break;
3423
    case 977: // --no-produce-difficulty
3424
      solver.setOption("produce-difficulty", "false"); break;
3425
8
    case 978: // --produce-interpols
3426
8
      solver.setOption("produce-interpols", optionarg); break;
3427
37
    case 'm': // -m
3428
    case 979: // --produce-models
3429
37
      solver.setOption("produce-models", "true"); break;
3430
    case 980: // --no-produce-models
3431
      solver.setOption("produce-models", "false"); break;
3432
9
    case 981: // --produce-proofs
3433
9
      solver.setOption("produce-proofs", "true"); break;
3434
18
    case 982: // --no-produce-proofs
3435
18
      solver.setOption("produce-proofs", "false"); break;
3436
    case 983: // --produce-unsat-assumptions
3437
      solver.setOption("produce-unsat-assumptions", "true"); break;
3438
    case 984: // --no-produce-unsat-assumptions
3439
      solver.setOption("produce-unsat-assumptions", "false"); break;
3440
4
    case 985: // --produce-unsat-cores
3441
4
      solver.setOption("produce-unsat-cores", "true"); break;
3442
2
    case 986: // --no-produce-unsat-cores
3443
2
      solver.setOption("produce-unsat-cores", "false"); break;
3444
2
    case 987: // --repeat-simp
3445
2
      solver.setOption("repeat-simp", "true"); break;
3446
    case 988: // --no-repeat-simp
3447
      solver.setOption("repeat-simp", "false"); break;
3448
    case 989: // --simp-ite-compress
3449
      solver.setOption("simp-ite-compress", "true"); break;
3450
    case 990: // --no-simp-ite-compress
3451
      solver.setOption("simp-ite-compress", "false"); break;
3452
    case 991: // --simp-ite-hunt-zombies
3453
      solver.setOption("simp-ite-hunt-zombies", optionarg); break;
3454
    case 992: // --simp-with-care
3455
      solver.setOption("simp-with-care", "true"); break;
3456
    case 993: // --no-simp-with-care
3457
      solver.setOption("simp-with-care", "false"); break;
3458
31
    case 994: // --simplification
3459
    case 995: // --simplification-mode
3460
31
      solver.setOption("simplification", optionarg); break;
3461
134
    case 996: // --solve-bv-as-int
3462
134
      solver.setOption("solve-bv-as-int", optionarg); break;
3463
13
    case 997: // --solve-int-as-bv
3464
13
      solver.setOption("solve-int-as-bv", optionarg); break;
3465
9
    case 998: // --solve-real-as-int
3466
9
      solver.setOption("solve-real-as-int", "true"); break;
3467
    case 999: // --no-solve-real-as-int
3468
      solver.setOption("solve-real-as-int", "false"); break;
3469
20
    case 1000: // --sort-inference
3470
20
      solver.setOption("sort-inference", "true"); break;
3471
    case 1001: // --no-sort-inference
3472
      solver.setOption("sort-inference", "false"); break;
3473
    case 1002: // --static-learning
3474
      solver.setOption("static-learning", "true"); break;
3475
    case 1003: // --no-static-learning
3476
      solver.setOption("static-learning", "false"); break;
3477
185
    case 1004: // --sygus-out
3478
185
      solver.setOption("sygus-out", optionarg); break;
3479
    case 1005: // --sygus-print-callbacks
3480
      solver.setOption("sygus-print-callbacks", "true"); break;
3481
    case 1006: // --no-sygus-print-callbacks
3482
      solver.setOption("sygus-print-callbacks", "false"); break;
3483
104
    case 1007: // --unconstrained-simp
3484
104
      solver.setOption("unconstrained-simp", "true"); break;
3485
3
    case 1008: // --no-unconstrained-simp
3486
3
      solver.setOption("unconstrained-simp", "false"); break;
3487
2
    case 1009: // --unsat-cores-mode
3488
2
      solver.setOption("unsat-cores-mode", optionarg); break;
3489
25
    case 1010: // --re-elim
3490
25
      solver.setOption("re-elim", "true"); break;
3491
10
    case 1011: // --no-re-elim
3492
10
      solver.setOption("re-elim", "false"); break;
3493
12
    case 1012: // --re-elim-agg
3494
12
      solver.setOption("re-elim-agg", "true"); break;
3495
    case 1013: // --no-re-elim-agg
3496
      solver.setOption("re-elim-agg", "false"); break;
3497
    case 1014: // --re-inter-mode
3498
      solver.setOption("re-inter-mode", optionarg); break;
3499
    case 1015: // --strings-check-entail-len
3500
      solver.setOption("strings-check-entail-len", "true"); break;
3501
    case 1016: // --no-strings-check-entail-len
3502
      solver.setOption("strings-check-entail-len", "false"); break;
3503
2
    case 1017: // --strings-eager
3504
2
      solver.setOption("strings-eager", "true"); break;
3505
    case 1018: // --no-strings-eager
3506
      solver.setOption("strings-eager", "false"); break;
3507
    case 1019: // --strings-eager-eval
3508
      solver.setOption("strings-eager-eval", "true"); break;
3509
    case 1020: // --no-strings-eager-eval
3510
      solver.setOption("strings-eager-eval", "false"); break;
3511
    case 1021: // --strings-eager-len
3512
      solver.setOption("strings-eager-len", "true"); break;
3513
    case 1022: // --no-strings-eager-len
3514
      solver.setOption("strings-eager-len", "false"); break;
3515
331
    case 1023: // --strings-exp
3516
331
      solver.setOption("strings-exp", "true"); break;
3517
    case 1024: // --no-strings-exp
3518
      solver.setOption("strings-exp", "false"); break;
3519
    case 1025: // --strings-ff
3520
      solver.setOption("strings-ff", "true"); break;
3521
    case 1026: // --no-strings-ff
3522
      solver.setOption("strings-ff", "false"); break;
3523
25
    case 1027: // --strings-fmf
3524
25
      solver.setOption("strings-fmf", "true"); break;
3525
    case 1028: // --no-strings-fmf
3526
      solver.setOption("strings-fmf", "false"); break;
3527
    case 1029: // --strings-guess-model
3528
      solver.setOption("strings-guess-model", "true"); break;
3529
    case 1030: // --no-strings-guess-model
3530
      solver.setOption("strings-guess-model", "false"); break;
3531
    case 1031: // --strings-infer-as-lemmas
3532
      solver.setOption("strings-infer-as-lemmas", "true"); break;
3533
    case 1032: // --no-strings-infer-as-lemmas
3534
      solver.setOption("strings-infer-as-lemmas", "false"); break;
3535
    case 1033: // --strings-infer-sym
3536
      solver.setOption("strings-infer-sym", "true"); break;
3537
    case 1034: // --no-strings-infer-sym
3538
      solver.setOption("strings-infer-sym", "false"); break;
3539
    case 1035: // --strings-lazy-pp
3540
      solver.setOption("strings-lazy-pp", "true"); break;
3541
21
    case 1036: // --no-strings-lazy-pp
3542
21
      solver.setOption("strings-lazy-pp", "false"); break;
3543
    case 1037: // --strings-len-norm
3544
      solver.setOption("strings-len-norm", "true"); break;
3545
    case 1038: // --no-strings-len-norm
3546
      solver.setOption("strings-len-norm", "false"); break;
3547
    case 1039: // --strings-lprop-csp
3548
      solver.setOption("strings-lprop-csp", "true"); break;
3549
    case 1040: // --no-strings-lprop-csp
3550
      solver.setOption("strings-lprop-csp", "false"); break;
3551
    case 1041: // --strings-min-prefix-explain
3552
      solver.setOption("strings-min-prefix-explain", "true"); break;
3553
    case 1042: // --no-strings-min-prefix-explain
3554
      solver.setOption("strings-min-prefix-explain", "false"); break;
3555
    case 1043: // --strings-process-loop-mode
3556
      solver.setOption("strings-process-loop-mode", optionarg); break;
3557
    case 1044: // --strings-rexplain-lemmas
3558
      solver.setOption("strings-rexplain-lemmas", "true"); break;
3559
    case 1045: // --no-strings-rexplain-lemmas
3560
      solver.setOption("strings-rexplain-lemmas", "false"); break;
3561
    case 1046: // --strings-unified-vspt
3562
      solver.setOption("strings-unified-vspt", "true"); break;
3563
    case 1047: // --no-strings-unified-vspt
3564
      solver.setOption("strings-unified-vspt", "false"); break;
3565
    case 1048: // --assign-function-values
3566
      solver.setOption("assign-function-values", "true"); break;
3567
    case 1049: // --no-assign-function-values
3568
      solver.setOption("assign-function-values", "false"); break;
3569
    case 1050: // --condense-function-values
3570
      solver.setOption("condense-function-values", "true"); break;
3571
    case 1051: // --no-condense-function-values
3572
      solver.setOption("condense-function-values", "false"); break;
3573
56
    case 1052: // --ee-mode
3574
56
      solver.setOption("ee-mode", optionarg); break;
3575
    case 1053: // --relevance-filter
3576
      solver.setOption("relevance-filter", "true"); break;
3577
    case 1054: // --no-relevance-filter
3578
      solver.setOption("relevance-filter", "false"); break;
3579
    case 1055: // --tc-mode
3580
      solver.setOption("tc-mode", optionarg); break;
3581
5
    case 1056: // --theoryof-mode
3582
5
      solver.setOption("theoryof-mode", optionarg); break;
3583
    case 1057: // --symmetry-breaker
3584
    case 1058: // --uf-symmetry-breaker
3585
      solver.setOption("symmetry-breaker", "true"); break;
3586
    case 1059: // --no-symmetry-breaker
3587
    case 1060: // --no-uf-symmetry-breaker
3588
      solver.setOption("symmetry-breaker", "false"); break;
3589
    case 1061: // --uf-ho
3590
      solver.setOption("uf-ho", "true"); break;
3591
    case 1062: // --no-uf-ho
3592
      solver.setOption("uf-ho", "false"); break;
3593
    case 1063: // --uf-ho-ext
3594
      solver.setOption("uf-ho-ext", "true"); break;
3595
    case 1064: // --no-uf-ho-ext
3596
      solver.setOption("uf-ho-ext", "false"); break;
3597
7
    case 1065: // --uf-ss
3598
7
      solver.setOption("uf-ss", optionarg); break;
3599
    case 1066: // --uf-ss-abort-card
3600
      solver.setOption("uf-ss-abort-card", optionarg); break;
3601
    case 1067: // --uf-ss-fair
3602
      solver.setOption("uf-ss-fair", "true"); break;
3603
    case 1068: // --no-uf-ss-fair
3604
      solver.setOption("uf-ss-fair", "false"); break;
3605
4
    case 1069: // --uf-ss-fair-monotone
3606
4
      solver.setOption("uf-ss-fair-monotone", "true"); break;
3607
    case 1070: // --no-uf-ss-fair-monotone
3608
      solver.setOption("uf-ss-fair-monotone", "false"); break;
3609
    case 1071: // --uf-ss-totality-limited
3610
      solver.setOption("uf-ss-totality-limited", optionarg); break;
3611
    case 1072: // --uf-ss-totality-sym-break
3612
      solver.setOption("uf-ss-totality-sym-break", "true"); break;
3613
    case 1073: // --no-uf-ss-totality-sym-break
3614
      solver.setOption("uf-ss-totality-sym-break", "false"); break;
3615
// clang-format on
3616
3617
    case ':' :
3618
      // This can be a long or short option, and the way to get at the
3619
      // name of it is different.
3620
      throw OptionException(std::string("option `") + option
3621
                            + "' missing its required argument");
3622
    case '?':
3623
    default:
3624
      throw OptionException(std::string("can't understand option `") + option
3625
                            + "'" + suggestCommandLineOptions(option));
3626
    }
3627
15505
  }
3628
3629
18519
  Debug("options") << "got " << nonoptions.size() << " non-option arguments."
3630
6173
                   << std::endl;
3631
6173
}
3632
3633
/**
3634
 * Parse argc/argv and put the result into a cvc5::Options.
3635
 * The return value is what's left of the command line (that is, the
3636
 * non-option arguments).
3637
 *
3638
 * Throws OptionException on failures.
3639
 */
3640
8800
std::vector<std::string> parse(api::Solver& solver,
3641
                               int argc,
3642
                               char* argv[],
3643
                               std::string& binaryName)
3644
{
3645
8800
  Assert(argv != nullptr);
3646
3647
8800
  const char* progName = argv[0];
3648
3649
  // To debug options parsing, you may prefer to simply uncomment this
3650
  // and recompile. Debug flags have not been parsed yet so these have
3651
  // not been set.
3652
  // DebugChannel.on("options");
3653
3654
8800
  Debug("options") << "argv == " << argv << std::endl;
3655
3656
  // Find the base name of the program.
3657
8800
  const char* x = strrchr(progName, '/');
3658
8800
  if (x != nullptr)
3659
  {
3660
8800
    progName = x + 1;
3661
  }
3662
8800
  binaryName = std::string(progName);
3663
3664
8800
  std::vector<std::string> nonoptions;
3665
8800
  parseInternal(solver, argc, argv, nonoptions);
3666
6173
  if (Debug.isOn("options"))
3667
  {
3668
    for (const auto& no : nonoptions)
3669
    {
3670
      Debug("options") << "nonoptions " << no << std::endl;
3671
    }
3672
  }
3673
3674
6173
  return nonoptions;
3675
}
3676
3677
59133
}  // namespace cvc5::options