mirror of
https://github.com/Z3Prover/z3
synced 2025-06-17 19:36:17 +00:00
time overflow before stack overflow
This commit is contained in:
parent
e468386359
commit
72a6384353
1 changed files with 2 additions and 0 deletions
|
@ -1123,6 +1123,8 @@ bool bit_blaster_tpl<Cfg>::mk_const_case_multiplier(unsigned sz, expr * const *
|
||||||
}
|
}
|
||||||
if (case_size >= circuit_size)
|
if (case_size >= circuit_size)
|
||||||
return false;
|
return false;
|
||||||
|
if (sz >= 100)
|
||||||
|
return false;
|
||||||
|
|
||||||
SASSERT(out_bits.empty());
|
SASSERT(out_bits.empty());
|
||||||
ptr_buffer<expr, 128> na_bits;
|
ptr_buffer<expr, 128> na_bits;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue