summaryrefslogtreecommitdiff
path: root/src/options/smt_options.toml
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-12-16 16:35:59 -0600
committerGitHub <noreply@github.com>2020-12-16 16:35:59 -0600
commitcd33db0a13ef195995885c4c42031386b2261ac4 (patch)
treed3c03af37aa8c60741eb5c54e1122d9328374575 /src/options/smt_options.toml
parentd5de3d822b978be11c98da5f026ab5f2ca9d0a83 (diff)
Simplify preprocessing (#5647)
This simplifies preprocessing so that the only call to theory-preprocess and ite-removal is at the very end. (One exception is early-theory-pp which is used by default in combination with ite-simp to maintain the performance on QF_LIA/nec). This is in preparation for making theory preprocessing happen lazily, post-CNF conversion. @HanielB has done SMT-LIB performance runs, see below.
Diffstat (limited to 'src/options/smt_options.toml')
-rw-r--r--src/options/smt_options.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/options/smt_options.toml b/src/options/smt_options.toml
index 08d53855c..b01b7780f 100644
--- a/src/options/smt_options.toml
+++ b/src/options/smt_options.toml
@@ -362,6 +362,14 @@ header = "options/smt_options.h"
help = "enables compressing ites after ite simplification"
[[option]]
+ name = "earlyIteRemoval"
+ category = "experimental"
+ long = "early-ite-removal"
+ type = "bool"
+ default = "false"
+ help = "remove ITEs early in preprocessing"
+
+[[option]]
name = "unconstrainedSimp"
category = "regular"
long = "unconstrained-simp"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback