3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

time overflow before stack overflow

This commit is contained in:
Nikolaj Bjorner 2022-06-08 10:00:16 -07:00
parent e468386359
commit 72a6384353

View file

@ -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;