summaryrefslogtreecommitdiff
path: root/src/options/proof_options.toml
diff options
context:
space:
mode:
Diffstat (limited to 'src/options/proof_options.toml')
-rw-r--r--src/options/proof_options.toml38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/options/proof_options.toml b/src/options/proof_options.toml
index c744b237b..631a27604 100644
--- a/src/options/proof_options.toml
+++ b/src/options/proof_options.toml
@@ -10,3 +10,41 @@ header = "options/proof_options.h"
default = "false"
read_only = true
help = "Print conclusion of proof steps when printing AST"
+
+[[option]]
+ name = "proofPedantic"
+ category = "regular"
+ long = "proof-pedantic=N"
+ type = "uint32_t"
+ default = "0"
+ read_only = true
+ 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