31 static double exact(
size_t const t_max,
double const fpr);
33 static double interpolated(
size_t const t_max,
double const fpr);
47 static inline const std::map<double, std::array<double, 11>>
cost_factors{
49 {0.0001, {1.0000, 1.0602, 1.3492, 1.3524, 1.5645, 1.9595, 3.4143, 5.4849, 6.8115, 10.9489, 19.8932}},
50 {0.0005, {1.0000, 1.0534, 1.1068, 1.2821, 1.5151, 1.7112, 3.6442, 4.7700, 6.9978, 12.2086, 22.5374}},
51 {0.0025, {1.0000, 1.0015, 1.0031, 1.0876, 1.4027, 1.6920, 3.3014, 4.8019, 7.6273, 13.5664, 24.1108}},
52 {0.0125, {1.0000, 1.0071, 1.1713, 1.3430, 1.8335, 2.6955, 5.3925, 8.6168, 15.0510, 28.3340, 54.4134}},
53 {0.0500, {1.0000, 1.2241, 1.3336, 1.6827, 2.4608, 3.7554, 7.3573, 12.4689, 23.2699, 45.0874, 86.5339}},
54 {0.0625, {1.0000, 1.1011, 1.2670, 1.5964, 2.4030, 3.6996, 7.1772, 12.4852, 23.3882, 44.7427, 87.8259}},
55 {0.3125, {1.0000, 1.2818, 1.5493, 2.2546, 3.7804, 6.5428, 12.9410, 24.4539, 47.6262, 93.4733, 185.1019}}};
57 static std::map<double, std::array<double, 11>>::const_iterator
find_closest_fpr(
double const fpr);
59 static constexpr bool contains(
size_t const value)
61 bool const is_power_of_two{std::has_single_bit(value)};
62 int const trailing_zeros{std::countr_zero(value)};
63 return is_power_of_two && trailing_zeros >= 6 && trailing_zeros <= 16;
66 static constexpr size_t position(
size_t const value)
69 return std::countr_zero(value) - 6;
Definition: ibf_query_cost.hpp:20
ibf_query_cost & operator=(ibf_query_cost const &)=default
ibf_query_cost & operator=(ibf_query_cost &&)=default
static constexpr bool contains(size_t const value)
Definition: ibf_query_cost.hpp:59
static const std::map< double, std::array< double, 11 > > cost_factors
The cost factor to penalize a search in an IBF with more then 64 bins.
Definition: ibf_query_cost.hpp:47
static double interpolated(size_t const t_max, double const fpr)
Definition: ibf_query_cost.cpp:32
static constexpr size_t position(size_t const value)
Definition: ibf_query_cost.hpp:66
static std::map< double, std::array< double, 11 > >::const_iterator find_closest_fpr(double const fpr)
Definition: ibf_query_cost.cpp:62
static constexpr const size_t maximum_t_max
Definition: ibf_query_cost.hpp:22
ibf_query_cost(ibf_query_cost const &)=default
static double exact(size_t const t_max, double const fpr)
Definition: ibf_query_cost.cpp:22
ibf_query_cost(ibf_query_cost &&)=default
~ibf_query_cost()=default
Definition: determine_best_number_of_technical_bins.hpp:17