summaryrefslogtreecommitdiff
path: root/src/options/smt_options.toml
blob: c813e190019811083c5e9b59994ee0cf4172b465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
id     = "SMT"
name   = "SMT layer"
header = "options/smt_options.h"

[[option]]
  name       = "dumpModeString"
  smt_name   = "dump"
  category   = "common"
  long       = "dump=MODE"
  type       = "std::string"
  notifies   = ["notifyDumpMode"]
  read_only  = true
  help       = "dump preprocessed assertions, etc., see --dump=help"

[[option]]
  name       = "dumpToFileName"
  smt_name   = "dump-to"
  category   = "common"
  long       = "dump-to=FILE"
  type       = "std::string"
  notifies   = ["notifyDumpToFile"]
  read_only  = true
  help       = "all dumping goes to FILE (instead of stdout)"

[[option]]
  name       = "ackermann"
  category   = "regular"
  long       = "ackermann"
  type       = "bool"
  default    = "false"
  help       = "eliminate functions by ackermannization"

[[option]]
  name       = "simplificationMode"
  smt_name   = "simplification-mode"
  category   = "regular"
  long       = "simplification=MODE"
  type       = "SimplificationMode"
  default    = "BATCH"
  help       = "choose simplification mode, see --simplification=help"
  help_mode  = "Simplification modes."
[[option.mode.NONE]]
  name = "none"
  help = "Do not perform nonclausal simplification."
[[option.mode.BATCH]]
  name = "batch"
  help = "Save up all ASSERTions; run nonclausal simplification and clausal (MiniSat) propagation for all of them only after reaching a querying command (CHECKSAT or QUERY or predicate SUBTYPE declaration)."

[[alias]]
  category   = "regular"
  long       = "no-simplification"
  links      = ["--simplification=none"]
  help       = "turn off all simplification (same as --simplification=none)"

[[option]]
  name       = "doStaticLearning"
  category   = "regular"
  long       = "static-learning"
  type       = "bool"
  default    = "true"
  read_only  = true
  help       = "use static learning (on by default)"

[[option]]
  name       = "expandDefinitions"
  smt_name   = "expand-definitions"
  category   = "regular"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "always expand symbol definitions in output"

[[option]]
  name       = "produceModels"
  category   = "common"
  short      = "m"
  long       = "produce-models"
  type       = "bool"
  default    = "false"
  notifies   = ["notifyBeforeSearch"]
  read_only  = true
  help       = "support the get-value and get-model commands"

[[option]]
  name       = "checkModels"
  category   = "regular"
  long       = "check-models"
  type       = "bool"
  notifies   = ["notifyBeforeSearch"]
  links      = ["--produce-models", "--produce-assertions"]
  read_only  = true
  help       = "after SAT/INVALID/UNKNOWN, check that the generated model satisfies user assertions"

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

[[option]]
  name       = "modelCoresMode"
  category   = "regular"
  long       = "model-cores=MODE"
  type       = "ModelCoresMode"
  default    = "NONE"
  help       = "mode for producing model cores"
  help_mode  = "Model cores modes."
[[option.mode.NONE]]
  name = "none"
  help = "Do not compute model cores."
[[option.mode.SIMPLE]]
  name = "simple"
  help = "Only include a subset of variables whose values are sufficient to show the input formula is satisfied by the given model."
[[option.mode.NON_IMPLIED]]
  name = "non-implied"
  help = "Only include a subset of variables whose values, in addition to the values of variables whose values are implied, are sufficient to show the input formula is satisfied by the given model."

[[option]]
  name       = "blockModelsMode"
  category   = "regular"
  long       = "block-models=MODE"
  type       = "BlockModelsMode"
  default    = "NONE"
  help       = "mode for producing several models"
  help_mode  = "Blocking models modes."
[[option.mode.NONE]]
  name = "none"
  help = "Do not block models."
[[option.mode.LITERALS]]
  name = "literals"
  help = "Block models based on the SAT skeleton."
[[option.mode.VALUES]]
  name = "values"
  help = "Block models based on the concrete model values for the free variables."

