summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/model_engine.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-01-26 14:23:51 -0600
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-01-26 14:24:02 -0600
commitd0add0eb12cac4e9cbcf09fe60724d280889002d (patch)
tree217528663e877f15832a5cb00005e5a15a69f2ee /src/theory/quantifiers/model_engine.h
parent160572318e251a98a58b3f506c31fb233070d477 (diff)
More optimization of QCF. Fixed InstMatchTrie for caching instantiations. Use non-context dependent cache for instantiations when not incremental. Instantiate from relevant domain when no other instantiations apply. Minor cleanup of relevance for triggers.
Diffstat (limited to 'src/theory/quantifiers/model_engine.h')
-rw-r--r--src/theory/quantifiers/model_engine.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/theory/quantifiers/model_engine.h b/src/theory/quantifiers/model_engine.h
index ba54d7ba4..cf770a7b9 100644
--- a/src/theory/quantifiers/model_engine.h
+++ b/src/theory/quantifiers/model_engine.h
@@ -20,7 +20,6 @@
#include "theory/quantifiers_engine.h"
#include "theory/quantifiers/model_builder.h"
#include "theory/theory_model.h"
-#include "theory/quantifiers/relevant_domain.h"
namespace CVC4 {
namespace theory {
@@ -32,8 +31,6 @@ class ModelEngine : public QuantifiersModule
private:
/** builder class */
QModelBuilder* d_builder;
-private: //analysis of current model:
- RelevantDomain* d_rel_dom;
private:
//options
bool optOneQuantPerRound();
@@ -52,8 +49,6 @@ 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; }
public:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback