From 43cec89207dd1043608273769a20309167ad3c90 Mon Sep 17 00:00:00 2001 From: Andres Noetzli Date: Fri, 12 Oct 2018 19:35:01 -0700 Subject: Reset input language for ExprMiner subsolver (#2624) --- src/theory/quantifiers/expr_miner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/theory/quantifiers/expr_miner.cpp') diff --git a/src/theory/quantifiers/expr_miner.cpp b/src/theory/quantifiers/expr_miner.cpp index 67aa8688c..16e59c119 100644 --- a/src/theory/quantifiers/expr_miner.cpp +++ b/src/theory/quantifiers/expr_miner.cpp @@ -77,8 +77,7 @@ void ExprMiner::initializeChecker(std::unique_ptr& checker, // check is ground. Node squery = convertToSkolem(query); NodeManager* nm = NodeManager::currentNM(); - if (options::sygusExprMinerCheckTimeout.wasSetByUser() - || options::sygusRewSynthInput()) + if (options::sygusExprMinerCheckUseExport()) { // To support a separate timeout for the subsolver, we need to create // a separate ExprManager with its own options. This requires that @@ -91,6 +90,7 @@ void ExprMiner::initializeChecker(std::unique_ptr& checker, checker->setTimeLimit(options::sygusExprMinerCheckTimeout(), true); checker->setLogic(smt::currentSmtEngine()->getLogicInfo()); checker->setOption("sygus-rr-synth-input", false); + checker->setOption("input-language", "smt2"); Expr equery = squery.toExpr().exportTo(&em, varMap); checker->assertFormula(equery); } -- cgit v1.2.3