From: Aina Niemetz Date: Tue, 9 Mar 2021 18:00:47 +0000 (-0800) Subject: New C++ API: Reorder and clean up cpp file. (#6086) X-Git-Tag: cvc5-1.0.0~2129 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1b180f87266ffa206da1d5b772816b80e7f97c14;p=cvc5.git New C++ API: Reorder and clean up cpp file. (#6086) --- diff --git a/src/api/cvc4cpp.cpp b/src/api/cvc4cpp.cpp index 62fb97d1b..fbbaeee24 100644 --- a/src/api/cvc4cpp.cpp +++ b/src/api/cvc4cpp.cpp @@ -3232,9 +3232,11 @@ Solver::Solver(Options* opts) Solver::~Solver() {} -/* Helpers */ +/* Helpers and private functions */ /* -------------------------------------------------------------------------- */ +NodeManager* Solver::getNodeManager(void) const { return d_nodeMgr.get(); } + /* Split out to avoid nested API calls (problematic with API tracing). */ /* .......................................................................... */ @@ -3496,6 +3498,126 @@ std::vector Solver::mkDatatypeSortsInternal( CVC4_API_SOLVER_TRY_CATCH_END; } +Term Solver::synthFunHelper(const std::string& symbol, + const std::vector& boundVars, + const Sort& sort, + bool isInv, + Grammar* g) const +{ + CVC4_API_SOLVER_TRY_CATCH_BEGIN; + CVC4_API_ARG_CHECK_NOT_NULL(sort); + + std::vector varTypes; + for (size_t i = 0, n = boundVars.size(); i < n; ++i) + { + CVC4_API_ARG_AT_INDEX_CHECK_EXPECTED( + this == boundVars[i].d_solver, "bound variable", boundVars[i], i) + << "bound variable associated to this solver object"; + CVC4_API_ARG_AT_INDEX_CHECK_EXPECTED( + !boundVars[i].isNull(), "bound variable", boundVars[i], i) + << "a non-null term"; + CVC4_API_ARG_AT_INDEX_CHECK_EXPECTED( + boundVars[i].d_node->getKind() == CVC4::Kind::BOUND_VARIABLE, + "bound variable", + boundVars[i], + i) + << "a bound variable"; + varTypes.push_back(boundVars[i].d_node->getType()); + } + CVC4_API_SOLVER_CHECK_SORT(sort); + + if (g != nullptr) + { + CVC4_API_CHECK(g->d_ntSyms[0].d_node->getType() == *sort.d_type) + << "Invalid Start symbol for Grammar g, Expected Start's sort to be " + << *sort.d_type << " but found " << g->d_ntSyms[0].d_node->getType(); + } + + TypeNode funType = varTypes.empty() ? *sort.d_type + : getNodeManager()->mkFunctionType( + varTypes, *sort.d_type); + + Node fun = getNodeManager()->mkBoundVar(symbol, funType); + (void)fun.getType(true); /* kick off type checking */ + + std::vector bvns = Term::termVectorToNodes(boundVars); + + d_smtEngine->declareSynthFun( + fun, g == nullptr ? funType : *g->resolve().d_type, isInv, bvns); + + return Term(this, fun); + + CVC4_API_SOLVER_TRY_CATCH_END; +} + +Term Solver::ensureTermSort(const Term& term, const Sort& sort) const +{ + CVC4_API_CHECK(term.getSort() == sort + || (term.getSort().isInteger() && sort.isReal())) + << "Expected conversion from Int to Real"; + + Sort t = term.getSort(); + if (term.getSort() == sort) + { + return term; + } + + // Integers are reals, too + Assert(t.isReal()); + Term res = term; + if (t.isInteger()) + { + // Must cast to Real to ensure correct type is passed to parametric type + // constructors. We do this cast using division with 1. This has the + // advantage wrt using TO_REAL since (constant) division is always included + // in the theory. + res = Term(this, + d_nodeMgr->mkNode(extToIntKind(DIVISION), + *res.d_node, + d_nodeMgr->mkConst(CVC4::Rational(1)))); + } + Assert(res.getSort() == sort); + return res; +} + +bool Solver::isValidInteger(const std::string& s) const +{ + if (s.length() == 0) + { + // string should not be empty + return false; + } + + size_t index = 0; + if (s[index] == '-') + { + if (s.length() == 1) + { + // negative integers should contain at least one digit + return false; + } + index = 1; + } + + if (s[index] == '0' && s.length() > (index + 1)) + { + // From SMT-Lib 2.6: A is the digit 0 or a non-empty sequence of + // digits not starting with 0. So integers like 001, 000 are not allowed + return false; + } + + // all remaining characters should be decimal digits + for (; index < s.length(); ++index) + { + if (!std::isdigit(s[index])) + { + return false; + } + } + + return true; +} + /* Helpers for mkTerm checks. */ /* .......................................................................... */ @@ -3890,44 +4012,6 @@ Term Solver::mkPi() const CVC4_API_SOLVER_TRY_CATCH_END; } -bool Solver::isValidInteger(const std::string& s) const -{ - if (s.length() == 0) - { - // string should not be empty - return false; - } - - size_t index = 0; - if (s[index] == '-') - { - if (s.length() == 1) - { - // negative integers should contain at least one digit - return false; - } - index = 1; - } - - if (s[index] == '0' && s.length() > (index + 1)) - { - // From SMT-Lib 2.6: A is the digit 0 or a non-empty sequence of - // digits not starting with 0. So integers like 001, 000 are not allowed - return false; - } - - // all remaining characters should be decimal digits - for (; index < s.length(); ++index) - { - if (!std::isdigit(s[index])) - { - return false; - } - } - - return true; -} - Term Solver::mkInteger(const std::string& s) const { CVC4_API_SOLVER_TRY_CATCH_BEGIN; @@ -5645,36 +5729,6 @@ void Solver::setOption(const std::string& option, CVC4_API_SOLVER_TRY_CATCH_END; } -Term Solver::ensureTermSort(const Term& term, const Sort& sort) const -{ - CVC4_API_CHECK(term.getSort() == sort - || (term.getSort().isInteger() && sort.isReal())) - << "Expected conversion from Int to Real"; - - Sort t = term.getSort(); - if (term.getSort() == sort) - { - return term; - } - - // Integers are reals, too - Assert(t.isReal()); - Term res = term; - if (t.isInteger()) - { - // Must cast to Real to ensure correct type is passed to parametric type - // constructors. We do this cast using division with 1. This has the - // advantage wrt using TO_REAL since (constant) division is always included - // in the theory. - res = Term(this, - d_nodeMgr->mkNode(extToIntKind(DIVISION), - *res.d_node, - d_nodeMgr->mkConst(CVC4::Rational(1)))); - } - Assert(res.getSort() == sort); - return res; -} - Term Solver::mkSygusVar(Sort sort, const std::string& symbol) const { CVC4_API_SOLVER_TRY_CATCH_BEGIN; @@ -5764,58 +5818,6 @@ Term Solver::synthInv(const std::string& symbol, symbol, boundVars, Sort(this, getNodeManager()->booleanType()), true, &g); } -Term Solver::synthFunHelper(const std::string& symbol, - const std::vector& boundVars, - const Sort& sort, - bool isInv, - Grammar* g) const -{ - CVC4_API_SOLVER_TRY_CATCH_BEGIN; - CVC4_API_ARG_CHECK_NOT_NULL(sort); - - std::vector varTypes; - for (size_t i = 0, n = boundVars.size(); i < n; ++i) - { - CVC4_API_ARG_AT_INDEX_CHECK_EXPECTED( - this == boundVars[i].d_solver, "bound variable", boundVars[i], i) - << "bound variable associated to this solver object"; - CVC4_API_ARG_AT_INDEX_CHECK_EXPECTED( - !boundVars[i].isNull(), "bound variable", boundVars[i], i) - << "a non-null term"; - CVC4_API_ARG_AT_INDEX_CHECK_EXPECTED( - boundVars[i].d_node->getKind() == CVC4::Kind::BOUND_VARIABLE, - "bound variable", - boundVars[i], - i) - << "a bound variable"; - varTypes.push_back(boundVars[i].d_node->getType()); - } - CVC4_API_SOLVER_CHECK_SORT(sort); - - if (g != nullptr) - { - CVC4_API_CHECK(g->d_ntSyms[0].d_node->getType() == *sort.d_type) - << "Invalid Start symbol for Grammar g, Expected Start's sort to be " - << *sort.d_type << " but found " << g->d_ntSyms[0].d_node->getType(); - } - - TypeNode funType = varTypes.empty() ? *sort.d_type - : getNodeManager()->mkFunctionType( - varTypes, *sort.d_type); - - Node fun = getNodeManager()->mkBoundVar(symbol, funType); - (void)fun.getType(true); /* kick off type checking */ - - std::vector bvns = Term::termVectorToNodes(boundVars); - - d_smtEngine->declareSynthFun( - fun, g == nullptr ? funType : *g->resolve().d_type, isInv, bvns); - - return Term(this, fun); - - CVC4_API_SOLVER_TRY_CATCH_END; -} - void Solver::addSygusConstraint(Term term) const { CVC4_API_SOLVER_TRY_CATCH_BEGIN; @@ -5953,12 +5955,6 @@ void Solver::printSynthSolution(std::ostream& out) const CVC4_API_SOLVER_TRY_CATCH_END; } -/** - * !!! This is only temporarily available until the parser is fully migrated to - * the new API. !!! - */ -NodeManager* Solver::getNodeManager(void) const { return d_nodeMgr.get(); } - /** * !!! This is only temporarily available until the parser is fully migrated to * the new API. !!! diff --git a/src/api/cvc4cpp.h b/src/api/cvc4cpp.h index 382ffff95..1d6367b31 100644 --- a/src/api/cvc4cpp.h +++ b/src/api/cvc4cpp.h @@ -3549,6 +3549,7 @@ class CVC4_PUBLIC Solver private: /** @return the node manager of this solver */ NodeManager* getNodeManager(void) const; + /** Helper to check for API misuse in mkOp functions. */ void checkMkTerm(Kind kind, uint32_t nchildren) const; /** Helper for mk-functions that call d_nodeMgr->mkConst(). */ @@ -3567,8 +3568,6 @@ class CVC4_PUBLIC Solver uint32_t base) const; /** Helper for mkBitVector functions that take an integer as argument. */ Term mkBVFromIntHelper(uint32_t size, uint64_t val) const; - /** Helper for setLogic. */ - void setLogicHelper(const std::string& logic) const; /** Helper for mkTerm functions that create Term from a Kind */ Term mkTermFromKind(Kind kind) const; /** Helper for mkChar functions that take a string as argument. */ @@ -3628,7 +3627,7 @@ class CVC4_PUBLIC Solver bool isInv = false, Grammar* g = nullptr) const; - /** check whether string s is a valid decimal integer */ + /** Check whether string s is a valid decimal integer. */ bool isValidInteger(const std::string& s) const; /** The node manager of this solver. */