Haskell script running out of space - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:50:56Zhttp://stackoverflow.com/feeds/question/736495http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/736495/haskell-script-running-out-of-space2Haskell script running out of spaceGabe Moothart2009-04-10T02:01:31Z2009-04-11T05:19:33Z
<p>I'm using project Euler to teach myself Haskell, and I'm having some trouble reasoning about how my code is being executed by haskell. The second problem has me computing the sum of all even Fibonacci numbers up to 4 million. My script looks like this:</p>
<pre><code>fibs :: [Integer]
fibs = 1 : 2 : [ a+b | (a,b) <- zip fibs (tail fibs)]
evens :: Integer -> Integer -> Integer
evens x sum | (even x) = x + sum
| otherwise = sum
main = do
print (foldr evens 0 (take 4000000 fibs))
</code></pre>
<p>Hugs gives the error "Garbage collection fails to reclaim sufficient space", which I assume means that the list entries are not released as they are consumed by <code>foldr</code>.</p>
<p>What do I need to do to fix this? I tried writing a tail-recursive (I think) version that used accumulators, but couldn't get that to work either.</p>
http://stackoverflow.com/questions/736495/haskell-script-running-out-of-space/736507#7365073Answer by Norman Ramsey for Haskell script running out of spaceNorman Ramsey2009-04-10T02:14:42Z2009-04-10T02:21:47Z<p>You are evaluating four million elements of <code>fibs</code>. Those numbers grow exponentially. I don't know how many bytes are required to represent the millionth Fibonacci number; just the one-thousandth Fibonacci number has 211 decimal digits, so that's going to take 22 32-bit words just to hold the digits, never mind whatever overhead <code>gmp</code> imposes. And these grow exponentially.</p>
<p>Exercise: calculuate the amount of memory needed to hold four million Fibonacci numbers.</p>
http://stackoverflow.com/questions/736495/haskell-script-running-out-of-space/736512#7365125Answer by MarkusQ for Haskell script running out of spaceMarkusQ2009-04-10T02:17:22Z2009-04-10T15:35:25Z<p>A number of observations / hints:</p>
<ul>
<li>the <code>x + sum</code>s from even aren't getting evaluated until the very end</li>
<li>You're taking the first 4,000,000 fibs, not the fibs up to 4,000,000</li>
<li>There is an easier way to do this</li>
</ul>
<p><strong>Edit in response to comment</strong></p>
<p>I'm not going to tell you what the easier way is, since that's the fun of Project Euler problems. But I will ask you a bunch of questions:</p>
<ul>
<li>How many even fibs can you have in a row?</li>
<li>How long can you go without an even fib?</li>
<li>If you sum up all the even fibs and all the odd fibs (do this by hand), what do you notice about the sums?</li>
</ul>
http://stackoverflow.com/questions/736495/haskell-script-running-out-of-space/736649#7366498Answer by dons for Haskell script running out of spacedons2009-04-10T03:44:59Z2009-04-10T04:21:33Z<p>Firstly, you shouldn't use hugs. It is a toy for teaching purposes only.</p>
<p>GHC, however, is a fast, multicore-ready optimizing compiler for Haskell. <a href="http://haskell.org/ghc" rel="nofollow">Get it here</a>. In particular, it does strictness analysis, and compiles to native code.</p>
<p>The main thing that stands out about your code is the use of foldr on a very large list. Probably you want a tail recursive loop. Like so:</p>
<pre><code>import Data.List
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
evens x sum | even x = x + sum
| otherwise = sum
-- sum of even fibs in first 4M fibs
main = print (foldl' evens 0 (take 4000000 fibs))
</code></pre>
<p>Besides all this, the first 4M even fibs will use a fair amount of space, so it'll take a while.</p>
<p>Here's <a href="http://galois.com/~dons/tmp/fibs-400k.txt" rel="nofollow">the sum of the first 400k even fibs</a>, to save you some time (21s). :-)</p>
http://stackoverflow.com/questions/736495/haskell-script-running-out-of-space/736672#7366724Answer by newacct for Haskell script running out of spacenewacct2009-04-10T04:11:18Z2009-04-10T04:11:18Z<p>You understood the problem wrong. The <a href="http://projecteuler.net/index.php?section=problems&id=2" rel="nofollow">actual problem</a> wants you to sum all the even Fibonacci numbers such that the Fibonacci number itself doesn't exceed 4 million (which happens to be only the first 33 Fibonacci numbers).</p>
http://stackoverflow.com/questions/736495/haskell-script-running-out-of-space/739560#7395601Answer by ja for Haskell script running out of spaceja2009-04-11T05:19:33Z2009-04-11T05:19:33Z<p>have a look at the Prelude functions takeWhile, filter, even, and sum</p>
<p>takeWhile (<40) [0..]<br />
filter even $ takeWhile (<40) [0..] </p>
<p>put 'em together: </p>
<p>ans = sum $ filter even $ takeWhile (< 4* 10^6) fibs</p>