summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/fmf/model_engine.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-03-31 12:35:52 -0500
committerGitHub <noreply@github.com>2021-03-31 17:35:52 +0000
commit613ecb885e64a2cb37ba82f1783f85afe8afe66c (patch)
treeb6ca4052c8361ccae1b183520fe010864960453e /src/theory/quantifiers/fmf/model_engine.h
parentc28829ce6fc9861b8f0e902952c9983bba10820a (diff)
Eliminate dependencies on quantifiers engine in internal quantifiers code (#6240)
This completes eliminating dependencies on quantifiers engine from internal quantifiers code. It eliminates quantifiers_engine.h as an include from src/theory/quantifiers/ apart from theory_quantifiers.cpp where it is owned. Followup PRs will further eliminate circular dependencies that arose will refactoring quantifiers engine.
Diffstat (limited to 'src/theory/quantifiers/fmf/model_engine.h')
-rw-r--r--src/theory/quantifiers/fmf/model_engine.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/theory/quantifiers/fmf/model_engine.h b/src/theory/quantifiers/fmf/model_engine.h
index 0188de06f..caafe3840 100644
--- a/src/theory/quantifiers/fmf/model_engine.h
+++ b/src/theory/quantifiers/fmf/model_engine.h
@@ -43,11 +43,11 @@ private:
int d_triedLemmas;
int d_totalLemmas;
public:
- ModelEngine(QuantifiersEngine* qe,
- QuantifiersState& qs,
+ ModelEngine(QuantifiersState& qs,
QuantifiersInferenceManager& qim,
QuantifiersRegistry& qr,
- TermRegistry& tr);
+ TermRegistry& tr,
+ QModelBuilder* builder);
virtual ~ModelEngine();
public:
@@ -63,6 +63,10 @@ public:
void debugPrint(const char* c);
/** Identify this module */
std::string identify() const override { return "ModelEngine"; }
+
+private:
+ /** Pointer to the model builder of quantifiers engine */
+ QModelBuilder* d_builder;
};/* class ModelEngine */
}/* CVC4::theory::quantifiers namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback