-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlink.cpp
executable file
·138 lines (89 loc) · 1.87 KB
/
link.cpp
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
* this file is in liu of precompiling the library and linking to it, as it is still in developement
*
* include this file last when using mathlib
*
*/
#ifdef GRAD_H
#include "math/PDE/grad.cpp"
#endif
#ifdef LAPLACIAN_H
#include "math/PDE/laplacian.cpp"
#endif
#ifdef ML_BM_H
#include "math/SDE/BM.cpp"
#endif
#ifdef ML_ALLOC_H
#include "tools/memory/ml_alloc.cpp"
#endif
#ifdef APPLY_HDAF_H
#include "math/hdaf/apply_hdaf.cpp"
#endif
#ifdef STD_MATH_H
#include "math/std_math.cpp"
#endif
#ifdef STD_TOOLS_H
#include "tools/std_tools.cpp"
#endif
#ifdef ML_CONVOLUTION_H
#include "math/convolution/convolution.cpp"
#endif
#ifdef ML_RANDOM_H
#include "math/random/ml_random.cpp"
#endif
#ifdef KERNELS_H
#include "math/kernels/kernels.cpp"
#endif
#ifdef ML_SIGNAL_REG_H
#include "math/signals/ml_signal_reg.cpp"
#endif
#ifdef DIFFERENTIATION_H
#include "math/differentiation/differentiation.cpp"
#endif
#ifdef FFT_H
#include "math/transforms/fft.cpp"
#endif
#ifdef EUVEC_H
#include "math/vectors/euVec.cpp"
#endif
#ifdef FD_KERNELS_H
#include "math/kernels/FDkernels.cpp"
#endif
#ifdef SIGNALS_H
#include "math/signals/signals.cpp"
#endif
#ifdef SIGNAL_1_2_FFT_H
#include "math/signals/fft.cpp"
#endif
#ifdef HERMITE_POLYS_H
#include "math/polynomials/hermite_polys.cpp"
#endif
#ifdef LAGUERRE_POLYS_H
#include "math/polynomials/laguerre_polys.cpp"
#endif
#ifdef ML_POLY_H
#include "math/polynomials/ml_poly.cpp"
#endif
#ifdef MATRIX1_H
#include "math/matrices/matrix1.cpp"
#endif
#ifdef ML_HDAF_H
#include "math/hdaf/hdaf.cpp"
#endif
#ifdef GRID_H
#include "math/grids/grid.cpp"
#endif
#ifdef FD_KERNELS_H
#include "math/kernels/FDkernels.cpp"
#endif
#ifdef PLOT2D_H
#include "tools/graphing/plot2D.cpp"
#endif
#ifdef ARRAY1_H
#include "tools/arrays/array1.cpp"
#endif
/*
#ifndef EUVEC_H
#include "euVec.h"
#endif
*/