summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-03-17 13:43:39 -0500
committerGitHub <noreply@github.com>2021-03-17 18:43:39 +0000
commit7e9a4a35084c4e9dcb047a4593dcdf256244bf9b (patch)
treea09ebd34408bd3c5ae0e6db2579833bcc452f508 /src/theory/quantifiers_engine.h
parentc21a80e2f9d54596f2b1f993be4dbd271c3651aa (diff)
Move utilities for inferred bounds on quantifers to own class (#6159)
This also moves some methods from TermEnumeration to QuantifiersBoundInference. This is required for breaking several cyclic dependencies within quantifiers.
Diffstat (limited to 'src/theory/quantifiers_engine.h')
-rw-r--r--src/theory/quantifiers_engine.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/theory/quantifiers_engine.h b/src/theory/quantifiers_engine.h
index c7c716105..92b90c375 100644
--- a/src/theory/quantifiers_engine.h
+++ b/src/theory/quantifiers_engine.h
@@ -111,37 +111,6 @@ class QuantifiersEngine {
*/
void finishInit(TheoryEngine* te, DecisionManager* dm);
//---------------------- end private initialization
- public:
- /** does variable v of quantified formula q have a finite bound? */
- bool isFiniteBound(Node q, Node v) const;
- /** get bound var type
- *
- * This returns the type of bound that was inferred for variable v of
- * quantified formula q.
- */
- BoundVarType getBoundVarType(Node q, Node v) const;
- /**
- * Get the indices of bound variables, in the order they should be processed
- * in a RepSetIterator.
- *
- * For details, see BoundedIntegers::getBoundVarIndices.
- */
- void getBoundVarIndices(Node q, std::vector<unsigned>& indices) const;
- /**
- * Get bound elements
- *
- * This gets the (finite) enumeration of the range of variable v of quantified
- * formula q and adds it into the vector elements in the context of the
- * iteration being performed by rsi. It returns true if it could successfully
- * determine this range.
- *
- * For details, see BoundedIntegers::getBoundElements.
- */
- bool getBoundElements(RepSetIterator* rsi,
- bool initial,
- Node q,
- Node v,
- std::vector<Node>& elements) const;
public:
/** presolve */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback