summaryrefslogtreecommitdiff
path: root/src/theory/smt_engine_subsolver.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-03-03 09:18:59 -0600
committerGitHub <noreply@github.com>2020-03-03 09:18:59 -0600
commit0cd812af4a6db43a7d6c2c95fff7e58f86e90a78 (patch)
treeab35d8c8dd7ee7c7c8ba085d42ef834fe17e2dbd /src/theory/smt_engine_subsolver.cpp
parent1d44edf91762b837adf3db5ed40af9383e883b28 (diff)
Standardize the interface for SMT engine subsolvers (#3836)
This standardizes the interface for using SMT engines as subsolvers in various approaches. More refactoring is possible, but this is an initial cut at cleaning things up. This will make it easy to accommodate new feature request for SyGuS (timeouts for calls to verification steps). Notice this also required adding a missing function (mkGroundTerm/isWellFounded for functions) which was caught after standardizing due to an optimization (don't create SmtEngines to check satisfiability of constant Booleans).
Diffstat (limited to 'src/theory/smt_engine_subsolver.cpp')
-rw-r--r--src/theory/smt_engine_subsolver.cpp170
1 files changed, 170 insertions, 0 deletions
diff --git a/src/theory/smt_engine_subsolver.cpp b/src/theory/smt_engine_subsolver.cpp
new file mode 100644
index 000000000..6b856462a
--- /dev/null
+++ b/src/theory/smt_engine_subsolver.cpp
@@ -0,0 +1,170 @@
+/********************* */
+/*! \file smt_engine_subsolver.cpp
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Andrew Reynolds, Andres Noetzli
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2019 by the authors listed in the file AUTHORS
+ ** in the top-level source directory) and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief Implementation of utilities for initializing subsolvers (copies of
+ ** SmtEngine) during solving.
+ **/
+
+#include "theory/smt_engine_subsolver.h"
+
+#include "smt/smt_engine.h"
+#include "smt/smt_engine_scope.h"
+#include "theory/rewriter.h"
+
+namespace CVC4 {
+namespace theory {
+
+// optimization: try to rewrite to constant
+Result quickCheck(Node& query)
+{
+ query = theory::Rewriter::rewrite(query);
+ if (query.isConst())
+ {
+ if (!query.getConst<bool>())
+ {
+ return Result(Result::UNSAT);
+ }
+ else
+ {
+ return Result(Result::SAT);
+ }
+ }
+ return Result(Result::SAT_UNKNOWN, Result::REQUIRES_FULL_CHECK);
+}
+
+void initializeSubsolver(std::unique_ptr<SmtEngine>& smte)
+{
+ NodeManager* nm = NodeManager::currentNM();
+ smte.reset(new SmtEngine(nm->toExprManager()));
+ smte->setIsInternalSubsolver();
+ smte->setLogic(smt::currentSmtEngine()->getLogicInfo());
+}
+
+void initializeSubsolverWithExport(std::unique_ptr<SmtEngine>& smte,
+ ExprManager& em,
+ ExprManagerMapCollection& varMap,
+ Node query,
+ bool needsTimeout,
+ unsigned long timeout)
+{
+ // To support a separate timeout for the subsolver, we need to use
+ // a separate ExprManager with its own options. This requires that
+ // the expressions sent to the subsolver can be exported from on
+ // ExprManager to another. If the export fails, we throw an
+ // OptionException.
+ try
+ {
+ smte.reset(new SmtEngine(&em));
+ smte->setIsInternalSubsolver();
+ if (needsTimeout)
+ {
+ smte->setTimeLimit(timeout, true);
+ }
+ smte->setLogic(smt::currentSmtEngine()->getLogicInfo());
+ Expr equery = query.toExpr().exportTo(&em, varMap);
+ smte->assertFormula(equery);
+ }
+ catch (const CVC4::ExportUnsupportedException& e)
+ {
+ std::stringstream msg;
+ msg << "Unable to export " << query
+ << " but exporting expressions is "
+ "required for a subsolver.";
+ throw OptionException(msg.str());
+ }
+}
+
+void initializeSubsolver(std::unique_ptr<SmtEngine>& smte, Node query)
+{
+ initializeSubsolver(smte);
+ smte->assertFormula(query.toExpr());
+}
+
+Result checkWithSubsolver(std::unique_ptr<SmtEngine>& smte, Node query)
+{
+ Assert(query.getType().isBoolean());
+ Result r = quickCheck(query);
+ if (!r.isUnknown())
+ {
+ return r;
+ }
+ initializeSubsolver(smte, query);
+ return smte->checkSat();
+}
+
+Result checkWithSubsolver(Node query, bool needsTimeout, unsigned long timeout)
+{
+ std::vector<Node> vars;
+ std::vector<Node> modelVals;
+ return checkWithSubsolver(query, vars, modelVals, needsTimeout, timeout);
+}
+
+Result checkWithSubsolver(Node query,
+ const std::vector<Node>& vars,
+ std::vector<Node>& modelVals,
+ bool needsTimeout,
+ unsigned long timeout)
+{
+ Assert(query.getType().isBoolean());
+ Assert(modelVals.empty());
+ // ensure clear
+ modelVals.clear();
+ Result r = quickCheck(query);
+ if (!r.isUnknown())
+ {
+ if (r.asSatisfiabilityResult().isSat() == Result::SAT)
+ {
+ // default model
+ for (const Node& v : vars)
+ {
+ modelVals.push_back(v.getType().mkGroundTerm());
+ }
+ }
+ return r;
+ }
+ std::unique_ptr<SmtEngine> smte;
+ ExprManagerMapCollection varMap;
+ NodeManager* nm = NodeManager::currentNM();
+ ExprManager em(nm->getOptions());
+ bool needsExport = false;
+ if (needsTimeout)
+ {
+ needsExport = true;
+ initializeSubsolverWithExport(
+ smte, em, varMap, query, needsTimeout, timeout);
+ }
+ else
+ {
+ initializeSubsolver(smte, query);
+ }
+ r = smte->checkSat();
+ if (r.asSatisfiabilityResult().isSat() == Result::SAT)
+ {
+ for (const Node& v : vars)
+ {
+ Expr val;
+ if (needsExport)
+ {
+ Expr ev = v.toExpr().exportTo(&em, varMap);
+ val = smte->getValue(ev).exportTo(nm->toExprManager(), varMap);
+ }
+ else
+ {
+ val = smte->getValue(v.toExpr());
+ }
+ modelVals.push_back(Node::fromExpr(val));
+ }
+ }
+ return r;
+}
+
+} // namespace theory
+} // namespace CVC4
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback