summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2018-05-10 18:54:01 -0700
committerGitHub <noreply@github.com>2018-05-10 18:54:01 -0700
commitc7c185f119d3e3ad303ee864be4e38754f55f12d (patch)
tree7b24022cf6d63090f9b88e9940416d5a7cd89ad2
parent8c3aeb79f614f090466f80f4d75c23c6cdf4cf3c (diff)
parentf50620d05f8c661a0adf34d8ad2a41782d546396 (diff)
Merge branch 'master' into mult_argsmult_args
-rw-r--r--src/theory/quantifiers/sygus/sygus_unif_strat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/sygus/sygus_unif_strat.cpp b/src/theory/quantifiers/sygus/sygus_unif_strat.cpp
index 32af47c81..855922fc5 100644
--- a/src/theory/quantifiers/sygus/sygus_unif_strat.cpp
+++ b/src/theory/quantifiers/sygus/sygus_unif_strat.cpp
@@ -801,7 +801,7 @@ void SygusUnifStrategy::staticLearnRedundantOps(
if (op.getKind() == kind::BUILTIN)
{
Kind k = NodeManager::operatorToKind(op);
- if (k == NOT || k == OR || k == AND)
+ if (k == NOT || k == OR || k == AND || k == ITE)
{
// can eliminate if their argument types are simple loops to this type
bool type_ok = true;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback