summaryrefslogtreecommitdiff
path: root/src/options/options_handler.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-05-15 12:34:51 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-05-15 12:34:51 -0500
commitf58c881034d3b0193dfee8fabf451cc0e9ea20ab (patch)
tree09cd8349c8c5d462d628eba4c95814f931692e00 /src/options/options_handler.cpp
parent411ced2c475e5ccb4c114ce2c77a39bf93d139f4 (diff)
Work on --sygus-direct-eval. Minor optimizations, updates to casc scripts. Enable e-matching when --strings-exp is enabled.
Diffstat (limited to 'src/options/options_handler.cpp')
-rw-r--r--src/options/options_handler.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/options/options_handler.cpp b/src/options/options_handler.cpp
index 7d41ae862..cbef7109f 100644
--- a/src/options/options_handler.cpp
+++ b/src/options/options_handler.cpp
@@ -390,7 +390,7 @@ uf-dt-size \n\
+ Enforce fairness using an uninterpreted function for datatypes size.\n\
\n\
default | dt-size \n\
-+ Default, enforce fairness using size theory operator.\n\
++ Default, enforce fairness using size operator.\n\
\n\
dt-height-bound \n\
+ Enforce fairness by height bound predicate.\n\
@@ -657,6 +657,8 @@ theory::quantifiers::CegqiFairMode OptionsHandler::stringToCegqiFairMode(std::st
return theory::quantifiers::CEGQI_FAIR_DT_SIZE;
} else if(optarg == "dt-height-bound" ){
return theory::quantifiers::CEGQI_FAIR_DT_HEIGHT_PRED;
+ //} else if(optarg == "dt-size-bound" ){
+ // return theory::quantifiers::CEGQI_FAIR_DT_SIZE_PRED;
} else if(optarg == "none") {
return theory::quantifiers::CEGQI_FAIR_NONE;
} else if(optarg == "help") {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback