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]
abecause that's whatbwill point to. You cannot stop usingacompletely unless you copy it element-by-element in a newly allocated array, which would be terribly inefficient. – IVlad Jan 10 '11 at 7:16