summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2017-12-07 04:07:17 -0600
committerGitHub <noreply@github.com>2017-12-07 04:07:17 -0600
commit805d4b7483e51a9b4d24058d493f85700a87f099 (patch)
treea003c96607274d81f93c3bbff5ecfeeac0793d5c /src/smt
parent691abe521ea8a7e87db51e22880cf101d59bf3e7 (diff)
Fixes related to SyGuS + real arithmetic (#1432)
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/smt_engine.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 12f822503..a007fa412 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -1310,6 +1310,11 @@ void SmtEngine::setDefaults() {
{
options::ceGuidedInst.set(true);
}
+ // must use Ferrante/Rackoff for real arithmetic
+ if (!options::cbqiMidpoint.wasSetByUser())
+ {
+ options::cbqiMidpoint.set(true);
+ }
}
if(options::forceLogicString.wasSetByUser()) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback