mirror of
https://github.com/Z3Prover/z3
synced 2025-08-22 11:07:51 +00:00
regression fix, fix unicode mode
This commit is contained in:
parent
64ba44d2ac
commit
4e8ba8b160
4 changed files with 63 additions and 63 deletions
|
@ -3192,7 +3192,7 @@ bool theory_seq::should_research(expr_ref_vector & unsat_core) {
|
|||
IF_VERBOSE(1, verbose_stream() << "(smt.seq :increase-depth " << m_max_unfolding_depth << ")\n");
|
||||
return true;
|
||||
}
|
||||
else if (k_min >= UINT_MAX/4) {
|
||||
else if (k_min != UINT_MAX && k_min >= UINT_MAX/4) {
|
||||
throw default_exception("reached max unfolding");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue