summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus/synth_conjecture.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_conjecture.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_conjecture.cpp')
-rw-r--r--src/theory/quantifiers/sygus/synth_conjecture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/sygus/synth_conjecture.cpp b/src/theory/quantifiers/sygus/synth_conjecture.cpp
index 7bae92184..59edd3070 100644
--- a/src/theory/quantifiers/sygus/synth_conjecture.cpp
+++ b/src/theory/quantifiers/sygus/synth_conjecture.cpp
@@ -723,7 +723,7 @@ bool SynthConjecture::doRefine()
{
Trace("cegqi-lemma") << "Cegqi::Lemma : candidate refinement : " << lem
<< std::endl;
- bool res = d_qim.addPendingLemma(lem);
+ bool res = d_qim.addPendingLemma(lem, InferenceId::UNKNOWN);
if (res)
{
++(d_stats.d_cegqi_lemmas_refine);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback