Example #1
0
 def test_100_random_with_caching(self):
     # Randomly test for prime values <= than 100th prime, NOT resetting the
     # cache each time.
     for _ in range(100):
         r = random.randint(0, max(p100) + 1)
         expected_primes = [p for p in p100 if p <= r]
         actual_primes = factors.sieve_of_eratosthenes(r)
         self.assertListEqual(expected_primes, actual_primes,
                              "Unexpected return for query value: %d" % r)
Example #2
0
 def test_100_random_with_caching(self):
     # Randomly test for prime values <= than 100th prime, NOT resetting the
     # cache each time.
     for _ in range(100):
         r = random.randint(0, max(p100) + 1)
         expected_primes = [p for p in p100 if p <= r]
         actual_primes = factors.sieve_of_eratosthenes(r)
         self.assertListEqual(expected_primes, actual_primes,
                              "Unexpected return for query value: %d" % r)
Example #3
0
 def test_15(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(15),
         [2, 3, 5, 7, 11, 13]
     )
Example #4
0
 def test_5(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(5),
         [2, 3, 5]
     )
Example #5
0
 def test_7(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(7),
         [2, 3, 5, 7]
     )
Example #6
0
 def test_2(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(2),
         [2]
     )
Example #7
0
 def test_4(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(4),
         [2, 3]
     )
Example #8
0
 def test_5(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(5), [2, 3, 5])
Example #9
0
 def test_1(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(1),
         []
     )
Example #10
0
 def test_100_with_caching(self):
     # First ask for a value with 99 prime returns, then a value with 100 to
     # see that we did get that new extra value.
     self.assertListEqual(factors.sieve_of_eratosthenes(540), p100[:-1])
     self.assertListEqual(factors.sieve_of_eratosthenes(541), p100)
Example #11
0
 def test_100_primes(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(541), p100)
Example #12
0
 def test_60(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(60),
         [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59])
Example #13
0
 def test_100_primes(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(541), p100)
Example #14
0
 def test_25(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(25),
                          [2, 3, 5, 7, 11, 13, 17, 19, 23])
Example #15
0
 def test_15(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(15),
                          [2, 3, 5, 7, 11, 13])
Example #16
0
 def test_7(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(7), [2, 3, 5, 7])
Example #17
0
 def test_25(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(25),
         [2, 3, 5, 7, 11, 13, 17, 19, 23]
     )
Example #18
0
 def test_2(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(2), [2])
Example #19
0
 def test_60(self):
     self.assertListEqual(
         factors.sieve_of_eratosthenes(60),
         [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59]
     )
Example #20
0
 def test_4(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(4), [2, 3])
Example #21
0
 def test_100_with_caching(self):
     # First ask for a value with 99 prime returns, then a value with 100 to
     # see that we did get that new extra value.
     self.assertListEqual(factors.sieve_of_eratosthenes(540), p100[:-1])
     self.assertListEqual(factors.sieve_of_eratosthenes(541), p100)
Example #22
0
 def test_1(self):
     self.assertListEqual(factors.sieve_of_eratosthenes(1), [])