3
0
Fork 0
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:
Nikolaj Bjorner 2021-01-21 22:06:15 -08:00
parent 64ba44d2ac
commit 4e8ba8b160
4 changed files with 63 additions and 63 deletions

View file

@ -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");
}