2016-12-09 22:02:51 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <gmp.h>
|
|
|
|
|
|
|
|
#include "list.h"
|
2016-12-09 23:50:23 +00:00
|
|
|
#include "optimizers.h"
|
2016-12-09 22:02:51 +00:00
|
|
|
|
|
|
|
static bool run;
|
|
|
|
void leave();
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
printf("Indivisible v0.2\n");
|
|
|
|
|
|
|
|
// Quit on ^C by setting `run = false'
|
|
|
|
run = true;
|
|
|
|
signal(SIGINT, leave);
|
|
|
|
|
|
|
|
// Primes we've found
|
|
|
|
List primes;
|
|
|
|
initList(&primes);
|
|
|
|
|
|
|
|
// The number we're going to be testing for
|
|
|
|
mpz_t num;
|
|
|
|
mpz_init(num);
|
|
|
|
|
|
|
|
// Add 2, a known prime to this list
|
|
|
|
mpz_set_ui(num, 2);
|
|
|
|
addToList(&primes, num);
|
2016-12-09 23:50:23 +00:00
|
|
|
if(unlikely(mpz_out_str(stdout, 10, num) == 0)) {
|
2016-12-09 22:02:51 +00:00
|
|
|
fprintf(stderr, "Could not print to `stdout'!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
mpz_add_ui(num, num, 1);
|
|
|
|
|
|
|
|
do {
|
|
|
|
// Loop through found primes
|
|
|
|
for(unsigned long long int i = 0; i < primes.size; ++i) {
|
|
|
|
// If `num' is divisible by a prime then go to the next number
|
|
|
|
if(mpz_divisible_p(num, primes.list[i]) != 0) goto nextPrime;
|
|
|
|
}
|
|
|
|
|
|
|
|
// `num' is a prime so we add it to the list and print it
|
|
|
|
addToList(&primes, num);
|
2016-12-09 23:50:23 +00:00
|
|
|
if(unlikely(mpz_out_str(stdout, 10, num) == 0)) {
|
2016-12-09 22:02:51 +00:00
|
|
|
fprintf(stderr, "Could not print to `stdout'!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
nextPrime:
|
|
|
|
// Add 2 (skip even numbers since they're all divisible by 2)
|
|
|
|
mpz_add_ui(num, num, 2);
|
|
|
|
} while(run);
|
|
|
|
|
|
|
|
// Deinitialize the list
|
|
|
|
deInitList(&primes);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void leave() {
|
|
|
|
printf("Exiting...\n");
|
|
|
|
run = false;
|
|
|
|
}
|