summaryrefslogtreecommitdiff
path: root/src/options/theory_options.toml
blob: 0c4fa7aca1ccac13b211ba804e5020e7f325b708 (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
id     = "THEORY"
name   = "Theory layer"

[[option]]
  name       = "theoryOfMode"
  smt_name   = "theoryof-mode"
  category   = "expert"
  long       = "theoryof-mode=MODE"
  type       = "TheoryOfMode"
  default    = "THEORY_OF_TYPE_BASED"
  help       = "mode for Theory::theoryof()"
  help_mode  = "Defines how we associate theories with terms."
[[option.mode.THEORY_OF_TYPE_BASED]]
  name = "type"
  help = "Type variables, constants and equalities by type."
[[option.mode.THEORY_OF_TERM_BASED]]
  name = "term"
  help = "Type variables as uninterpreted, type constants by theory, equalities by the parametric theory."

[[option]]
  name       = "assignFunctionValues"
  category   = "regular"
  long       = "assign-function-values"
  type       = "bool"
  default    = "true"
  help       = "assign values for uninterpreted functions in models"

[[option]]
  name       = "condenseFunctionValues"
  category   = "regular"
  long       = "condense-function-values"
  type       = "bool"
  default    = "true"
  help       = "condense values for functions in models rather than explicitly representing them"

[[option]]
  name       = "relevanceFilter"
  category   = "regular"
  long       = "relevance-filter"
  type       = "bool"
  default    = "false"
  help       = "enable analysis of relevance of asserted literals with respect to the input formula"

[[option]]
  name       = "eeMode"
  category   = "expert"
  long       = "ee-mode=MODE"
  type       = "EqEngineMode"
  default    = "DISTRIBUTED"
  help       = "mode for managing equalities across theory solvers"
  help_mode  = "Defines mode for managing equalities across theory solvers."
[[option.mode.DISTRIBUTED]]
  name = "distributed"
  help = "Each theory maintains its own equality engine."

[[option]]
  name       = "tcMode"
  category   = "expert"
  long       = "tc-mode=MODE"
  type       = "TcMode"
  default    = "CARE_GRAPH"
  help       = "mode for theory combination"
  help_mode  = "Defines mode for theory combination."
[[option.mode.CARE_GRAPH]]
  name = "care-graph"
  help = "Use care graphs for theory combination."
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback