/usr/include/primesieve/PushBackPrimes.hpp is in libprimesieve7-dev-common 5.7.2+ds-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | ///
/// @file   PushBackPrimes.hpp
/// @brief  This file contains classes needed to store primes in
///         std::vector objects. These classes derive from Callback
///         and call PrimeSieve's callbackPrimes() method, the
///         primes are then pushed back onto the vector inside the
///         callback method.
///
/// Copyright (C) 2016 Kim Walisch, <kim.walisch@gmail.com>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///
#ifndef PUSHBACKPRIMES_HPP
#define PUSHBACKPRIMES_HPP
#include "PrimeSieve.hpp"
#include "Callback.hpp"
#include "cancel_callback.hpp"
#include "primesieve_error.hpp"
#include <stdint.h>
#include <cmath>
namespace primesieve {
/// approximate_prime_count(x) >= pi(x)
inline std::size_t approximate_prime_count(uint64_t start, uint64_t stop)
{
  if (start > stop)
    return 0;
  if (stop <= 10)
    return 4;
  // pi(x) <= x / (log(x) - 1.1) + 5, for x >= 4
  double x = static_cast<double>(stop);
  double logx = std::log(x);
  double div = logx - 1.1;
  double pix = (stop - start) / div + 5;
  return static_cast<std::size_t>(pix);
}
template <typename T>
class PushBackPrimes : public Callback<uint64_t>
{
public:
  PushBackPrimes(T& primes)
    : primes_(primes)
  { }
  void callback(uint64_t prime)
  {
    typedef typename T::value_type V;
    primes_.push_back(static_cast<V>(prime));
  }
  void pushBackPrimes(uint64_t start, uint64_t stop)
  {
    if (start <= stop)
    {
      std::size_t prime_count = approximate_prime_count(start, stop);
      primes_.reserve(primes_.size() + prime_count);
      PrimeSieve ps;
      ps.callbackPrimes(start, stop, this);
    }
  }
private:
  PushBackPrimes(const PushBackPrimes&);
  void operator=(const PushBackPrimes&);
  T& primes_;
};
template <typename T>
class PushBack_N_Primes : public Callback<uint64_t>
{
public:
  PushBack_N_Primes(T& primes) 
    : primes_(primes)
  { }
  void callback(uint64_t prime)
  {
    typedef typename T::value_type V;
    primes_.push_back(static_cast<V>(prime));
    if (--n_ == 0)
      throw cancel_callback();
  }
  void pushBack_N_Primes(uint64_t n, uint64_t start)
  {
    n_ = n;
    PrimeSieve ps;
    std::size_t newSize = primes_.size() + static_cast<std::size_t>(n_);
    primes_.reserve(newSize);
    try
    {
      while (n_ > 0)
      {
        // choose stop > nth prime
        uint64_t logx = 50;
        uint64_t dist = n_ * logx + 10000;
        uint64_t stop = start + dist;
        // fix integer overflow
        if (stop < start)
          stop = get_max_stop();
        ps.callbackPrimes(start, stop, this);
        start = stop + 1;
        if (stop >= get_max_stop())
          throw primesieve_error("cannot generate primes > 2^64");
      }
    }
    catch (cancel_callback&) { }
  }
private:
  PushBack_N_Primes(const PushBack_N_Primes&);
  void operator=(const PushBack_N_Primes&);
  T& primes_;
  uint64_t n_;
};
} // namespace primesieve
#endif
 |