3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

exit conditions

This commit is contained in:
Jakob Rath 2023-11-29 13:35:49 +01:00
parent 590e9b0fb1
commit 79d77bc690

View file

@ -1744,9 +1744,18 @@ namespace polysat {
return l_true; // done
SASSERT(result == l_undef);
// TODO: continue with intervals at current level
if (progress >= mod_value) {
// covered the whole domain => conflict
return l_false;
}
if (progress >= to_cover_len) {
// we covered the hole left at larger bit-width
return l_undef;
}
}
NOT_IMPLEMENTED_YET();
UNREACHABLE();
return l_undef;
}