GCC Code Coverage Report
Directory: . Exec Total Coverage
File: build-coverage/src/main/options.cpp Lines: 603 2501 24.1 %
Date: 2021-09-10 Branches: 785 5667 13.9 %

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