Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
ggkogkou 2021-10-29 17:17:43 +03:00 committed by GitHub
parent 8176c5bbfc
commit 27f76052df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@
#include <cstdlib> /// for std::atof #include <cstdlib> /// for std::atof
#include <functional> /// for std::function #include <functional> /// for std::function
#include <iostream> /// for IO operations #include <iostream> /// for IO operations
#include <stdint> /// for integer allocation #include <cstdint> /// for integer allocation
#include <map> /// for std::map container #include <map> /// for std::map container
/** /**