summaryrefslogtreecommitdiff
path: root/src/options
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-02-17 13:29:09 -0600
committerGitHub <noreply@github.com>2020-02-17 13:29:09 -0600
commit6a761852b93510bf707e7002ad663ca0f36ad720 (patch)
treea91cbd198e21e78b40ce7d6a943db962ee0c30c1 /src/options
parentb19c08997e15d2e42f61f1936fd60c5e34081d68 (diff)
Option to limit the number of rounds of enumerative instantiation (#3760)
Diffstat (limited to 'src/options')
-rw-r--r--src/options/quantifiers_options.toml15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/options/quantifiers_options.toml b/src/options/quantifiers_options.toml
index 84545e66e..cb989b433 100644
--- a/src/options/quantifiers_options.toml
+++ b/src/options/quantifiers_options.toml
@@ -545,7 +545,7 @@ header = "options/quantifiers_options.h"
long = "full-saturate-quant"
type = "bool"
default = "false"
- help = "when all other quantifier instantiation strategies fail, instantiate with ground terms from relevant domain, then arbitrary ground terms before answering unknown"
+ help = "enumerative instantiation: instantiate with ground terms from relevant domain, then arbitrary ground terms before answering unknown"
[[option]]
name = "fullSaturateQuantRd"
@@ -554,16 +554,25 @@ header = "options/quantifiers_options.h"
type = "bool"
default = "true"
read_only = true
- help = "whether to use relevant domain first for full saturation instantiation strategy"
+ help = "whether to use relevant domain first for enumerative instantiation strategy"
[[option]]
+ name = "fullSaturateLimit"
+ category = "regular"
+ long = "full-saturate-quant-limit=N"
+ type = "int"
+ default = "-1"
+ read_only = true
+ help = "maximum number of rounds of enumerative instantiation to apply (-1 means no limit)"
+
+[[option]]
name = "fullSaturateInterleave"
category = "regular"
long = "fs-interleave"
type = "bool"
default = "false"
read_only = true
- help = "interleave full saturate instantiation with other techniques"
+ help = "interleave enumerative instantiation with other techniques"
[[option]]
name = "fullSaturateStratify"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback