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:
Leonardo de Moura 2015-02-25 10:53:38 -08:00
parent 2b1d67f717
commit 425aba9aa9

View file

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