From 1898e8aa441a83f83a7603a7e157284accbd019b Mon Sep 17 00:00:00 2001 From: Clark Barrett Date: Mon, 1 Apr 2013 20:06:09 -0400 Subject: [PATCH] Disabling eager array index splitting for QF_AX --- src/smt/smt_engine.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp index d4448787f..8d13b5cc6 100644 --- a/src/smt/smt_engine.cpp +++ b/src/smt/smt_engine.cpp @@ -864,12 +864,13 @@ void SmtEngine::setLogicInternal() throw() { Trace("smt") << "setting ite simplification to " << iteSimp << endl; options::doITESimp.set(iteSimp); } - // Turn off array eager index splitting for QF_AUFLIA + // Turn off array eager index splitting for QF_AUFLIA and QF_AX if(! options::arraysEagerIndexSplitting.wasSetByUser()) { if (not d_logic.isQuantified() && d_logic.isTheoryEnabled(THEORY_ARRAY) && - d_logic.isTheoryEnabled(THEORY_UF) && - d_logic.isTheoryEnabled(THEORY_ARITH)) { + (d_logic.isPure(THEORY_ARRAY) || + (d_logic.isTheoryEnabled(THEORY_UF) && + d_logic.isTheoryEnabled(THEORY_ARITH)))) { Trace("smt") << "setting array eager index splitting to false" << endl; options::arraysEagerIndexSplitting.set(false); } -- 2.30.2