feat(library/pp_options): reduce default limits in the pretty printer
The goal is to avoid problems like the one described in issue #428
This commit is contained in:
parent
2b1d67f717
commit
425aba9aa9
1 changed files with 2 additions and 2 deletions
|
@ -8,11 +8,11 @@ Author: Leonardo de Moura
|
|||
#include "library/pp_options.h"
|
||||
|
||||
#ifndef LEAN_DEFAULT_PP_MAX_DEPTH
|
||||
#define LEAN_DEFAULT_PP_MAX_DEPTH 1000000
|
||||
#define LEAN_DEFAULT_PP_MAX_DEPTH 100
|
||||
#endif
|
||||
|
||||
#ifndef LEAN_DEFAULT_PP_MAX_STEPS
|
||||
#define LEAN_DEFAULT_PP_MAX_STEPS 10000000
|
||||
#define LEAN_DEFAULT_PP_MAX_STEPS 500
|
||||
#endif
|
||||
|
||||
#ifndef LEAN_DEFAULT_PP_NOTATION
|
||||
|
|
Loading…
Reference in a new issue