mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-01 09:43:06 +08:00
fix: add <cstdint> to numerical_methods/**
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
#include <cassert>
|
||||
#include <cmath>
|
||||
#include <complex>
|
||||
#include <cstdint> /// for integral typedefs
|
||||
#include <cstdlib>
|
||||
#include <ctime>
|
||||
#include <fstream>
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
* \see bisection_method.cpp, false_position.cpp
|
||||
*/
|
||||
#include <cmath>
|
||||
#include <cstdint> /// for integral typedefs
|
||||
#include <ctime>
|
||||
#include <iostream>
|
||||
#include <limits>
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user