[[option]]
  name       = "proof"
  smt_name   = "produce-proofs"
  category   = "regular"
  long       = "proof"
  type       = "bool"
  default    = "false"
  predicates = ["proofEnabledBuild"]
  notifies   = ["notifyBeforeSearch"]
  read_only  = true
  help       = "turn on proof generation"

[[option]]
  name       = "checkProofs"
  category   = "regular"
  long       = "check-proofs"
  type       = "bool"
  predicates = ["LFSCEnabledBuild"]
  notifies   = ["notifyBeforeSearch"]
  links      = ["--proof"]
  help       = "after UNSAT/VALID, machine-check the generated proof"

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

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

[[option]]
  name       = "sygusOut"
  category   = "regular"
  long       = "sygus-out=MODE"
  type       = "SygusSolutionOutMode"
  default    = "STATUS_AND_DEF"
  help       = "output mode for sygus"
  help_mode  = "Modes for sygus solution output."
[[option.mode.STATUS]]
  name = "status"
  help = "Print only status for check-synth calls."
[[option.mode.STATUS_AND_DEF]]
  name = "status-and-def"
  help = "Print status followed by definition corresponding to solution."
[[option.mode.STATUS_OR_DEF]]
  name = "status-or-def"
  help = "Print status if infeasible, or definition corresponding to solution if feasible."
[[option.mode.STANDARD]]
  name = "sygus-standard"
  help = "Print based on SyGuS standard."

[[option]]
  name       = "sygusPrintCallbacks"
  category   = "regular"
  long       = "sygus-print-callbacks"
  type       = "bool"
  default    = "true"
  read_only  = true
  help       = "use sygus print callbacks to print sygus terms in the user-provided form (disable for debugging)"

[[option]]
  name       = "dumpSynth"
  category   = "regular"
  long       = "dump-synth"
  type       = "bool"
  default    = "false"
  help       = "output solution for synthesis conjectures after every UNSAT/VALID response"

[[option]]
  name       = "unsatCores"
  category   = "regular"
  long       = "produce-unsat-cores"
  type       = "bool"
  predicates = ["proofEnabledBuild"]
  notifies   = ["notifyBeforeSearch"]
  help       = "turn on unsat core generation"

[[option]]
  name       = "checkUnsatCores"
  category   = "regular"
  long       = "check-unsat-cores"
  type       = "bool"
  links      = ["--produce-unsat-cores"]
  help       = "after UNSAT/VALID, produce and check an unsat core (expensive)"

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

[[option]]
  name       = "dumpUnsatCoresFull"
  category   = "regular"
  long       = "dump-unsat-cores-full"
  type       = "bool"
  default    = "false"
  notifies   = ["notifyBeforeSearch"]
  links      = ["--dump-unsat-cores"]
  read_only  = true
  help       = "dump the full unsat core, including unlabeled assertions"

[[option]]
  name       = "unsatAssumptions"
  category   = "regular"
  long       = "produce-unsat-assumptions"
  type       = "bool"
  default    = "false"
  links      = ["--produce-unsat-cores"]
  predicates = ["proofEnabledBuild"]
  notifies   = ["notifyBeforeSearch"]
  read_only  = true
  help       = "turn on unsat assumptions generation"

[[option]]
  name       = "checkSynthSol"
  category   = "regular"
  long       = "check-synth-sol"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "checks whether produced solutions to functions-to-synthesize satisfy the conjecture"

[[option]]
  name       = "produceAssignments"
  category   = "regular"
  long       = "produce-assignments"
  type       = "bool"
  default    = "false"
  notifies   = ["notifyBeforeSearch"]
  read_only  = true
  help       = "support the get-assignment command"

[[option]]
  name       = "interactiveMode"
  smt_name   = "interactive-mode"
  category   = "undocumented"
  type       = "bool"
  predicates = ["setProduceAssertions"]
  notifies   = ["notifyBeforeSearch"]
  help       = "deprecated name for produce-assertions"

[[option]]
  name       = "produceAssertions"
  category   = "common"
  long       = "produce-assertions"
  type       = "bool"
  predicates = ["setProduceAssertions"]
  notifies   = ["notifyBeforeSearch"]
  help       = "keep an assertions list (enables get-assertions command)"

[[option]]
  name       = "doITESimp"
  category   = "regular"
  long       = "ite-simp"
  type       = "bool"
  help       = "turn on ite simplification (Kim (and Somenzi) et al., SAT 2009)"

