You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
== comparisons for linked lists use recursive implementation. Since julia does, as of now, not support tail call optimization, this will lead to stack overflow errors for long lists. To reproduce try this:
using DataStructures
l = nil(Float64)
n = 100_000
for i in 1:n
l = cons(rand(), l)
end
l2 = copy(l);
# this will crash
l == l2
The text was updated successfully, but these errors were encountered:
==
comparisons for linked lists use recursive implementation. Since julia does, as of now, not support tail call optimization, this will lead to stack overflow errors for long lists. To reproduce try this:The text was updated successfully, but these errors were encountered: