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
|
///
/// @file StatusS2.hpp
///
/// Copyright (C) 2021 Kim Walisch, <kim.walisch@gmail.com>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///
#ifndef STATUSS2_HPP
#define STATUSS2_HPP
#include <int128_t.hpp>
namespace primecount {
class StatusS2
{
public:
StatusS2(maxint_t x);
void print(int64_t b, int64_t max_b);
void print(int64_t low, int64_t limit, maxint_t sum, maxint_t sum_approx);
static double getPercent(int64_t low, int64_t limit, maxint_t sum, maxint_t sum_approx);
private:
void print(double percent);
double epsilon_ = 0;
double percent_ = -1;
double time_ = 0;
// Only print status if 0.1 seconds have elapsed
// since last printing the status.
double threshold_ = 0.1;
int precision_ = 0;
};
} // namespace
#endif
|