summaryrefslogtreecommitdiff
path: root/src/options/proof_options.toml
blob: f0458793e4d98fc5e9dce686c08b4eca17643d5c (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
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.VERIT]]
  name       = "verit"
  help       = "Output veriT proof"

[[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       = "proofEagerChecking"
  category   = "regular"
  long       = "proof-eager-checking"
  type       = "bool"
  default    = "false"
  help       = "check proofs eagerly with proof for local debugging"

[[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."
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback