From b6f997f121aa8ab8d80b4916746ae89aeff159bc Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Thu, 2 Jun 2016 23:13:13 -0400 Subject: [PATCH] reduce MAX_TUPLETYPE_LEN --- base/inference.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/inference.jl b/base/inference.jl index 86b4c586598c7..8fc5c51d7c043 100644 --- a/base/inference.jl +++ b/base/inference.jl @@ -3,7 +3,7 @@ #### parameters limiting potentially-infinite types #### const MAX_TYPEUNION_LEN = 3 const MAX_TYPE_DEPTH = 7 -const MAX_TUPLETYPE_LEN = 42 +const MAX_TUPLETYPE_LEN = 15 const MAX_TUPLE_DEPTH = 4 const MAX_TUPLE_SPLAT = 16