Is this expected hash
ing behaviour?
julia> a = [rand(0:1, 200) for i in 1:10000]
julia> b = deepcopy(a)
julia> a[1][1] = 2
julia> hash(a) == hash(b)
true
It seems to be different with smaller vectors:
julia> a = [rand(0:1, 200) for i in 1:10]
julia> b = deepcopy(a)
julia> a[1][1] = 2
julia> hash(a) == hash(b)
false
Note that the original poster on Slack cannot see your response here on Discourse. Consider transcribing the appropriate answer back to Slack, or pinging the poster here on Discourse so they can follow this thread.
(Original message ) (More Info)