3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-24 05:19:13 +00:00

Assertions

This commit is contained in:
CEisenhofer 2026-03-20 15:11:51 +01:00
parent 88ef8c7cda
commit 2bd5283f6a
2 changed files with 6 additions and 1 deletions

View file

@ -2329,6 +2329,7 @@ namespace seq {
}
// depth limit hit double the bound and retry
m_depth_bound *= 2;
SASSERT(m_depth_bound < INT_MAX);
}
++m_stats.m_num_unknown;
return search_result::unknown;
@ -2427,7 +2428,7 @@ namespace seq {
if (!node->is_extended()) {
bool ext = generate_extensions(node);
if (!ext) {
node->set_extended(true);
UNREACHABLE();
// No extensions could be generated. If the node still has
// unsatisfied constraints with opaque (s_other) terms that
// we cannot decompose, report unknown rather than unsat