| 23 | } |
| 24 | |
| 25 | void run_estimations(int iterations, int points_per_estimation) { |
| 26 | for (int i = 0; i < iterations; ++i) { |
| 27 | estimate_pi(points_per_estimation); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | int main() { |
| 32 | const int total_estimations = 1000; |
nothing calls this directly
no test coverage detected