summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/options_handlers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/options_handlers.h')
-rw-r--r--src/theory/quantifiers/options_handlers.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/theory/quantifiers/options_handlers.h b/src/theory/quantifiers/options_handlers.h
index f492eb094..9fb5dd69d 100644
--- a/src/theory/quantifiers/options_handlers.h
+++ b/src/theory/quantifiers/options_handlers.h
@@ -148,6 +148,9 @@ resort \n\
ignore \n\
+ Ignore user-provided patterns. \n\
\n\
+interleave \n\
++ Alternate between use/resort. \n\
+\n\
";
static const std::string triggerSelModeHelp = "\
Trigger selection modes currently supported by the --trigger-sel option:\n\
@@ -336,6 +339,8 @@ inline UserPatMode stringToUserPatMode(std::string option, std::string optarg, S
return USER_PAT_MODE_RESORT;
} else if(optarg == "ignore") {
return USER_PAT_MODE_IGNORE;
+ } else if(optarg == "interleave") {
+ return USER_PAT_MODE_INTERLEAVE;
} else if(optarg == "help") {
puts(userPatModeHelp.c_str());
exit(1);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback