-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathx_test_probability.hpp
47 lines (41 loc) · 1.25 KB
/
x_test_probability.hpp
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
//
// x_test_probability.hpp
// x
//
// Created by Daher Alfawares on 1/26/18.
// Copyright © 2018 Daher Alfawares. All rights reserved.
//
#ifndef x_test_probability_hpp
#define x_test_probability_hpp
#include "x_block_measure.hpp"
#include <iomanip>
#include <vector>
namespace x {
namespace test {
inline void probability(){
x::block::measure m("x::test::probability");
std::vector<float> probabilities = {
0.1f, 0.25f, 0.5f, 0.75f, 1.0f
};
int iterations = 1000000;
std::cout << "testing probability for " << iterations << " iterations" << std::endl;
for(auto probability:probabilities){
float total = 0;
for(int iteration = 0; iteration < iterations; iteration++){
if(x::probability(probability)){
total += 1;
}
}
auto result = total/static_cast<float>(iterations);
auto diff = result - probability;
if(diff<0) diff = -diff;
std::cout
<< "probability("
<< std::fixed << std::setprecision(2) << probability
<< ") -> "
<< result
<< std::endl;
}
}
}}
#endif /* x_test_probability_hpp */