summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus/synth_engine.cpp
diff options
context:
space:
mode:
authorGereon Kremer <gkremer@stanford.edu>2021-02-17 14:42:50 +0100
committerGitHub <noreply@github.com>2021-02-17 07:42:50 -0600
commit2d6de44a51fed47a625ae73181efbcc3dac0c751 (patch)
tree50ebd370468514d15b71a1d5f7d8993c24116fc0 /src/theory/quantifiers/sygus/synth_engine.cpp
parenta1a2d9389730ed46ab246865e320108db07c30ff (diff)
Add InferenceId to buffered inference manager (#5911)
This PR collects the InferenceId in the InferenceManagerBuffered class.
Diffstat (limited to 'src/theory/quantifiers/sygus/synth_engine.cpp')
-rw-r--r--src/theory/quantifiers/sygus/synth_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/sygus/synth_engine.cpp b/src/theory/quantifiers/sygus/synth_engine.cpp
index c12f387bc..e4c8c6cec 100644
--- a/src/theory/quantifiers/sygus/synth_engine.cpp
+++ b/src/theory/quantifiers/sygus/synth_engine.cpp
@@ -224,7 +224,7 @@ bool SynthEngine::checkConjecture(SynthConjecture* conj)
bool addedLemma = false;
for (const Node& lem : cclems)
{
- if (d_qim.addPendingLemma(lem))
+ if (d_qim.addPendingLemma(lem, InferenceId::UNKNOWN))
{
++(d_statistics.d_cegqi_lemmas_ce);
addedLemma = true;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback