summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/model_engine.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2013-07-09 15:43:28 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2013-07-09 15:43:39 -0500
commita15f4a0e27ab42fb49f1d0cc9197e286862b8426 (patch)
tree6293969f041e9ed04820a4fac6903313f32a06f6 /src/theory/quantifiers/model_engine.h
parent446cba594a8b26c03aabb2385b18c2ccad637f2f (diff)
add relevant domain computation
Diffstat (limited to 'src/theory/quantifiers/model_engine.h')
-rw-r--r--src/theory/quantifiers/model_engine.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/theory/quantifiers/model_engine.h b/src/theory/quantifiers/model_engine.h
index 20c677e9c..686a2cc13 100644
--- a/src/theory/quantifiers/model_engine.h
+++ b/src/theory/quantifiers/model_engine.h
@@ -21,6 +21,7 @@
#include "theory/quantifiers/model_builder.h"
#include "theory/model.h"
#include "theory/quantifiers/full_model_check.h"
+#include "theory/quantifiers/relevant_domain.h"
namespace CVC4 {
namespace theory {
@@ -33,6 +34,7 @@ private:
/** builder class */
QModelBuilder* d_builder;
private: //analysis of current model:
+ RelevantDomain* d_rel_dom;
private:
//options
bool optOneQuantPerRound();
@@ -51,8 +53,10 @@ private:
public:
ModelEngine( context::Context* c, QuantifiersEngine* qe );
~ModelEngine(){}
+ //get relevant domain
+ RelevantDomain * getRelevantDomain() { return d_rel_dom; }
//get the builder
- QModelBuilder* getModelBuilder() { return d_builder; }
+ QModelBuilder * getModelBuilder() { return d_builder; }
public:
void check( Theory::Effort e );
void registerQuantifier( Node f );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback