Skip to content

Releases: cottrela/prime-formula

Revert CLI feature in previous release

13 May 08:58

Choose a tag to compare

In the previous release, the CLI was made an optional feature, but this has been reverted as it makes it harder to test out the library.

Added big-prime feature

13 May 08:52

Choose a tag to compare

Major update to add BigInt primes.

Updates:

  • New feature big-primes support primes larger than 10^38
  • Can easily generate 1024-bit RSA primes with 1000 random checks
  • Minor cleanup and refactor
  • Makes CLI a feature to reduce dependencies

Adding optimized Miller-Rabin primality checks

13 May 08:56

Choose a tag to compare

Major update adds Millar-Rabin primality checks for larger primes

Updates:

  • Adds support for generating primes up to 10^38 (near 128-bit limit)
  • Adds a 128-bit Millar-Rabin test optimized for speed
  • Refactored constellations into an optional feature
  • Code clean ups and some big refactors
  • Removed CLI support for window mode on the sieve
  • Removed "BestEffort" on the Sieve

Minor updates

07 May 07:25

Choose a tag to compare

Some minor updates to the README and code cleanups. No bug fixes, just superficial changes.

First release

07 May 07:00

Choose a tag to compare

Provides a rust library and binary for generating prime numbers using the novel Periodic Table of Prime (PTP) theory.

Provides:

  • A high performance binary that works efficiently to generate large numbers of primes.
  • A python representation of the Prime Formula, and PTP implementation