Skip to content

Commit

Permalink
Merge pull request #16734 from JuliaLang/jb/tuple_limit
Browse files Browse the repository at this point in the history
reduce MAX_TUPLETYPE_LEN
  • Loading branch information
JeffBezanson committed Jun 3, 2016
2 parents 452bbb3 + b6f997f commit 3f59431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/inference.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3f59431

Please sign in to comment.