summaryrefslogtreecommitdiff
path: root/src/compat/cvc3_compat.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-10-04 20:48:13 +0000
committerMorgan Deters <mdeters@gmail.com>2012-10-04 20:48:13 +0000
commit7a9899f394476e53b7f759e698c7e10c8388fd57 (patch)
treeb6be6b6ecf2f3fe7b127c2fb42ebc5d9879058d8 /src/compat/cvc3_compat.cpp
parent930601b40c68d959e66abc71da6ff3296860952e (diff)
disable model-generation by default in cvc3 compatibility layer. should fix system test failure (bug 414).
Diffstat (limited to 'src/compat/cvc3_compat.cpp')
-rw-r--r--src/compat/cvc3_compat.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compat/cvc3_compat.cpp b/src/compat/cvc3_compat.cpp
index 95417845f..8ba91b419 100644
--- a/src/compat/cvc3_compat.cpp
+++ b/src/compat/cvc3_compat.cpp
@@ -738,7 +738,9 @@ void ValidityChecker::setUpOptions(CVC4::Options& options, const CLFlags& clflag
// always incremental and model-producing in CVC3 compatibility mode
// also incrementally-simplifying and interactive
d_smt->setOption("incremental", string("true"));
- d_smt->setOption("produce-models", string("true"));
+ // disable this option by default for now, because datatype models
+ // are broken [MGD 10/4/2012]
+ //d_smt->setOption("produce-models", string("true"));
d_smt->setOption("simplification-mode", string("incremental"));
d_smt->setOption("interactive-mode", string("true"));// support SmtEngine::getAssertions()
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback