summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus/cegis_unif.cpp
diff options
context:
space:
mode:
authorHaniel Barbosa <hanielbbarbosa@gmail.com>2018-09-13 15:06:50 -0500
committerGitHub <noreply@github.com>2018-09-13 15:06:50 -0500
commit6ac8972a11047d0d858055ea89aa2acf15e2cfa7 (patch)
tree66d8e8f744637c0a6a9fbe74f765d4b17a69eaac /src/theory/quantifiers/sygus/cegis_unif.cpp
parent466b45c52d83cf19caef2c1eee6e7c5fd2ecb1bc (diff)
Uses information gain heuristic for building better solutions from DTs (#2451)
Diffstat (limited to 'src/theory/quantifiers/sygus/cegis_unif.cpp')
-rw-r--r--src/theory/quantifiers/sygus/cegis_unif.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/theory/quantifiers/sygus/cegis_unif.cpp b/src/theory/quantifiers/sygus/cegis_unif.cpp
index 1245cba1f..19b0ad717 100644
--- a/src/theory/quantifiers/sygus/cegis_unif.cpp
+++ b/src/theory/quantifiers/sygus/cegis_unif.cpp
@@ -435,7 +435,8 @@ void CegisUnifEnumManager::setUpEnumerator(Node e,
si.d_enums[index].push_back(e);
Trace("cegis-unif-enum") << "* Registering new enumerator " << e
<< " to strategy point " << si.d_pt << "\n";
- d_tds->registerEnumerator(e, si.d_pt, d_parent);
+ d_tds->registerEnumerator(
+ e, si.d_pt, d_parent, options::sygusUnifCondIndependent() && index == 1);
}
void CegisUnifEnumManager::registerEvalPts(const std::vector<Node>& eis, Node e)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback