Made a fix, because previously it was not measuring primes.

This commit is contained in:
Nicolás A. Ortega 2016-12-13 16:32:10 +01:00
parent 3110c74174
commit 5aa0b333c0
No known key found for this signature in database
GPG Key ID: 614272579C2070D1

View File

@ -43,8 +43,8 @@ int main(void) {
// Calculate half of `num'
mpz_fdiv_q_ui(halfNum, num, 2);
// Loop through found primes
// Skip 2 because we're skipping even nymbers
for(ulli i = 1; mpz_cmp(primes.list[i], halfNum) >= 0; ++i) {
for(ulli i = 0; i < primes.end; ++i) {
if(mpz_cmp(primes.list[i], halfNum) >= 0) break;
// If `num' is divisible by a prime then go to the next number
if(mpz_divisible_p(num, primes.list[i]) != 0)
goto nextPrime;