[[option]]
  name       = "doITESimpOnRepeat"
  category   = "regular"
  long       = "on-repeat-ite-simp"
  type       = "bool"
  default    = "false"
  help       = "do the ite simplification pass again if repeating simplification"

[[option]]
  name       = "extRewPrep"
  category   = "regular"
  long       = "ext-rew-prep"
  type       = "bool"
  default    = "false"
  help       = "use extended rewriter as a preprocessing pass"

[[option]]
  name       = "extRewPrepAgg"
  category   = "regular"
  long       = "ext-rew-prep-agg"
  type       = "bool"
  default    = "false"
  help       = "use aggressive extended rewriter as a preprocessing pass"

[[option]]
  name       = "simplifyWithCareEnabled"
  category   = "regular"
  long       = "simp-with-care"
  type       = "bool"
  default    = "false"
  help       = "enables simplifyWithCare in ite simplificiation"

[[option]]
  name       = "compressItes"
  category   = "regular"
  long       = "simp-ite-compress"
  type       = "bool"
  default    = "false"
  help       = "enables compressing ites after ite simplification"

[[option]]
  name       = "unconstrainedSimp"
  category   = "regular"
  long       = "unconstrained-simp"
  type       = "bool"
  default    = "false"
  help       = "turn on unconstrained simplification (see Bruttomesso/Brummayer PhD thesis)"

[[option]]
  name       = "repeatSimp"
  category   = "regular"
  long       = "repeat-simp"
  type       = "bool"
  help       = "make multiple passes with nonclausal simplifier"

[[option]]
  name       = "zombieHuntThreshold"
  category   = "regular"
  long       = "simp-ite-hunt-zombies=N"
  type       = "uint32_t"
  default    = "524288"
  read_only  = true
  help       = "post ite compression enables zombie removal while the number of nodes is above this threshold"

[[option]]
  name       = "sortInference"
  category   = "regular"
  long       = "sort-inference"
  type       = "bool"
  default    = "false"
  help       = "calculate sort inference of input problem, convert the input based on monotonic sorts"
  
[[option]]
  name       = "incrementalSolving"
  category   = "common"
  short      = "i"
  long       = "incremental"
  type       = "bool"
  default    = "true"
  read_only  = true
  help       = "enable incremental solving"

[[option]]
  name       = "abstractValues"
  category   = "regular"
  long       = "abstract-values"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "in models, output arrays (and in future, maybe others) using abstract values, as required by the SMT-LIB standard"

[[option]]
  name       = "modelUninterpDtEnum"
  category   = "regular"
  long       = "model-u-dt-enum"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "in models, output uninterpreted sorts as datatype enumerations"

[[option]]
  name       = "modelWitnessChoice"
  category   = "regular"
  long       = "model-witness-choice"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "in models, use a witness constant for choice functions"

[[option]]
  name       = "regularChannelName"
  smt_name   = "regular-output-channel"
  category   = "regular"
  type       = "std::string"
  notifies   = ["notifySetRegularOutputChannel"]
  read_only  = true
  help       = "set the regular output channel of the solver"

[[option]]
  name       = "diagnosticChannelName"
  smt_name   = "diagnostic-output-channel"
  category   = "regular"
  type       = "std::string"
  notifies   = ["notifySetDiagnosticOutputChannel"]
  read_only  = true
  help       = "set the diagnostic output channel of the solver"

[[option]]
  name       = "cumulativeMillisecondLimit"
  smt_name   = "tlimit"
  category   = "common"
  long       = "tlimit=MS"
  type       = "unsigned long"
  handler    = "limitHandler"
  notifies   = ["notifyTlimit"]
  read_only  = true
  help       = "enable time limiting (give milliseconds)"

[[option]]
  name       = "perCallMillisecondLimit"
  smt_name   = "tlimit-per"
  category   = "common"
  long       = "tlimit-per=MS"
  type       = "unsigned long"
  handler    = "limitHandler"
  notifies   = ["notifyTlimitPer"]
  read_only  = true
  help       = "enable time limiting per query (give milliseconds)"

