Last active
August 29, 2015 14:08
-
-
Save remexre/38589a58bee48aaa737d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <set> | |
#include <gmpxx.h> | |
int main(int argc, char** argv) { | |
// Set upper bound | |
mpz_class max; | |
{ | |
unsigned int maxpow2 = 8; | |
if(argc > 1) sscanf(argv[1], "%ud", &maxpow2); | |
mpz_ui_pow_ui(max.get_mpz_t(), 2, maxpow2); | |
} | |
// Init sieve | |
std::set<mpz_class> primes; | |
primes.insert(2); | |
primes.insert(3); | |
puts("2\n3"); | |
// Start searching | |
mpz_class current(4); | |
do { | |
// All primes are 6k \pm 1 for k \in \bbold{N} | |
mpz_class six_k = current % 6; | |
if(six_k != 1 && six_k != 5) continue; | |
// Sieve of Eratosthenes | |
mpz_class erat_max = sqrt(current); | |
bool erat_isp = true; | |
for(mpz_class p : primes) { | |
if(current % p == 0) { | |
erat_isp = false; | |
break; | |
} else if(p >= erat_max) { | |
break; | |
} | |
} | |
if(!erat_isp) continue; | |
// Output prime and add to set. | |
mpz_out_str(stdout, 10, current.get_mpz_t()); | |
putc('\n', stdout); | |
primes.insert(current); | |
} while(++current < max); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment