summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/ematching/inst_strategy.cpp
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/ematching/inst_strategy.cpp
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/ematching/inst_strategy.cpp')
-rw-r--r--src/theory/quantifiers/ematching/inst_strategy.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/theory/quantifiers/ematching/inst_strategy.cpp b/src/theory/quantifiers/ematching/inst_strategy.cpp
index 2ca7f7af0..083331948 100644
--- a/src/theory/quantifiers/ematching/inst_strategy.cpp
+++ b/src/theory/quantifiers/ematching/inst_strategy.cpp
@@ -23,8 +23,9 @@ namespace quantifiers {
InstStrategy::InstStrategy(QuantifiersEngine* qe,
QuantifiersState& qs,
QuantifiersInferenceManager& qim,
- QuantifiersRegistry& qr)
- : d_quantEngine(qe), d_qstate(qs), d_qim(qim), d_qreg(qr)
+ QuantifiersRegistry& qr,
+ TermRegistry& tr)
+ : d_quantEngine(qe), d_qstate(qs), d_qim(qim), d_qreg(qr), d_treg(tr)
{
}
InstStrategy::~InstStrategy() {}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback