From: Andrew Reynolds Date: Sun, 18 Jul 2021 19:29:13 +0000 (-0500) Subject: Add n-ary term utilities (#6896) X-Git-Tag: cvc5-1.0.0~1472 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=17fc4c975cefba7082e5557cb9c9515f16b44096;p=cvc5.git Add n-ary term utilities (#6896) Initial work towards rewrite rule reconstruction --- diff --git a/src/expr/CMakeLists.txt b/src/expr/CMakeLists.txt index ed8a25f17..b4e1aefdc 100644 --- a/src/expr/CMakeLists.txt +++ b/src/expr/CMakeLists.txt @@ -33,6 +33,8 @@ libcvc5_add_sources( kind_map.h match_trie.cpp match_trie.h + nary_term_util.cpp + nary_term_util.h node.cpp node.h node_algorithm.cpp diff --git a/src/expr/nary_term_util.cpp b/src/expr/nary_term_util.cpp new file mode 100644 index 000000000..4071e0d0e --- /dev/null +++ b/src/expr/nary_term_util.cpp @@ -0,0 +1,249 @@ +/****************************************************************************** + * Top contributors (to current version): + * Andrew Reynolds + * + * This file is part of the cvc5 project. + * + * Copyright (c) 2009-2021 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. + * **************************************************************************** + * + * Rewrite database + */ + +#include "expr/nary_term_util.h" + +#include "expr/attribute.h" +#include "theory/bv/theory_bv_utils.h" +#include "theory/strings/word.h" +#include "util/bitvector.h" +#include "util/rational.h" +#include "util/regexp.h" +#include "util/string.h" + +using namespace cvc5::kind; + +namespace cvc5 { +namespace expr { + +struct IsListTag +{ +}; +using IsListAttr = expr::Attribute; + +void markListVar(TNode fv) +{ + Assert(fv.getKind() == BOUND_VARIABLE); + fv.setAttribute(IsListAttr(), true); +} + +bool isListVar(TNode fv) { return fv.getAttribute(IsListAttr()); } + +bool hasListVar(TNode n) +{ + std::unordered_set visited; + std::unordered_set::iterator it; + std::vector visit; + TNode cur; + visit.push_back(n); + do + { + cur = visit.back(); + visit.pop_back(); + it = visited.find(cur); + + if (it == visited.end()) + { + visited.insert(cur); + if (isListVar(cur)) + { + return true; + } + visit.insert(visit.end(), cur.begin(), cur.end()); + } + } while (!visit.empty()); + return false; +} + +bool getListVarContext(TNode n, std::map& context) +{ + std::unordered_set visited; + std::unordered_set::iterator it; + std::map::iterator itc; + std::vector visit; + TNode cur; + visit.push_back(n); + do + { + cur = visit.back(); + visit.pop_back(); + it = visited.find(cur); + if (it == visited.end()) + { + visited.insert(cur); + if (isListVar(cur)) + { + // top-level list variable, undefined + return false; + } + for (const Node& cn : cur) + { + if (isListVar(cn)) + { + itc = context.find(cn); + if (itc == context.end()) + { + context[cn] = cur.getKind(); + } + else if (itc->second != cur.getKind()) + { + return false; + } + continue; + } + visit.push_back(cn); + } + } + } while (!visit.empty()); + return true; +} + +Node getNullTerminator(Kind k, TypeNode tn) +{ + NodeManager* nm = NodeManager::currentNM(); + Node nullTerm; + switch (k) + { + case OR: nullTerm = nm->mkConst(false); break; + case AND: + case SEP_STAR: nullTerm = nm->mkConst(true); break; + case PLUS: nullTerm = nm->mkConst(Rational(0)); break; + case MULT: + case NONLINEAR_MULT: nullTerm = nm->mkConst(Rational(1)); break; + case STRING_CONCAT: + // handles strings and sequences + nullTerm = theory::strings::Word::mkEmptyWord(tn); + break; + case REGEXP_CONCAT: + // the language containing only the empty string + nullTerm = nm->mkNode(STRING_TO_REGEXP, nm->mkConst(String(""))); + break; + case BITVECTOR_AND: + nullTerm = theory::bv::utils::mkOnes(tn.getBitVectorSize()); + break; + case BITVECTOR_OR: + case BITVECTOR_ADD: + case BITVECTOR_XOR: + nullTerm = theory::bv::utils::mkZero(tn.getBitVectorSize()); + break; + case BITVECTOR_MULT: + nullTerm = theory::bv::utils::mkOne(tn.getBitVectorSize()); + break; + default: + // not handled as null-terminated + break; + } + return nullTerm; +} + +Node narySubstitute(Node src, + const std::vector& vars, + const std::vector& subs) +{ + // assumes all variables are list variables + NodeManager* nm = NodeManager::currentNM(); + std::unordered_map visited; + std::unordered_map::iterator it; + std::vector visit; + std::vector::const_iterator itv; + TNode cur; + visit.push_back(src); + do + { + cur = visit.back(); + it = visited.find(cur); + if (it == visited.end()) + { + // if it is a non-list variable, do the replacement + itv = std::find(vars.begin(), vars.end(), cur); + if (itv != vars.end()) + { + size_t d = std::distance(vars.begin(), itv); + if (!isListVar(vars[d])) + { + visited[cur] = subs[d]; + continue; + } + } + visited[cur] = Node::null(); + visit.insert(visit.end(), cur.begin(), cur.end()); + continue; + } + visit.pop_back(); + if (it->second.isNull()) + { + Node ret = cur; + bool childChanged = false; + std::vector children; + for (const Node& cn : cur) + { + // if it is a list variable, insert the corresponding list as children; + itv = std::find(vars.begin(), vars.end(), cn); + if (itv != vars.end()) + { + childChanged = true; + size_t d = std::distance(vars.begin(), itv); + Assert(d < subs.size()); + Node sd = subs[d]; + if (isListVar(vars[d])) + { + Assert(sd.getKind() == SEXPR); + // add its children + children.insert(children.end(), sd.begin(), sd.end()); + } + else + { + children.push_back(sd); + } + continue; + } + it = visited.find(cn); + Assert(it != visited.end()); + Assert(!it->second.isNull()); + childChanged = childChanged || cn != it->second; + children.push_back(it->second); + } + if (childChanged) + { + if (children.size() != cur.getNumChildren()) + { + // n-ary operators cannot be parameterized + Assert(cur.getMetaKind() != metakind::PARAMETERIZED); + ret = children.empty() + ? getNullTerminator(cur.getKind(), cur.getType()) + : (children.size() == 1 + ? children[0] + : nm->mkNode(cur.getKind(), children)); + } + else + { + if (cur.getMetaKind() == metakind::PARAMETERIZED) + { + children.insert(children.begin(), cur.getOperator()); + } + ret = nm->mkNode(cur.getKind(), children); + } + } + visited[cur] = ret; + } + + } while (!visit.empty()); + Assert(visited.find(src) != visited.end()); + Assert(!visited.find(src)->second.isNull()); + return visited[src]; +} + +} // namespace expr +} // namespace cvc5 diff --git a/src/expr/nary_term_util.h b/src/expr/nary_term_util.h new file mode 100644 index 000000000..aae97b2cf --- /dev/null +++ b/src/expr/nary_term_util.h @@ -0,0 +1,59 @@ +/****************************************************************************** + * Top contributors (to current version): + * Andrew Reynolds + * + * This file is part of the cvc5 project. + * + * Copyright (c) 2009-2021 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. + * **************************************************************************** + * + * N-ary term utilities + */ + +#include "cvc5_private.h" + +#ifndef CVC4__EXPR__NARY_TERM_UTIL__H +#define CVC4__EXPR__NARY_TERM_UTIL__H + +#include +#include + +#include "expr/node.h" + +namespace cvc5 { +namespace expr { + +/** Mark variable as list */ +void markListVar(TNode fv); +/** Is list variable */ +bool isListVar(TNode fv); + +/** Contains list variable */ +bool hasListVar(TNode n); + +/** + * Compute list variable context + * Get the parent kind of each list variable in n, or fail if a list + * variable occurs in two contexts. + */ +bool getListVarContext(TNode n, std::map& context); + +/** get the null terminator */ +Node getNullTerminator(Kind k, TypeNode tn); + +/** + * Substitution with list semantics. + * Handles mixtures of list / non-list variables in vars. + * List variables are mapped to SEXPR whose children are the list to substitute. + */ +Node narySubstitute(Node src, + const std::vector& vars, + const std::vector& subs); + +} // namespace expr +} // namespace cvc5 + +#endif /* CVC4__EXPR__NARY_TERM_UTIL__H */