summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-08-12 07:33:16 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2015-08-12 07:33:16 +0200
commita582fa3ea1de3b6419797bbebdcb415ff4d0c0d0 (patch)
treea81ebb13ad391082ce781c885b9302fe27a30997 /src/theory/quantifiers_engine.h
parent86ad2ca93048844eedcafd2a2dadc43ef85dfb32 (diff)
Improvements to --macros-quant. Enable --clause-split by default. Bug fix for cbqi regarding instantiations with free skolems, extend to boolean quantification. Infrastructure for congruence closure with free variables.
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 c9a3a8027..101aa43cd 100644
--- a/src/theory/quantifiers_engine.h
+++ b/src/theory/quantifiers_engine.h
@@ -94,6 +94,7 @@ namespace quantifiers {
class LtePartialInst;
class AlphaEquivalence;
class FunDefEngine;
+ class QuantEqualityEngine;
}/* CVC4::theory::quantifiers */
namespace inst {
@@ -145,6 +146,8 @@ private:
quantifiers::LtePartialInst * d_lte_part_inst;
/** function definitions engine */
quantifiers::FunDefEngine * d_fun_def_engine;
+ /** quantifiers equality engine */
+ quantifiers::QuantEqualityEngine * d_uee;
public: //effort levels
enum {
QEFFORT_CONFLICT,
@@ -233,6 +236,8 @@ public: //modules
quantifiers::LtePartialInst * getLtePartialInst() { return d_lte_part_inst; }
/** function definition engine */
quantifiers::FunDefEngine * getFunDefEngine() { return d_fun_def_engine; }
+ /** quantifiers equality engine */
+ quantifiers::QuantEqualityEngine * getQuantEqualityEngine() { return d_uee; }
private:
/** owner of quantified formulas */
std::map< Node, QuantifiersModule * > d_owner;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback