Added section for v0.2

This commit is contained in:
Nicolás A. Ortega 2016-12-09 23:26:27 +01:00
parent 79a9ba11ff
commit d757f3a79f
No known key found for this signature in database
GPG Key ID: 614272579C2070D1

View File

@ -4,4 +4,8 @@ Change Log
- v0.1: Initial release - v0.1: Initial release
- Basic prime calculation. - Basic prime calculation.
- Uses a growing vector of known primes and gets the modulus of the number divided by these primes. - Uses a growing vector of known primes and gets the modulus of the number divided by these primes.
- Uses type `long long` to hold prime numbers. - Uses type `long long' to hold prime numbers.
- v0.2: Multi-Precision
- Switch to C.
- Uses GNU Multiple Precision library (GMP) to hold prime numbers, allowing for 'infinite' size.
- Add `likely()' and `unlikely()' macros to optimize.