[[option]]
  name       = "cumulativeResourceLimit"
  smt_name   = "rlimit"
  category   = "common"
  long       = "rlimit=N"
  type       = "unsigned long"
  handler    = "limitHandler"
  notifies   = ["notifyRlimit"]
  read_only  = true
  help       = "enable resource limiting (currently, roughly the number of SAT conflicts)"

[[option]]
  name       = "perCallResourceLimit"
  smt_name   = "reproducible-resource-limit"
  category   = "common"
  long       = "rlimit-per=N"
  type       = "unsigned long"
  handler    = "limitHandler"
  notifies   = ["notifyRlimitPer"]
  read_only  = true
  help       = "enable resource limiting per query"

[[option]]
  name       = "hardLimit"
  category   = "common"
  long       = "hard-limit"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "the resource limit is hard potentially leaving the smtEngine in an unsafe state (should be destroyed and rebuild after resourcing out)"

[[option]]
  name       = "cpuTime"
  category   = "common"
  long       = "cpu-time"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "measures CPU time if set to true and wall time if false (default false)"

[[option]]
  name       = "rewriteStep"
  category   = "expert"
  long       = "rewrite-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each rewrite step"

[[option]]
  name       = "theoryCheckStep"
  category   = "expert"
  long       = "theory-check-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each theory check call"

[[option]]
  name       = "decisionStep"
  category   = "expert"
  long       = "decision-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of getNext decision calls in the decision engine"

[[option]]
  name       = "bitblastStep"
  category   = "expert"
  long       = "bitblast-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each bitblast step"

[[option]]
  name       = "bvPropagationStep"
  category   = "expert"
  long       = "bv-propagation-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each BV propagation step"

[[option]]
  name       = "bvEagerAssertStep"
  category   = "expert"
  long       = "bv-eager-assert-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each eager BV assert step"

[[option]]
  name       = "parseStep"
  category   = "expert"
  long       = "parse-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each command/expression parsing"

[[option]]
  name       = "lemmaStep"
  category   = "expert"
  long       = "lemma-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent when adding lemmas"

[[option]]
  name       = "restartStep"
  category   = "expert"
  long       = "restart-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each theory restart"

[[option]]
  name       = "cnfStep"
  category   = "expert"
  long       = "cnf-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each call to cnf conversion"

[[option]]
  name       = "preprocessStep"
  category   = "expert"
  long       = "preprocess-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each preprocessing step in SmtEngine"

[[option]]
  name       = "quantifierStep"
  category   = "expert"
  long       = "quantifier-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for quantifier instantiations"

[[option]]
  name       = "satConflictStep"
  category   = "expert"
  long       = "sat-conflict-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each sat conflict (main sat solver)"

[[option]]
  name       = "bvSatConflictStep"
  category   = "expert"
  long       = "bv-sat-conflict-step=N"
  type       = "unsigned"
  default    = "1"
  read_only  = true
  help       = "amount of resources spent for each sat conflict (bitvectors)"

[[option]]
  name       = "forceNoLimitCpuWhileDump"
  category   = "regular"
  long       = "force-no-limit-cpu-while-dump"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "Force no CPU limit when dumping models and proofs"

[[option]]
  name       = "solveBVAsInt"
  category   = "undocumented"
  long       = "solve-bv-as-int=N"
  type       = "uint32_t"
  default    = "0"
  read_only  = true
  help       = "attempt to solve BV formulas by translation to integer arithmetic (experimental)"

[[option]]
  name       = "solveIntAsBV"
  category   = "undocumented"
  long       = "solve-int-as-bv=N"
  type       = "uint32_t"
  default    = "0"
  read_only  = true
  help       = "attempt to solve a pure integer satisfiable problem by bitblasting in sufficient bitwidth (experimental)"

[[option]]
  name       = "solveRealAsInt"
  category   = "undocumented"
  long       = "solve-real-as-int"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "attempt to solve a pure real satisfiable problem as an integer problem (for non-linear)"

[[option]]
  name       = "produceAbducts"
  category   = "undocumented"
  long       = "produce-abducts"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "support the get-abduct command"

[[option]]
  name       = "checkAbducts"
  category   = "regular"
  long       = "check-abducts"
  type       = "bool"
  default    = "false"
  read_only  = true
  help       = "checks whether produced solutions to get-abduct are correct"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback