3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-05-20 08:59:34 +00:00

More debug info

This commit is contained in:
CEisenhofer 2026-04-08 18:00:52 +02:00
parent 74cf21b852
commit 26ededa891
2 changed files with 45 additions and 10 deletions

View file

@ -1349,6 +1349,11 @@ namespace seq {
return search_result::unsat;
}
if (node->is_currently_conflict()) {
++m_stats.m_num_simplify_conflict;
return search_result::unsat;
}
// Apply Parikh image filter: generate modular length constraints and
// perform a lightweight feasibility pre-check. The filter is guarded
// internally (m_parikh_applied) so it only runs once per node.