GCC Code Coverage Report
Directory: . Exec Total Coverage
File: build-coverage/src/main/options.cpp Lines: 421 1653 25.5 %
Date: 2021-09-18 Branches: 785 5529 14.2 %

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