summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/theory_quantifiers.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-03-23 15:41:13 -0500
committerGitHub <noreply@github.com>2021-03-23 20:41:13 +0000
commitd5d526730d11d08c65aa17ea53d0dffb0a72e692 (patch)
tree13ce2001785e168ea82cbd0bce0c1750f987a338 /src/theory/quantifiers/theory_quantifiers.h
parent8fc8793f4337663f7250846dd6acae167a7f27ec (diff)
Passing term registry to ematching utilities (#6190)
Model is now nested into term registry. This PR also resolves some complications due to namespaces within quantifiers.
Diffstat (limited to 'src/theory/quantifiers/theory_quantifiers.h')
-rw-r--r--src/theory/quantifiers/theory_quantifiers.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/theory/quantifiers/theory_quantifiers.h b/src/theory/quantifiers/theory_quantifiers.h
index 2371b00ce..91f12c0ed 100644
--- a/src/theory/quantifiers/theory_quantifiers.h
+++ b/src/theory/quantifiers/theory_quantifiers.h
@@ -20,7 +20,6 @@
#define CVC4__THEORY__QUANTIFIERS__THEORY_QUANTIFIERS_H
#include "expr/node.h"
-#include "theory/quantifiers/first_order_model.h"
#include "theory/quantifiers/proof_checker.h"
#include "theory/quantifiers/quantifiers_inference_manager.h"
#include "theory/quantifiers/quantifiers_registry.h"
@@ -89,12 +88,10 @@ class TheoryQuantifiers : public Theory {
QuantifiersState d_qstate;
/** The quantifiers registry */
QuantifiersRegistry d_qreg;
- /** extended model object */
- std::unique_ptr<FirstOrderModel> d_qmodel;
/** The term registry */
TermRegistry d_treg;
/** The quantifiers inference manager */
- std::unique_ptr<QuantifiersInferenceManager> d_qim;
+ QuantifiersInferenceManager d_qim;
/** The quantifiers engine, which lives here */
std::unique_ptr<QuantifiersEngine> d_qengine;
};/* class TheoryQuantifiers */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback