summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/options_handlers.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-02-20 10:37:32 -0600
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-02-20 10:37:46 -0600
commitf37804c3da98f4eb1888991fd8b7157437aeeb44 (patch)
tree0baeed78ff7107a2f8ac32d8b2a8cc3d6e10de91 /src/theory/quantifiers/options_handlers.h
parent531ec6e52b75cd2f600a3fc781383e7539f2335a (diff)
Fix ite and iff handling in QCF. Add option for heuristic instantiation in QCF (not working yet). Improve automatic option setting for quantifiers.
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