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