27 #ifndef FDCL_INTEGRAL_UTILS_HPP 28 #define FDCL_INTEGRAL_UTILS_HPP 36 #include "Eigen/Dense" 62 void integrate(
const Vector3 current_integrand,
const double dt)
64 error += (integrand + current_integrand) * dt / 2;
65 integrand = current_integrand;
100 void integrate(
const double current_integrand,
const double dt)
102 error += (integrand + current_integrand) * dt / 2;
103 integrand = current_integrand;
Integral for error for Vector3.
Definition: integral_utils.hpp:44
void set_zero(void)
Definition: integral_utils.hpp:110
Miscellaneous math functions.
void integrate(const Vector3 current_integrand, const double dt)
Definition: integral_utils.hpp:62
Data types used throughout the code.
void set_zero(void)
Definition: integral_utils.hpp:72
Definition: common_types.hpp:44
void integrate(const double current_integrand, const double dt)
Definition: integral_utils.hpp:100
Integral for error for a double.
Definition: integral_utils.hpp:82