summaryrefslogtreecommitdiff
path: root/src/options/arrays_options.toml
blob: 389bb6e4c37cf47e435b5e588de8d16ee5369809 (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
id     = "ARRAYS"
name   = "Arrays theory"
header = "options/arrays_options.h"

[[option]]
  name       = "arraysOptimizeLinear"
  category   = "regular"
  long       = "arrays-optimize-linear"
  type       = "bool"
  default    = "true"
  help       = "turn on optimization for linear array terms (see de Moura FMCAD 09 arrays paper)"

[[option]]
  name       = "arraysLazyRIntro1"
  category   = "regular"
  long       = "arrays-lazy-rintro1"
  type       = "bool"
  default    = "true"
  help       = "turn on optimization to only perform RIntro1 rule lazily (see Jovanovic/Barrett 2012: Being Careful with Theory Combination)"

[[option]]
  name       = "arraysWeakEquivalence"
  category   = "regular"
  long       = "arrays-weak-equiv"
  type       = "bool"
  default    = "false"
  help       = "use algorithm from Christ/Hoenicke (SMT 2014)"

[[option]]
  name       = "arraysModelBased"
  category   = "regular"
  long       = "arrays-model-based"
  type       = "bool"
  default    = "false"
  help       = "turn on model-based array solver"

[[option]]
  name       = "arraysEagerIndexSplitting"
  category   = "regular"
  long       = "arrays-eager-index"
  type       = "bool"
  default    = "true"
  help       = "turn on eager index splitting for generated array lemmas"

[[option]]
  name       = "arraysEagerLemmas"
  category   = "regular"
  long       = "arrays-eager-lemmas"
  type       = "bool"
  default    = "false"
  help       = "turn on eager lemma generation for arrays"

[[option]]
  name       = "arraysConfig"
  category   = "regular"
  long       = "arrays-config=N"
  type       = "int"
  default    = "0"
  help       = "set different array option configurations - for developers only"

[[option]]
  name       = "arraysReduceSharing"
  category   = "regular"
  long       = "arrays-reduce-sharing"
  type       = "bool"
  default    = "false"
  help       = "use model information to reduce size of care graph for arrays"

[[option]]
  name       = "arraysPropagate"
  category   = "regular"
  long       = "arrays-prop=N"
  type       = "int"
  default    = "2"
  help       = "propagation effort for arrays: 0 is none, 1 is some, 2 is full"

[[option]]
  name       = "arraysExp"
  category   = "experimental"
  long       = "arrays-exp"
  type       = "bool"
  default    = "false"
  help       = "enable experimental features in the theory of arrays"

generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback