Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am interested in an implementation of the sieve of eratosthenes in purely functional F#. I am interested in an implementation of the actual sieve, not the naive functional implementation that isn't really the sieve, so not something like this:

let rec PseudoSieve list =
    match list with
    | hd::tl -> hd :: (PseudoSieve <| List.filter (fun x -> x % hd <> 0) tl)
    | [] -> []

The second link above briefly describes an algorithm that would require the use of a multimap, which isn't available in F# as far as I know. The Haskell implementation given uses a map that supports an insertWith method, which I haven't seen available in the F# functional map.

Does anyone know a way to translate the given Haskell map code to F#, or perhaps knows of alternative implementation methods or sieving algorithms that are as efficient and better suited for a functional implementation or F#?

share|improve this question
It is quite possible to use arrays in F# in a pure way. Do it that (traditional) way and it'll be as fast as though you'd written it in C#. – Rafe Jan 8 '11 at 4:13
@Rafe - the traditional way requires modifying the array, which wouldn't be pure anymore, would it? – IVlad Jan 8 '11 at 11:51
Ah, but you can make it look pure! Say you want to update array a to produce array b and ensure that this is done in a pure fashion, what you do is this (in pseudocode): "a[i] := x; b = a; // Never use a again!" You can give this a pure semantics, even though you have an impure implementation. In Mercury, for example, the array update function does this and the Mercury mode system guarantees that your program will never be allowed to use a again. – Rafe Jan 10 '11 at 2:51
@Rafe - that is not pure in any sense of the word, it's just a silly trick that actually means exactly nothing. You are still using the memory location of a because that's what b will point to. You cannot stop using a completely unless you copy it element-by-element in a newly allocated array, which would be terribly inefficient. – IVlad Jan 10 '11 at 7:16
Sorry, but you're wrong: this is exactly how state is managed in a pure fashion in Mercury and Haskell (Mercury uses uniqueness and Haskell uses monads, but what's happening under the covers is exactly the same). Indeed, it's how IO is managed in a pure fashion, too. There is nothing wrong with having an impure implementation with a pure interface provided your promise of purity is warranted. – Rafe Jan 10 '11 at 23:58
show 5 more comments

8 Answers

up vote 8 down vote accepted

Reading that article I came up with an idea that doesn't require a multimap. It handles colliding map keys by moving the colliding key forward by its prime value again and again until it reaches a key that isn't in the map. Below primes is a map with keys of the next iterator value and values that are primes.

let primes = 
    let rec nextPrime n p primes =
        if primes |> Map.containsKey n then
            nextPrime (n + p) p primes
        else
            primes.Add(n, p)

    let rec prime n primes =
        seq {
            if primes |> Map.containsKey n then
                let p = primes.Item n
                yield! prime (n + 1) (nextPrime (n + p) p (primes.Remove n))
            else
                yield n
                yield! prime (n + 1) (primes.Add(n * n, n))
        }

    prime 2 Map.empty

I finally figured out the final priority queue based algorithm from that paper. I present it below. I placed the generic priority queue functions at the top. I use a tuple to represent the lazy list iterators. This algorithm reaches integer overflow faster than the above algorithm which is a good thing since it means we are skipping more test cases.

let primes = 
    // the priority queue functions
    let insert = SkewBinomialHeap.insert
    let findMin = SkewBinomialHeap.findMin
    let insertDeleteMin value = SkewBinomialHeap.deleteMin >> SkewBinomialHeap.insert value
    let empty = []


    let wheelData = [|2L;4L;2L;4L;6L;2L;6L;4L;2L;4L;6L;6L;2L;6L;4L;2L;6L;4L;6L;8L;4L;2L;4L;2L;4L;8L;6L;4L;6L;2L;4L;6L;2L;6L;6L;4L;2L;4L;6L;2L;6L;4L;2L;4L;2L;10L;2L;10L|]

    // increments iterator
    let wheel (composite, n, multiple) =
        composite + wheelData.[n % 48] * multiple, n + 1, multiple

    let insertPrime (prime, n, multiple) table =
        insert (prime * prime, n, multiple * prime) table

    let rec adjust x table =
        let composite, n, multiple = findMin table

        if composite <= x then 
            table 
            |> insertDeleteMin (wheel (composite, n, multiple))
            |> adjust x
        else
            table

    let rec sieve iterator table =
        seq {
            let x, _, _ = iterator
            let composite, _, _ = findMin table

            if composite <= x then
                yield! sieve (wheel iterator) (adjust x table)
            else
                yield x
                yield! sieve (wheel iterator) (insertPrime iterator table)
        }

    sieve (13L, 1, 1L) (insertPrime (11L, 0, 1L) empty)
    |> Seq.append [2L;3L;5L;7L;11L]
share|improve this answer
Very nice! Your program finds the 100000 th prime in ~5 seconds on my machine. Fast and elegant, +1. – IVlad Jan 8 '11 at 1:20
@IVIad I just made a small tweak to the starting prime number by setting it to n * n instead of n + n. Saved a second on my machine. – gradbot Jan 8 '11 at 1:23
@gradbot - yes, it's down to 4 seconds now. This is exactly what I wanted. Thank you. – IVlad Jan 8 '11 at 1:30
@IVIad I'm working on adding the wheel. This is fun! – gradbot Jan 8 '11 at 1:34
@gradbot - have anything fancy in mind for the wheel? :) I managed to get it working by hardcoding the given values in an array and adding a k param to the prime function, which gets incremented and taken mod 48 at each call. Then instead of doing n + 1 I do n + wheel2357.[k]. Not sure if it's the best / most elegant way but now it gets the 100000th prime in under a second. – IVlad Jan 8 '11 at 2:07
show 9 more comments

Here's my attempt at a reasonably faithful translation of the Haskell code to F#:

#r "FSharp.PowerPack"

module Map =
  let insertWith f k v m =
    let v = if Map.containsKey k m then f m.[k] v else v
    Map.add k v m

let sieve =
  let rec sieve' map = function
  | LazyList.Nil -> Seq.empty
  | LazyList.Cons(x,xs) -> 
      if Map.containsKey x map then
        let facts = map.[x]
        let map = Map.remove x map
        let reinsert m p = Map.insertWith (@) (x+p) [p] m
        sieve' (List.fold reinsert map facts) xs
      else
        seq {
          yield x
          yield! sieve' (Map.add (x*x) [x] map) xs
        }
  fun s -> sieve' Map.empty (LazyList.ofSeq s)

let rec upFrom i =
  seq {
    yield i
    yield! upFrom (i+1)
  }

let primes = sieve (upFrom 2)
share|improve this answer
This actually takes longer than the algorithm I posted. For sieving the first 100 000 naturals my algorithm takes about 8 seconds, while this takes over 9 seconds on my machine. I didn't actually time the Haskell solution (having trouble getting it to even run), but this seems pretty slow. Could it be the implementation of LazyList, which seems to be using locks to avoid side effects? – IVlad Jan 7 '11 at 22:27
@IVlad - Hmm... on my machine PseudoSieve [2..100000] takes about 2 seconds, while sieve [2..100000] |> List.ofSeq takes around 0.5 seconds. If you're only going to be sieving a finite sequence, then using a list rather than a LazyList will probably give a performance improvement. However, with a finite list, you could also just use a mutable array as in the classical algorithm, which should be faster still. – kvb Jan 7 '11 at 23:00
Also note that the paper that you cited also provides a faster algorithm based on a priority queue, which could be implemented in F# too (with some effort). – kvb Jan 7 '11 at 23:02
1  
Implementations of F# priority queues can be found in the question stackoverflow.com/q/3326512/336455 – Muhammad Alkarouri Jan 7 '11 at 23:46
show 5 more comments

Prime sieve implemented with mailbox processors:

