fix: add <cstdint> to numerical_methods/**

This commit is contained in:
realstealthninja
2024-08-31 11:29:46 +05:30
parent afd4ccbc5e
commit 8740df0314
7 changed files with 7 additions and 1 deletions

View File

@@ -16,6 +16,7 @@
#define _USE_MATH_DEFINES ///< required for MS Visual C++
#include <cassert>
#include <cmath>
#include <cstdint> /// for integral typedefs
#include <functional>
#include <iostream>
#include <limits>

View File

@@ -33,6 +33,7 @@
#include <cassert>
#include <cmath>
#include <complex>
#include <cstdint> /// for integral typedefs
#include <cstdlib>
#include <ctime>
#include <fstream>

View File

@@ -22,6 +22,7 @@
#include <cassert> /// for assert
#include <cmath> /// for mathematical-related functions
#include <complex> /// for storing points and coefficents
#include <cstdint> /// for integral typedefs
#include <iostream> /// for IO operations
#include <vector> /// for std::vector

View File

@@ -10,6 +10,7 @@
#define _USE_MATH_DEFINES //< required for MS Visual C++
#include <cassert>
#include <cmath>
#include <cstdint> /// for integral typedefs
#include <functional>
#include <iostream>
#include <limits>

View File

@@ -14,6 +14,7 @@
#include <cassert> /// for assert
#include <cmath> /// for mathematical-related functions
#include <complex> /// for storing points and coefficents
#include <cstdint> /// for integral typedefs
#include <iostream> /// for IO operations
#include <vector> /// for std::vector

View File

@@ -13,6 +13,7 @@
* \see bisection_method.cpp, false_position.cpp
*/
#include <cmath>
#include <cstdint> /// for integral typedefs
#include <ctime>
#include <iostream>
#include <limits>

View File

@@ -19,9 +19,9 @@
* There can be many such equations
*/
#include <cassert> /// asserting the test functions
#include <cstdint> /// for integral typedefs
#include <iostream> /// for io operations
#include <vector> /// for using the vector container
/**
* @brief The change() function is used
* to return the updated iterative value corresponding