mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +00:00
time overflow before stack overflow
This commit is contained in:
parent
e468386359
commit
72a6384353
|
@ -1123,6 +1123,8 @@ bool bit_blaster_tpl<Cfg>::mk_const_case_multiplier(unsigned sz, expr * const *
|
|||
}
|
||||
if (case_size >= circuit_size)
|
||||
return false;
|
||||
if (sz >= 100)
|
||||
return false;
|
||||
|
||||
SASSERT(out_bits.empty());
|
||||
ptr_buffer<expr, 128> na_bits;
|
||||
|
|
Loading…
Reference in a new issue