An understandable prime sieve implementation in numpy or pure python.
Project description
Prime Sieve
An understandable prime sieve implementation in numpy or pure python. The focus is providing a sieve that is easy to understand rather than the absolute fastest implementation. Though the numpy implementation is reasonably quick, being able to compute the first 100 million primes in 30 seconds on my mid-tier laptop.
This library implements a version of the segmented sieve of Eratosthenes.
First take a look at the pure python implementation in prime_sieve/list.py. Then see the numpy implementation in prime_sieve/array.py. Sieve operations that are independent of the actual computation of primes, such as looking up the nth-prime number, are found in prime_sieve/base.py.
Free software: MIT license
Documentation: https://prime-sieve.readthedocs.io.
Usage
# Use a numpy or pure python implementation
from prime_sieve.array import PrimeArraySieve
# from prime_sieve.list import PrimeListSieve
sieve = PrimeArraySieve()
# sieve = PrimeListSieve()
print(sieve.nth_prime(0)) # 2
print(sieve[4]) # 7
print(sieve.index_of(7)) # 4
print(sieve[:100]) # [2, 3, ..., 541]
print(sieve[1:6]) # [3, 5, 7, 11, 13]
print(86*97 in sieve) # False
print(sieve.is_prime(2 ** 13 - 1)) # True
# ranges are like python ranges, inclusive start, exclusive stop
print(sieve.primes_in_range(10, 20)) # [11, 13, 17, 19]
print(sieve.primes_in_range(10, 19)) # [11, 13, 17]
print(sieve.count_primes_in_range(3, 7)) # 2
print(sieve.count_primes_in_range(3, 8)) # 3
print(sieve.next_prime_greater_than(100)) # 101
print(sieve.next_prime_greater_than(101)) # 103
print(sieve.prev_prime_less_than(8)) # 7
print(sieve.prev_prime_less_than(7)) # 5
print(sieve.count_primes_less_or_equal(10 ** 7)) # 664579
for p in sieve.iter_all_primes(): # infinite loop
print(p)
# see sieve internals
print(len(sieve)) # how many primes have currently been computed
print(sieve.primes) # read-only view of already computed primes
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.0 (2021-05-02)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file prime_sieve-0.1.11.tar.gz
.
File metadata
- Download URL: prime_sieve-0.1.11.tar.gz
- Upload date:
- Size: 15.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d856487bf1d6ba7d1ac2e18c9f7dfe82dbd3e2fb9878d353fc418449a0bba68 |
|
MD5 | 68245309331a834518fb12d73a6796c6 |
|
BLAKE2b-256 | 6097043551c38bb3026b77bc1ee61472a7d7e2c0db9fded087649d87fe29019f |
File details
Details for the file prime_sieve-0.1.11-py2.py3-none-any.whl
.
File metadata
- Download URL: prime_sieve-0.1.11-py2.py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6c0deab2049bd808f539c873ff3c6a602e7b77341cb24153e333f387d9aeabf |
|
MD5 | 9ab501f8ce80b74821191bdda2d62b2b |
|
BLAKE2b-256 | b97376eff9ea1aef7ab381cc68135bcd856174dbf364ac634512f7bae134ffe7 |