summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus/sygus_pbe.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-05-16 18:22:35 -0500
committerGitHub <noreply@github.com>2018-05-16 18:22:35 -0500
commit13e248f4087347721c731c1f21a6f8b66dc52ed1 (patch)
tree496583cbb77635a9ef90780f6aaeb6a32c6d3bb7 /src/theory/quantifiers/sygus/sygus_pbe.cpp
parente2b8d90e1ea596a960de9ddb75094e7f6d7856e8 (diff)
Improve the separation resolution scheme in cegis unif (#1931)
Diffstat (limited to 'src/theory/quantifiers/sygus/sygus_pbe.cpp')
-rw-r--r--src/theory/quantifiers/sygus/sygus_pbe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/sygus/sygus_pbe.cpp b/src/theory/quantifiers/sygus/sygus_pbe.cpp
index 0afd7a82c..cd011ef44 100644
--- a/src/theory/quantifiers/sygus/sygus_pbe.cpp
+++ b/src/theory/quantifiers/sygus/sygus_pbe.cpp
@@ -441,7 +441,7 @@ bool CegConjecturePbe::constructCandidates(const std::vector<Node>& enums,
Node c = candidates[i];
//build decision tree for candidate
std::vector<Node> sol;
- if (d_sygus_unif[c].constructSolution(sol))
+ if (d_sygus_unif[c].constructSolution(sol, lems))
{
Assert(sol.size() == 1);
candidate_values.push_back(sol[0]);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback