30 namespace OpenSim.Framework
35 public static class PrimeNumberHelper
40 private static readonly
int[] Primes =
new int[]
42 3, 7, 11, 17, 23, 29, 37, 47, 59, 71, 89, 107, 131, 163, 197, 239,
43 293, 353, 431, 521, 631, 761, 919, 1103, 1327, 1597, 1931, 2333,
44 2801, 3371, 4049, 4861, 5839, 7013, 8419, 10103, 12143, 14591,
45 17519, 21023, 25229, 30293, 36353, 43627, 52361, 62851, 75431,
46 90523, 108631, 130363, 156437, 187751, 225307, 270371, 324449,
47 389357, 467237, 560689, 672827, 807403, 968897, 1162687, 1395263,
48 1674319, 2009191, 2411033, 2893249, 3471899, 4166287, 4999559,
61 public static int GetPrime(
int min)
66 if (Primes[ Primes.Length - 1 ] < min)
68 for (
int i = min | 1 ; i < 0x7FFFFFFF ; i += 2)
77 for (
int i = Primes.Length - 2 ; i >= 0 ; i--)
79 if (min == Primes[ i ])
82 if (min > Primes[ i ])
83 return Primes[ i + 1 ];
98 public static bool IsPrime(
int candinate)
100 if ((candinate & 1) == 0)
103 return candinate == 2;
105 int upperBound = (int) Math.Sqrt(candinate);
106 for (
int i = 3 ; i < upperBound ; i += 2)
108 if (candinate % i == 0)