¡@

Home 

c# Programming Glossary: atkin

C#: How to make Sieve of Atkin incremental

http://stackoverflow.com/questions/1569393/c-how-to-make-sieve-of-atkin-incremental

How to make Sieve of Atkin incremental I don't know if this is possible or not but I just.. generates prime numbers up to a certain limit public class Atkin IEnumerable ulong private readonly List ulong primes private.. List ulong primes private readonly ulong limit public Atkin ulong limit this.limit limit primes new List ulong private..

How do I implement the Sieve Of Eratosthenes using multithreaded C#?

http://stackoverflow.com/questions/4700107/how-do-i-implement-the-sieve-of-eratosthenes-using-multithreaded-c

question A while back I tried to implement The Sieve of Atkin in parallell . It was a failure. I haven't done any deeper research.. it seems that both Sieve Of Eratosthenes and The Sieve of Atkin are hard to scale over multiple CPUs because the implementations..

Is the size of an array constrained by the upper limit of int (2147483647)?

http://stackoverflow.com/questions/573692/is-the-size-of-an-array-constrained-by-the-upper-limit-of-int-2147483647

So can I have bigger arrays EDIT It was for a Sieve of Atkin you know so I just wanted a really big one D c# arrays int..