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 eb2c05858..06f5d7600 100644
--- a/src/theory/quantifiers/options_handlers.h
+++ b/src/theory/quantifiers/options_handlers.h
@@ -128,6 +128,9 @@ conflict \n\
prop-eq \n\
+ Apply QCF to propagate equalities as well. \n\
\n\
+partial \n\
++ Apply QCF to instantiate heuristically as well. \n\
+\n\
mc \n\
+ Apply QCF in a complete way, so that a model is ensured when it fails. \n\
\n\
@@ -258,6 +261,8 @@ inline QcfMode stringToQcfMode(std::string option, std::string optarg, SmtEngine
return QCF_CONFLICT_ONLY;
} else if(optarg == "prop-eq") {
return QCF_PROP_EQ;
+ } else if(optarg == "partial") {
+ return QCF_PARTIAL;
} else if(optarg == "mc" ) {
return QCF_MC;
} else if(optarg == "help") {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback