mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-13 15:37:06 +08:00
chore: use iwyu on math/**.cpp
This commit is contained in:
@@ -22,13 +22,14 @@
|
||||
*/
|
||||
|
||||
#define _USE_MATH_DEFINES /// for M_PI on windows
|
||||
#include <cmath> /// for math functions
|
||||
#include <cstdint> /// for fixed size data types
|
||||
#include <ctime> /// for time to initialize rng
|
||||
#include <functional> /// for function pointers
|
||||
#include <iostream> /// for std::cout
|
||||
#include <random> /// for random number generation
|
||||
#include <vector> /// for std::vector
|
||||
#include <cmath> // for exp, M_PI, sin, sqrt
|
||||
#include <cstdint> // for uint32_t
|
||||
#include <ctime> // for time
|
||||
#include <functional> // for function
|
||||
#include <iostream> // for basic_ostream, char_traits, operator<<, endl
|
||||
#include <random> // for normal_distribution, uniform_real_distribution
|
||||
#include <vector> // for vector
|
||||
#include <algorithm> // for min
|
||||
|
||||
/**
|
||||
* @namespace math
|
||||
|
||||
Reference in New Issue
Block a user