chore: use iwyu on math/**.cpp

This commit is contained in:
realstealthninja
2024-09-13 15:38:50 +05:30
parent c3897d3763
commit c47117ca3f
23 changed files with 102 additions and 88 deletions

View File

@@ -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