summaryrefslogtreecommitdiff
path: root/src/options/proof_options.toml
blob: 3eb32060e0d17c80af1ad65aa8e5c1fe4c85202e (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
id     = "PROOF"
name   = "Proof"

[[option]]
  name       = "proofFormatMode"
  category   = "regular"
  long       = "proof-format-mode=MODE"
  type       = "ProofFormatMode"
  default    = "NONE"
  help       = "select language of proof output"
  help_mode  = "Proof format modes."
[[option.mode.NONE]]
  name       = "none"
  help       = "Do not translate proof output"
[[option.mode.DOT]]
  name       = "dot"
  help       = "Output DOT proof"
[[option.mode.LFSC]]
  name       = "lfsc"
  help       = "Output LFSC proof"
[[option.mode.ALETHE]]
  name       = "alethe"
  help       = "Output Alethe proof"
[[option.mode.TPTP]]
  name       = "tptp"
  help       = "Output TPTP proof (work in progress)"

[[option]]
  name       = "proofPrintConclusion"
  category   = "regular"
  long       = "proof-print-conclusion"
  type       = "bool"
  default    = "false"
  help       = "Print conclusion of proof steps when printing AST"

[[option]]
  name       = "proofPedantic"
  category   = "regular"
  long       = "proof-pedantic=N"
  type       = "uint64_t"
  default    = "0"
  help       = "assertion failure for any incorrect rule application or untrusted lemma having pedantic level <=N with proof"

[[option]]
  name       = "proofCheck"
  category   = "regular"
  long       = "proof-check=MODE"
  type       = "ProofCheckMode"
  default    = "LAZY"
  help       = "select proof checking mode"
  help_mode  = "Proof checking modes."
[[option.mode.EAGER]]
  name       = "eager"
  help       = "check rule applications and proofs from generators eagerly for local debugging"
[[option.mode.EAGER_SIMPLE]]
  name       = "eager-simple"
  help       = "check rule applications during construction"
[[option.mode.LAZY]]
  name       = "lazy"
  help       = "check rule applications only during final proof construction"
[[option.mode.NONE]]
  name       = "none"
  help       = "do not check rule applications"

[[option]]
  name       = "proofPpMerge"
  category   = "regular"
  long       = "proof-pp-merge"
  type       = "bool"
  default    = "true"
  help       = "merge subproofs in final proof post-processor"

[[option]]
  name       = "proofGranularityMode"
  category   = "regular"
  long       = "proof-granularity=MODE"
  type       = "ProofGranularityMode"
  default    = "THEORY_REWRITE"
  help       = "modes for proof granularity"
  help_mode  = "Modes for proof granularity."
[[option.mode.OFF]]
  name = "off"
  help = "Do not improve the granularity of proofs."
[[option.mode.REWRITE]]
  name = "rewrite"
  help = "Allow rewrite or substitution steps, expand macros."
[[option.mode.THEORY_REWRITE]]
  name = "theory-rewrite"
  help = "Allow theory rewrite steps, expand macros, rewrite and substitution steps."
[[option.mode.DSL_REWRITE]]
  name = "dsl-rewrite"
  help = "Allow DSL rewrites and evaluation steps, expand macros, rewrite, substitution, and theory rewrite steps."

[[option]]
  name       = "proofAletheResPivots"
  category   = "regular"
  long       = "proof-alethe-res-pivots"
  type       = "bool"
  default    = "false"
  help       = "Add pivots to Alethe resolution steps"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback