From: Clark Barrett Date: Tue, 2 Apr 2013 00:06:09 +0000 (-0400) Subject: Disabling eager array index splitting for QF_AX X-Git-Tag: cvc5-1.0.0~7346 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1898e8aa441a83f83a7603a7e157284accbd019b;p=cvc5.git Disabling eager array index splitting for QF_AX --- 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); }