1 |
foucault |
27 |
//---------------------------------------------------------------------------
|
2 |
|
|
|
3 |
|
|
#ifndef ot_quadrature_gaussH
|
4 |
|
|
#define ot_quadrature_gaussH
|
5 |
|
|
//---------------------------------------------------------------------------
|
6 |
|
|
|
7 |
|
|
|
8 |
|
|
#ifdef WINDOWS_VERSION
|
9 |
|
|
#ifdef BUILT_DLL_OUTIL
|
10 |
|
|
#define DLLPORTOUTIL __declspec(dllexport)
|
11 |
|
|
#else
|
12 |
|
|
#define DLLPORTOUTIL __declspec(dllimport)
|
13 |
|
|
#endif
|
14 |
|
|
#else
|
15 |
|
|
#define DLLPORTOUTIL
|
16 |
|
|
#endif
|
17 |
|
|
|
18 |
|
|
class DLLPORTOUTIL OT_QUADRATURE_GAUSS {
|
19 |
|
|
public:
|
20 |
|
|
static void gauss_legendre_points(double x1, double x2, double x[], double w[], int n);
|
21 |
|
|
};
|
22 |
|
|
|
23 |
|
|
#endif
|
24 |
|
|
|