-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathNumericalIntegration.h
46 lines (41 loc) · 1.54 KB
/
NumericalIntegration.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Development work based on work from QUADPACK, Robert Piessens, et al,
// and original work by Dirk Laurie, Walter Gautschi, with support by work
// from John Burkardt.
//
// Multiprecision templating by Pavel Holoborodko and
// code porting, multiprecision templating, and unit tests created by
// Sreekumar Thaithara Balan, Mark Sauder, and Matt Beall 2014.
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
#ifndef EIGEN_NUMERICAL_INTEGRATION_H
#define EIGEN_NUMERICAL_INTEGRATION_H
namespace Eigen
{
/**
* \defgroup NumericalIntegration_Module
* \brief This module provides an adaptive quadrature method of numerical integration.
*
* This module provides an adaptive quadrature method of numerical integration of the style
* implemented in the QUADPACK library while offering functionality to calculate nodes/weights
* for Gauss-Kronrod integration, unit tests, and support for multiprecision using mpreal
* precision type.
*
* To use this module, add
* \code
* #include <unsupported/Eigen/NumericalIntegration>
* \endcode
* at the start of your source file.
*/
}
#include <iomanip>
#include <Eigen/Eigenvalues>
#include <unsupported/Eigen/MPRealSupport>
#include "ComputeGaussKronrodNodesWeights.h"
#include "GaussKronrodNodesWeights.h"
#include "Integrator.h"
#endif // EIGEN_NUMERICAL_INTEGRATION_H