summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus/sygus_pbe.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-03-06 14:22:43 -0600
committerGitHub <noreply@github.com>2018-03-06 14:22:43 -0600
commite0909efd64c96311c69dec223411ab6b7988d01d (patch)
tree5eff4e624d8714f6343905e8cc3d40710871c0f3 /src/theory/quantifiers/sygus/sygus_pbe.cpp
parent3de3716f7196a5f34963d85c882837c449ecf676 (diff)
Refactor symmetry breaking in datatypes sygus (#1640)
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 36e883848..1c61544e1 100644
--- a/src/theory/quantifiers/sygus/sygus_pbe.cpp
+++ b/src/theory/quantifiers/sygus/sygus_pbe.cpp
@@ -1303,7 +1303,7 @@ void CegConjecturePbe::addEnumeratedValue( Node x, Node v, std::vector< Node >&
if (exp_exc.isNull())
{
// if we did not already explain why this should be excluded, use default
- exp_exc = d_tds->getExplain()->getExplanationForConstantEquality(x, v);
+ exp_exc = d_tds->getExplain()->getExplanationForEquality(x, v);
}
Node exlem =
NodeManager::currentNM()->mkNode(OR, g.negate(), exp_exc.negate());
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback