summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/ematching/trigger.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-02-22 16:35:20 -0600
committerGitHub <noreply@github.com>2021-02-22 16:35:20 -0600
commit4479383c2fd8a3b81ab63d66f843b09b5c9d0cd3 (patch)
treef4bf404bac05fd8592a09fda981061311692e8e2 /src/theory/quantifiers/ematching/trigger.cpp
parent71d72df0437607723256bbd7b4f28cd6c89fe40f (diff)
Move quantifiers attributes to quantifiers registry (#5929)
This moves the utility class beneath quantifiers registry.
Diffstat (limited to 'src/theory/quantifiers/ematching/trigger.cpp')
-rw-r--r--src/theory/quantifiers/ematching/trigger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/quantifiers/ematching/trigger.cpp b/src/theory/quantifiers/ematching/trigger.cpp
index 8d9cfd3a3..d8d3aa098 100644
--- a/src/theory/quantifiers/ematching/trigger.cpp
+++ b/src/theory/quantifiers/ematching/trigger.cpp
@@ -51,8 +51,8 @@ Trigger::Trigger(QuantifiersEngine* qe,
}
if (Trace.isOn("trigger"))
{
- quantifiers::QuantAttributes* qa = d_quantEngine->getQuantAttributes();
- Trace("trigger") << "Trigger for " << qa->quantToString(q) << ": "
+ quantifiers::QuantAttributes& qa = d_qreg.getQuantAttributes();
+ Trace("trigger") << "Trigger for " << qa.quantToString(q) << ": "
<< std::endl;
for (const Node& n : d_nodes)
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback