summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.h
diff options
context:
space:
mode:
authorPaul Meng <baolmeng@gmail.com>2016-10-11 13:54:20 -0500
committerPaul Meng <baolmeng@gmail.com>2016-10-11 13:54:20 -0500
commit3395c5c13cd61d98aec0d9806e3b9bc3d707968a (patch)
tree0eadad9799862ec77d29f7abe03a46c300d80de8 /src/theory/theory_engine.h
parent773e7d27d606b71ff0f78e84efe1deef2653f016 (diff)
parent5f415d4585134612bc24e9a823289fee35541a01 (diff)
Merge branch 'origin' of https://github.com/CVC4/CVC4.git
Conflicts: src/options/quantifiers_options
Diffstat (limited to 'src/theory/theory_engine.h')
-rw-r--r--src/theory/theory_engine.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/theory/theory_engine.h b/src/theory/theory_engine.h
index 9316066a5..4366f8d3a 100644
--- a/src/theory/theory_engine.h
+++ b/src/theory/theory_engine.h
@@ -35,7 +35,6 @@
#include "theory/atom_requests.h"
#include "theory/bv/bv_to_bool.h"
#include "theory/interrupted.h"
-#include "theory/quantifiers/quant_conflict_find.h"
#include "theory/rewriter.h"
#include "theory/shared_terms_database.h"
#include "theory/sort_inference.h"
@@ -605,6 +604,12 @@ public:
*/
Node preprocess(TNode node);
+
+ /**
+ * Notify (preprocessed) assertions
+ */
+ void notifyPreprocessedAssertions( std::vector< Node >& assertions );
+
/**
* Return whether or not we are incomplete (in the current context).
*/
@@ -784,6 +789,12 @@ public:
* Get instantiations
*/
void getInstantiations( std::map< Node, std::vector< Node > >& insts );
+
+ /**
+ * Get instantiated conjunction, returns q[t1] ^ ... ^ q[tn] where t1...tn are current set of instantiations for q.
+ * Can be used for quantifier elimination when satisfiable and q[t1] ^ ... ^ q[tn] |= q
+ */
+ Node getInstantiatedConjunction( Node q );
/**
* Forwards an entailment check according to the given theoryOfMode.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback