From 7a9899f394476e53b7f759e698c7e10c8388fd57 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Thu, 4 Oct 2012 20:48:13 +0000 Subject: disable model-generation by default in cvc3 compatibility layer. should fix system test failure (bug 414). --- src/compat/cvc3_compat.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/compat') 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() -- cgit v1.2.3