summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus/synth_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-03-26 11:47:22 -0500
committerGitHub <noreply@github.com>2021-03-26 11:47:22 -0500
commit72f70f1573651bcbf5f327c7a3411ece0e607e3f (patch)
treed2e57f33fdbb6a260b0f523aa4cf2b621474e374 /src/theory/quantifiers/sygus/synth_engine.cpp
parentfa6c3db414d27f47e0bee55480df939e78c14eb3 (diff)
Pass term registry to quantifiers modules (#6216)
Diffstat (limited to 'src/theory/quantifiers/sygus/synth_engine.cpp')
-rw-r--r--src/theory/quantifiers/sygus/synth_engine.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/theory/quantifiers/sygus/synth_engine.cpp b/src/theory/quantifiers/sygus/synth_engine.cpp
index 98475911c..d77a42a14 100644
--- a/src/theory/quantifiers/sygus/synth_engine.cpp
+++ b/src/theory/quantifiers/sygus/synth_engine.cpp
@@ -20,7 +20,6 @@
#include "theory/quantifiers/quantifiers_attributes.h"
#include "theory/quantifiers/sygus/term_database_sygus.h"
#include "theory/quantifiers/term_util.h"
-#include "theory/quantifiers_engine.h"
using namespace CVC4::kind;
using namespace std;
@@ -32,9 +31,10 @@ namespace quantifiers {
SynthEngine::SynthEngine(QuantifiersEngine* qe,
QuantifiersState& qs,
QuantifiersInferenceManager& qim,
- QuantifiersRegistry& qr)
- : QuantifiersModule(qs, qim, qr, qe),
- d_tds(qe->getTermDatabaseSygus()),
+ QuantifiersRegistry& qr,
+ TermRegistry& tr)
+ : QuantifiersModule(qs, qim, qr, tr, qe),
+ d_tds(tr.getTermDatabaseSygus()),
d_conj(nullptr),
d_sqp(qe)
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback