3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

bug fixes

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-12-23 14:41:16 -08:00
parent c199344bbf
commit 8198a8ce7b
3 changed files with 8 additions and 4 deletions

View file

@ -196,7 +196,7 @@ ast * ast_translation::process(ast const * _n) {
SASSERT(m_extra_children_stack.empty());
++m_num_process;
if (m_num_process > (1 << 16)) {
if (m_num_process > (1 << 14)) {
reset_cache();
m_num_process = 0;
}