How would one implement a list of prime numbers in Haskell so that they could be retrieved lazily?
I am new to Haskell, and would like to learn about practical uses of the lazy evaluation functionality.
|
How would one implement a list of prime numbers in Haskell so that they could be retrieved lazily? I am new to Haskell, and would like to learn about practical uses of the lazy evaluation functionality. |
||||
|
Here's a short Haskell function that enumerates primes from Literate Programs:
Apparently, this is not the Sieve of Eratosthenes (thanks, Landei). I think it's still an instructive example that shows you can write very elegant, short code in Haskell and that shows how the choice of the wrong data structure can badly hurt efficiency. |
|||||||||
|
|
I'd suggest to take one of the implementations from this paper: http://www.cs.hmc.edu/~oneill/papers/Sieve-JFP.pdf |
|||||
|
|
There are a number of solutions for lazy generation of prime sequences right in the haskell wiki. The first and simplest is the Postponed Turner sieve: (old revision ... NB)
|
||||
|
|
nubBy (((==0).).rem) [2..]. To try it out in GHCi first bring up theData.Listmodule withPrelude> :m +Data.List. But lazyness plays no role here, except allowing for the unbounded definition.[2..10000]could be used as well and evaluated strictly. – Will Ness Sep 22 '12 at 8:44