#ifndef PRIMES_H #define PRIMES_H #include bool search_prime_constellation( mpz_t& start_interval, mpz_t& end_interval, unsigned int k, // size of prime constellation unsigned int offsets[], // k-1 offsets mpz_t& first_prime); // found result (if returning true) #endif