3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

No result if there is no other interval

This commit is contained in:
Jakob Rath 2023-01-05 17:21:25 +01:00
parent a406e01fb8
commit aeb6138c25

View file

@ -755,6 +755,11 @@ namespace polysat {
break;
n = n1;
}
if (e == n) {
SASSERT_EQ(e, e0);
// VERIFY(false);
return false;
}
if (e == e0) {
out_lo = n->interval.lo_val();