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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
///
/// @file FactorTable.cpp
/// @brief FactorTable is a compressed lookup table of mu
/// (moebius) and lpf (least prime factor).
///
/// Copyright (C) 2024 Kim Walisch, <kim.walisch@gmail.com>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///
// factorTable.mu(n) = 0 is disabled by default for performance
// reasons, we only enable it for testing.
#define ENABLE_MU_0_TESTING
#include <FactorTable.hpp>
#include <generate_primes.hpp>
#include <int128_t.hpp>
#include <stdint.h>
#include <iostream>
#include <cstdlib>
#include <vector>
#include <random>
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(500000, 1000000);
auto max = dist(gen);
auto threads = max % 4;
auto lpf = generate_lpf(max);
auto mu = generate_moebius(max);
FactorTable<uint16_t> factorTable(max, threads);
int64_t uint16_max = pstd::numeric_limits<uint16_t>::max();
int64_t limit = factorTable.first_coprime();
std::vector<int> small_primes = { 2, 3, 5, 7, 11, 13, 17, 19 };
for (int n = 1; n <= max; n++)
{
int64_t i = factorTable.to_index(n);
bool is_prime = (lpf[n] == n);
// Check if n is coprime to the primes < limit
for (int p : small_primes)
{
if (p >= limit)
break;
if (n % p == 0)
goto not_coprime;
}
std::cout << "mu(" << n << ") = " << factorTable.mu(i);
check(mu[n] == factorTable.mu(i));
std::cout << "lpf(" << n << ") = " << lpf[n];
// mu_lpf(n) is a combination of the mu(n) (Möbius function)
// and lpf(n) (least prime factor) functions.
// mu_lpf(n) returns (with n = to_number(index)):
//
// 1) INT_MAX - 1 if n = 1
// 2) INT_MAX if n is a prime
// 3) 0 if moebius(n) = 0
// 4) lpf - 1 if moebius(n) = 1
// 5) lpf if moebius(n) = -1
if (n == 1)
check(factorTable.mu_lpf(i) == uint16_max - 1);
else if (is_prime)
check(factorTable.mu_lpf(i) == uint16_max);
else if (mu[n] == 0)
check(factorTable.mu_lpf(i) == 0);
else
check(lpf[n] == factorTable.mu_lpf(i) + (factorTable.mu(i) == 1));
not_coprime:;
}
std::cout << std::endl;
std::cout << "All tests passed successfully!" << std::endl;
return 0;
}
|