let (<--) (mb : MailboxProcessor<'a>) (message : 'a) = mb.Post(message)
let (<-->) (mb : MailboxProcessor<'a>) (f : AsyncReplyChannel<'b> -> 'a) = mb.PostAndAsyncReply f

type 'a seqMsg =  
    | Next of AsyncReplyChannel<'a>   

type PrimeSieve() =   
    let counter(init) =   
        MailboxProcessor.Start(fun inbox ->   
            let rec loop n =   
                async { let! msg = inbox.Receive()   
                        match msg with
                        | Next(reply) ->   
                            reply.Reply(n)   
                            return! loop(n + 1) }   
            loop init)   

    let filter(c : MailboxProcessor<'a seqMsg>, pred) =   
        MailboxProcessor.Start(fun inbox ->   
            let rec loop() =   
                async {   
                    let! msg = inbox.Receive()   
                    match msg with
                    | Next(reply) ->
                        let rec filter prime =
                            if pred prime then async { return prime }
                            else async {
                                let! next = c <--> Next
                                return! filter next }
                        let! next = c <--> Next
                        let! prime = filter next
                        reply.Reply(prime)
                        return! loop()   
                }   
            loop()   
        )   

    let processor = MailboxProcessor.Start(fun inbox ->   
        let rec loop (oldFilter : MailboxProcessor<int seqMsg>) prime =   
            async {   
                let! msg = inbox.Receive()   
                match msg with
                | Next(reply) ->   
                    reply.Reply(prime)   
                    let newFilter = filter(oldFilter, (fun x -> x % prime <> 0))   
                    let! newPrime = oldFilter <--> Next
                    return! loop newFilter newPrime   
            }   
        loop (counter(3)) 2)   

    member this.Next() = processor.PostAndReply( (fun reply -> Next(reply)), timeout = 2000)

    static member upto max =
        let p = PrimeSieve()
        Seq.initInfinite (fun _ -> p.Next())
        |> Seq.takeWhile (fun prime -> prime <= max)
        |> Seq.toList
share|improve this answer
Probably not very fast, but makes in up sheer awesomeness. – Juliet Jan 9 '11 at 5:36
1  
+1 For ridiculousness. – Jon Harrop Jan 12 '11 at 22:21
This is awesome ! – BlueTrin Oct 15 '12 at 12:15

Here is my two cents, though I am not sure it meets the OP's criterion for truely being the sieve of eratosthenes. It doesn't utilize modular division and implements an optimization from the paper cited by the OP. It only works for finite lists, but that seems to me to be in the spirit of how the sieve was originally described. As an aside, the paper the talks about complexiety in terms of the number of markings and the number of divisions. Seems that, as we have to traverse a linked list, that this perhaps ignoring some key aspects of the various algorithms in performance terms. In general though modular division with computers is an expensive operation.

open System

let rec sieve list =
    let rec helper list2 prime next =
        match list2 with
            | number::tail -> 
                if number< next then
                    number::helper tail prime next
                else
                    if number = next then 
                        helper tail prime (next+prime)
                    else
                        helper (number::tail) prime (next+prime)

            | []->[]
    match list with
        | head::tail->
            head::sieve (helper tail head (head*head))
        | []->[]

let step1=sieve [2..100]

EDIT: fixed an error in the code from my original post. I tried the follow the original logic of the sieve with a few modifications. Namely start with the first item and cross off the multiples of that item from the set. This algorithm literally looks for the next item that is a multiple of the prime instead of doing modular division on every number in the set. An optimization from the paper is that it starts looking for multiples of the prime greater than p^2.

The part in the helper function with the multi-level deals with the possibility that the next multiple of the prime might already be removed from the list. So for instance with the prime 5, it will try to remove the number 30, but it will never find it because it was already removed by the prime 3. Hope that clarifies the algorithm's logic.

share|improve this answer
sieve [1..10000] takes about 2 second, while it's instant with my algorithm and @kvb's. Could you explain the logic behind the algorithm a bit? – IVlad Jan 7 '11 at 23:55
+1, That seems to be faster than the previous. However, I get a stack overflow exception if I try to sieve [2..100000]. – IVlad Jan 8 '11 at 1:37
@IVlad it should be possible to achieve substantial speedup by adding top_limit as another parameter to the sieve function, and have it test whether top_limit/head < head, and if so, just return head::tail. Detailed discussion (in Haskell) is here. Also, working with [3..2..100] and calling helper with (2*head) as a step value will help (though this one will only double your speed). :) Cheers, – Will Ness Jan 1 '12 at 0:28

I know you explicitly stated that you were interested in a purely functional sieve implementation so I held off presenting my sieve until now. But upon re-reading the paper you referenced, I see the incremental sieve algorithm presented there is essentially the same as my own, the only difference being implementation details of using purely functional techniques versus decidedly imperative techniques. So I think I at least half-qualify in satisfying your curiosity. Moreover, I would argue that using imperative techniques when significant performance gains can be realized but hidden away by functional interfaces is one of the most powerful techniques encouraged in F# programming, as opposed to the everything pure Haskell culture. I first published this implementation on my Project Euler for F#un blog but re-publish here with pre-requisite code substituted back in and structural typing removed. primes can calculate the first 100,000 primes in 0.248 seconds and the first 1,000,000 primes in 4.8 seconds on my computer (note that primes caches its results so you'll need to re-evaluate it each time you perform a benchmark).

let inline infiniteRange start skip = 
    seq {
        let n = ref start
        while true do
            yield n.contents
            n.contents <- n.contents + skip
    }

///p is "prime", s=p*p, c is "multiplier", m=c*p
type SievePrime<'a> = {mutable c:'a ; p:'a ; mutable m:'a ; s:'a}

///A cached, infinite sequence of primes
let primes =
    let primeList = ResizeArray<_>()
    primeList.Add({c=3 ; p=3 ; m=9 ; s=9})

    //test whether n is composite, if not add it to the primeList and return false
    let isComposite n = 
        let rec loop i = 
            let sp = primeList.[i]
            while sp.m < n do
                sp.c <- sp.c+1
                sp.m <- sp.c*sp.p

            if sp.m = n then true
            elif i = (primeList.Count-1) || sp.s > n then
                primeList.Add({c=n ; p=n ; m=n*n ; s=n*n})
                false
            else loop (i+1)
        loop 0

    seq { 
        yield 2 ; yield 3

        //yield the cached results
        for i in 1..primeList.Count-1 do
            yield primeList.[i].p

        yield! infiniteRange (primeList.[primeList.Count-1].p + 2) 2 
               |> Seq.filter (isComposite>>not)
    }
share|improve this answer
1  
You're right of course, there's no good reason to use a purely functional approach for implementing the sieve, it was just a curiosity of mine. The imperative sieve supports a lot more optimizations, such as halving the memory used (you don't care about multiples of two), using a single bit for marking off composites (compare that to using a map for example) and others. And it will stay at O(n log log n), when a purely functional implementation won't. +1 for some interesting code. – IVlad Jan 9 '11 at 16:07

For what its worth, this isn't a sieve of Erathothenes, but its very fast:

let is_prime n =
    let maxFactor = int64(sqrt(float n))
    let rec loop testPrime tog =
        if testPrime > maxFactor then true
        elif n % testPrime = 0L then false
        else loop (testPrime + tog) (6L - tog)
    if n = 2L || n = 3L || n = 5L then true
    elif n <= 1L || n % 2L = 0L || n % 3L = 0L || n % 5L = 0L then false
    else loop 7L 4L
let primes =
    seq {
        yield 2L;
        yield 3L;
        yield 5L;
        yield! (7L, 4L) |> Seq.unfold (fun (p, tog) -> Some(p, (p + tog, 6L - tog)))
    }
    |> Seq.filter is_prime

It finds the 100,000th prime in 1.25 seconds on my machine (AMD Phenom II, 3.2GHZ quadcore).

share|improve this answer
That's 500x slower than the sieve of E that I blogged. – Jon Harrop Jan 12 '11 at 22:23

I'm not very familiar with Haskell multimaps, but the F# Power Pack has a HashMultiMap class, whose xmldoc summary is: "Hash tables, by default based on F# structural "hash" and (=) functions. The table may map a single key to multiple bindings." Perhaps this might help you?

share|improve this answer
If I'm reading the source right, that class seems to be using a .net library Dictionary<_,_> under the hood, which unfortunately isn't immutable. – IVlad Jan 7 '11 at 21:07
I haven't peered that closely at the source... I wonder if a completely pure implementation would be horribly inefficient on the .NET runtime? – pblasucci Jan 7 '11 at 21:30
member Add : 'Key * 'Value -> unit definitely mutable – Guvante Jan 7 '11 at 22:33
Pure implementations are horribly inefficient anyway. – Jon Harrop Jun 25 '11 at 14:49

Actually I tried to do the same, I tried first the same naive implementation as in question, but it was too slow. I then found this page YAPES: Problem Seven, Part 2, where he used real Sieve of Eratosthenes based on Melissa E. O’Neill. I took code from there, just a little modified it, because F# changed a little since publication.

let reinsert x table prime = 
   let comp = x+prime 
   match Map.tryFind comp table with 
   | None        -> table |> Map.add comp [prime] 
   | Some(facts) -> table |> Map.add comp (prime::facts) 

let rec sieve x table = 
  seq { 
    match Map.tryFind x table with 
    | None -> 
        yield x 
        yield! sieve (x+1I) (table |> Map.add (x*x) [x]) 
    | Some(factors) -> 
        yield! sieve (x+1I) (factors |> List.fold (reinsert x) (table |> Map.remove x)) } 

let primes = 
  sieve 2I Map.empty

primes |> Seq.takeWhile (fun elem -> elem < 2000000I) |> Seq.sum
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.