summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-10-10 16:56:27 -0500
committerGitHub <noreply@github.com>2018-10-10 16:56:27 -0500
commitaa84926fb81001cc86661dead2ac5b856dd45ba3 (patch)
treebe0e406a73a2562b635ca375c1052edf2e5735c4 /src/theory/quantifiers/sygus
parent7b6188b394ee4ce2ad41be59d4d447ed90822721 (diff)
Fix cegis so that evaluation unfolding is not interleaved. (#2614)
Diffstat (limited to 'src/theory/quantifiers/sygus')
-rw-r--r--src/theory/quantifiers/sygus/cegis.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/theory/quantifiers/sygus/cegis.cpp b/src/theory/quantifiers/sygus/cegis.cpp
index 2e7f0cc02..06f041d93 100644
--- a/src/theory/quantifiers/sygus/cegis.cpp
+++ b/src/theory/quantifiers/sygus/cegis.cpp
@@ -198,6 +198,7 @@ bool Cegis::addEvalLemmas(const std::vector<Node>& candidates,
Node lem = nm->mkNode(
OR, eager_exps[i].negate(), eager_terms[i].eqNode(eager_vals[i]));
lems.push_back(lem);
+ addedEvalLemmas = true;
Trace("cegqi-lemma") << "Cegqi::Lemma : evaluation unfold : " << lem
<< std::endl;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback