mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-15 03:10:07 +08:00
chore: use iwyu on probablity/**.cpp
This commit is contained in:
@@ -19,14 +19,15 @@
|
||||
* @author [Domenic Zingsheim](https://github.com/DerAndereDomenic)
|
||||
*/
|
||||
|
||||
#include <cassert> /// for assert
|
||||
#include <cmath> /// for math functions
|
||||
#include <cstdint> /// for fixed size data types
|
||||
#include <ctime> /// for time to initialize rng
|
||||
#include <iostream> /// for std::cout
|
||||
#include <limits> /// for std::numeric_limits
|
||||
#include <random> /// for random numbers
|
||||
#include <vector> /// for std::vector
|
||||
#include <bits/std_abs.h> // for abs
|
||||
#include <stdlib.h> // for rand, srand, RAND_MAX
|
||||
#include <cassert> // for assert
|
||||
#include <cmath> // for log, pow, sqrt
|
||||
#include <cstdint> // for uint32_t
|
||||
#include <ctime> // for time
|
||||
#include <iostream> // for basic_ostream, char_traits, operator<<, cout
|
||||
#include <limits> // for numeric_limits
|
||||
#include <vector> // for vector
|
||||
|
||||
/**
|
||||
* @namespace probability
|
||||
|
||||
Reference in New Issue
Block a user