On Mon, Mar 25, 2013 at 8:05 AM, Jim foo.bar <jimpil1...@gmail.com> wrote:
>
> Since Clojure prefers longs to ints and since I'm not using any type hints,
> I don't understand why I get an integer overflow...

In the traceback I get for this:

(take 94 (lazy-seq (cons 0 (lazy-seq (cons 1 (map + fibs (rest fibs)))))))
ArithmeticException integer overflow
clojure.lang.Numbers.throwIntOverflow (Numbers.java:1388)

the error occurs in     clojure.lang.Numbers$LongOps.add (Numbers.java:430)

So the fact that it's called an *integer* overflow is deceptive.

The 94th fibonacci number is greater than Long/MAX_VALUE, so it
overflows. It is using longs.

-- 
Ben Wolfson
"Human kind has used its intelligence to vary the flavour of drinks,
which may be sweet, aromatic, fermented or spirit-based. ... Family
and social life also offer numerous other occasions to consume drinks
for pleasure." [Larousse, "Drink" entry]

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to