summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-03-20 15:36:35 -0500
committerGitHub <noreply@github.com>2020-03-20 15:36:35 -0500
commit537bb89c664375aa0fe0143e65d255de34bd611c (patch)
treec2a396320aea77d523dcd7f14364d0cbfe13f58f
parent7f98701cfb481786a96835d7770f8b1aa4f94882 (diff)
Fix sort comparison within assertion in cegis (#4113)
-rw-r--r--src/theory/quantifiers/sygus/cegis.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/sygus/cegis.cpp b/src/theory/quantifiers/sygus/cegis.cpp
index 57fe40517..dfef0bad4 100644
--- a/src/theory/quantifiers/sygus/cegis.cpp
+++ b/src/theory/quantifiers/sygus/cegis.cpp
@@ -599,7 +599,7 @@ bool Cegis::checkRefinementEvalLemmas(const std::vector<Node>& vs,
for (unsigned j = 0, psize = vsProc.size(); j < psize; j++)
{
evalVisited[vsProc[j]] = msProc[j];
- Assert(vsProc[j].getType() == msProc[j].getType());
+ Assert(vsProc[j].getType().isComparableTo(msProc[j].getType()));
}
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback