Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
ggkogkou 2021-10-27 23:06:31 +03:00 committed by GitHub
parent ab4c1242dd
commit ec5e0cce91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,12 @@
*
* @author [ggkogkou](https://github.com/ggkogkou)
*/
#include <iostream> /// for IO operations
#include <cmath> /// for math functions
#include <cassert> /// for assert
#include <cstdlib> /// for std::atof
#include <functional> /// for std::function
#include <map> /// for std::map container
/**
* @namespace numerical_methods