summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-08-26 16:27:57 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-08-26 16:27:57 -0500
commit9ac5255577a07e3bef123908d55003f89dea7619 (patch)
tree81a74251576a2bdcb58a010a8d0eb83c57b71a9d /src/theory/quantifiers_engine.h
parent2e7ec13174e165cccc74159b5c6590d12894a674 (diff)
Basic support for EPR+CBQI. Minor cleanup.
Diffstat (limited to 'src/theory/quantifiers_engine.h')
-rw-r--r--src/theory/quantifiers_engine.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/theory/quantifiers_engine.h b/src/theory/quantifiers_engine.h
index 7b4453330..7f0785340 100644
--- a/src/theory/quantifiers_engine.h
+++ b/src/theory/quantifiers_engine.h
@@ -113,6 +113,9 @@ private:
quantifiers::AlphaEquivalence * d_alpha_equiv;
/** model builder */
quantifiers::QModelBuilder* d_builder;
+ /** utility for effectively propositional logic */
+ QuantEPR * d_qepr;
+private:
/** instantiation engine */
quantifiers::InstantiationEngine* d_inst_engine;
/** model engine */
@@ -228,6 +231,8 @@ public:
QuantRelevance* getQuantifierRelevance() { return d_quant_rel; }
/** get the model builder */
quantifiers::QModelBuilder* getModelBuilder() { return d_builder; }
+ /** get utility for EPR */
+ QuantEPR* getQuantEPR() { return d_qepr; }
public: //modules
/** get instantiation engine */
quantifiers::InstantiationEngine* getInstantiationEngine() { return d_inst_engine; }
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback