summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/term_registry.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-03-01 21:37:03 -0600
committerGitHub <noreply@github.com>2021-03-02 03:37:03 +0000
commit4132e91fdb2f8912a89a101e96c86bf5076b327a (patch)
tree9d773b3a36aa68bda3d7b7839d9d8cd72a4061ef /src/theory/quantifiers/term_registry.h
parentb5073e16ea49ce9214fcc5318ce080724719c809 (diff)
Introduce quantifiers term registry (#5983)
This groups utilities related to ground terms into TermRegistry which will be passed to quantifier modules.
Diffstat (limited to 'src/theory/quantifiers/term_registry.h')
-rw-r--r--src/theory/quantifiers/term_registry.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/src/theory/quantifiers/term_registry.h b/src/theory/quantifiers/term_registry.h
new file mode 100644
index 000000000..83c89f5e7
--- /dev/null
+++ b/src/theory/quantifiers/term_registry.h
@@ -0,0 +1,80 @@
+/********************* */
+/*! \file term_registry.h
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Andrew Reynolds
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2020 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 term registry class
+ **/
+
+#include "cvc4_private.h"
+
+#ifndef CVC4__THEORY__QUANTIFIERS__TERM_REGISTRY_H
+#define CVC4__THEORY__QUANTIFIERS__TERM_REGISTRY_H
+
+#include <map>
+#include <unordered_set>
+
+#include "context/cdhashset.h"
+#include "theory/quantifiers/sygus/term_database_sygus.h"
+#include "theory/quantifiers/term_database.h"
+#include "theory/quantifiers/term_enumeration.h"
+
+namespace CVC4 {
+namespace theory {
+namespace quantifiers {
+
+/**
+ * Term Registry, which manages notifying modules within quantifiers about
+ * (ground) terms that exist in the current context.
+ */
+class TermRegistry
+{
+ using NodeSet = context::CDHashSet<Node, NodeHashFunction>;
+
+ public:
+ TermRegistry(QuantifiersState& qs,
+ QuantifiersInferenceManager& qim,
+ QuantifiersRegistry& qr);
+ /** Presolve */
+ void presolve();
+
+ /**
+ * Add term n, which notifies the term database that the ground term n
+ * exists in the current context.
+ *
+ * @param n the term to add
+ * @param withinQuant whether n occurs within a quantified formula body
+ */
+ void addTerm(Node n, bool withinQuant = false);
+
+ /** get term database */
+ TermDb* getTermDatabase() const;
+ /** get term database sygus */
+ TermDbSygus* getTermDatabaseSygus() const;
+ /** get term enumeration utility */
+ TermEnumeration* getTermEnumeration() const;
+
+ private:
+ /** has presolve been called */
+ context::CDO<bool> d_presolve;
+ /** the set of terms we have seen before presolve */
+ NodeSet d_presolveCache;
+ /** term enumeration utility */
+ std::unique_ptr<TermEnumeration> d_termEnum;
+ /** term database */
+ std::unique_ptr<TermDb> d_termDb;
+ /** sygus term database */
+ std::unique_ptr<TermDbSygus> d_sygusTdb;
+};
+
+} // namespace quantifiers
+} // namespace theory
+} // namespace CVC4
+
+#endif /* CVC4__THEORY__QUANTIFIERS__TERM_REGISTRY_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback