summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/inst_strategy_enumerative.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2017-10-28 16:53:55 -0500
committerGitHub <noreply@github.com>2017-10-28 16:53:55 -0500
commitd33fc58a4fccfe6bc9059e0dd47afea2ed69d1ad (patch)
treedc7b2db84ea3c8b21c941fc7aea78e86f20ffbeb /src/theory/quantifiers/inst_strategy_enumerative.h
parent49912baa48d87e6d8c38f9bc3e1739b8fbe4e8b3 (diff)
(Move only) Move enumerative instantiation strategy to its own file and document (#1290)
* Move, document, and rename enumerative instantiation. * Clang format.
Diffstat (limited to 'src/theory/quantifiers/inst_strategy_enumerative.h')
-rw-r--r--src/theory/quantifiers/inst_strategy_enumerative.h105
1 files changed, 105 insertions, 0 deletions
diff --git a/src/theory/quantifiers/inst_strategy_enumerative.h b/src/theory/quantifiers/inst_strategy_enumerative.h
new file mode 100644
index 000000000..d79917eda
--- /dev/null
+++ b/src/theory/quantifiers/inst_strategy_enumerative.h
@@ -0,0 +1,105 @@
+/********************* */
+/*! \file inst_strategy_enumerative.h
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Andrew Reynolds
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2017 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 Enumerative instantiation
+ **/
+
+#include "cvc4_private.h"
+
+#ifndef __CVC4__INST_STRATEGY_ENUMERATIVE_H
+#define __CVC4__INST_STRATEGY_ENUMERATIVE_H
+
+#include "context/context.h"
+#include "context/context_mm.h"
+#include "theory/quantifiers_engine.h"
+
+namespace CVC4 {
+namespace theory {
+namespace quantifiers {
+
+/** Enumerative instantiation
+ *
+ * This class implements enumerative instantiation described
+ * in Reynolds et al., "Revisiting Enumerative Instantiation".
+ *
+ * It is an instance of QuantifiersModule, whose main
+ * task is to make calls to QuantifiersEngine during
+ * calls to QuantifiersModule::check(...).
+ *
+ * This class adds instantiations based on enumerating
+ * well-typed terms that occur in the current context
+ * based on a heuristically determined ordering on
+ * tuples of terms. This ordering incorporates
+ * reasoning about the relevant domain of quantified
+ * formulas (see theory/quantifiers/relevant_domain.h).
+ * We consider only ground terms that occur in the
+ * context due to Theorem 1 of "Revisiting Enumerative
+ * Instantiation". Notice this theorem holds only for theories
+ * with compactness. For theories such as arithmetic,
+ * this class may introduce "default" terms that are
+ * used in instantiations, say 0 for arithmetic, even
+ * when the term 0 does not occur in the context.
+ *
+ * This strategy is not enabled by default, and
+ * is enabled by the option:
+ * --full-saturate-quant
+ *
+ * It is generally called with lower priority than
+ * other instantiation strategies, although this
+ * option interleaves it with other strategies
+ * during quantifier effort level QEFFORT_STANDARD:
+ * --fs-interleave
+ */
+class InstStrategyEnum : public QuantifiersModule
+{
+ public:
+ InstStrategyEnum(QuantifiersEngine* qe);
+ ~InstStrategyEnum() {}
+ /** Needs check. */
+ bool needsCheck(Theory::Effort e) override;
+ /** Reset round. */
+ void reset_round(Theory::Effort e) override;
+ /** Check.
+ * Adds instantiations for all currently asserted
+ * quantified formulas via calls to process(...)
+ */
+ void check(Theory::Effort e, unsigned quant_e) override;
+ /** Register quantifier. */
+ void registerQuantifier(Node q) override;
+ /** Identify. */
+ std::string identify() const override
+ {
+ return std::string("InstStrategyEnum");
+ }
+
+ private:
+ /** process quantified formula
+ *
+ * q is the quantified formula we are constructing instances for.
+ * fullEffort is whether we are called at full effort.
+ *
+ * If this function returns true, then one instantiation
+ * (determined by an enumeration) was added via a successful
+ * call to QuantifiersEngine::addInstantiation(...).
+ *
+ * If fullEffort is true, then we may introduce a "default"
+ * well-typed term *not* occurring in the current context.
+ * This handles corner cases where there are no well-typed
+ * ground terms in the current context to instantiate with.
+ */
+ bool process(Node q, bool fullEffort);
+}; /* class InstStrategyEnum */
+
+} /* CVC4::theory::quantifiers namespace */
+} /* CVC4::theory namespace */
+} /* CVC4 namespace */
+
+#endif
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback