Skip to content

Commit

Permalink
Bump tuple inference length cutoff from 16 to 32
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Ferris committed Jun 12, 2018
1 parent 83ce7ba commit 92a375f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/compiler/params.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ struct Params
inline_nonleaf_penalty::Int = 1000,
inline_tupleret_bonus::Int = 400,
max_methods::Int = 4,
tupletype_len::Int = 15,
tupletype_len::Int = 31,
tupletype_depth::Int = 3,
tuple_splat::Int = 16,
tuple_splat::Int = 32,
union_splitting::Int = 4,
apply_union_enum::Int = 8)
return new(Vector{InferenceResult}(),
Expand Down

0 comments on commit 92a375f

Please sign in to comment.