1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
///
/// @file P2_xa.cpp
/// @brief Test the 2nd partial sieve function P2(x, a)
/// that counts the numbers <= x that have exactly
/// 2 prime factors each exceeding the a-th prime.
///
/// Copyright (C) 2017 Kim Walisch, <kim.walisch@gmail.com>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///
#include <primecount-internal.hpp>
#include <generate.hpp>
#include <imath.hpp>
#include <stdint.h>
#include <iostream>
#include <cstdlib>
#include <vector>
#include <random>
using std::size_t;
using namespace primecount;
void check(bool OK)
{
std::cout << " " << (OK ? "OK" : "ERROR") << "\n";
if (!OK)
std::exit(1);
}
int main()
{
std::random_device rd;
std::mt19937 gen(rd());
std::uniform_int_distribution<int> dist(50000, 70000);
int threads = 1;
int64_t x = dist(gen);
auto primes = generate_primes<int64_t>(x);
for (int a = 1; primes[a] <= isqrt(x); a++)
{
int64_t p2 = 0;
for (size_t b = a + 1; b < primes.size(); b++)
for (size_t c = b; c < primes.size(); c++)
if (primes[b] * primes[c] <= x)
p2++;
std::cout << "P2(" << x << ", " << a << ") = " << p2;
check(p2 == P2(x, primes[a], a, threads));
}
std::cout << std::endl;
std::cout << "All tests passed successfully!" << std::endl;
return 0;
}
|