Skip to content

Commit d384413

Browse files
author
nicholas maxwell
committed
-
1 parent 8d2f925 commit d384413

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

link.cpp

+8-4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
*/
88

99

10+
11+
1012
#ifdef GRAD_H
1113
#include "math/PDE/grad.cpp"
1214
#endif
@@ -23,10 +25,6 @@
2325
#include "tools/memory/ml_alloc.cpp"
2426
#endif
2527

26-
#ifdef ML_ALLOC_H
27-
#include "tools/memory/ml_alloc.cpp"
28-
#endif
29-
3028
#ifdef APPLY_HDAF_H
3129
#include "math/hdaf/apply_hdaf.cpp"
3230
#endif
@@ -39,6 +37,7 @@
3937
#include "tools/std_tools.cpp"
4038
#endif
4139

40+
4241
#ifdef ML_CONVOLUTION_H
4342
#include "math/convolution/convolution.cpp"
4443
#endif
@@ -116,6 +115,11 @@
116115
#include "tools/arrays/array1.cpp"
117116
#endif
118117

118+
119+
120+
121+
122+
119123
/*
120124
#ifndef EUVEC_H
121125
#include "euVec.h"

tools/std_tools.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ double get_real_time()
3131
timespec current_time;
3232
clock_gettime(CLOCK_REALTIME, &current_time);
3333
return (double) ((double)current_time.tv_sec+(double)current_time.tv_nsec/(1.0E9));
34-
/*
35-
timespec current_time;
36-
clock_gettime(CLOCK_REALTIME, &current_time);
37-
return (double)current_time.tv_nsec/1E9;*/
34+
35+
//timespec current_time;
36+
//clock_gettime(CLOCK_REALTIME, &current_time);
37+
//return (double)current_time.tv_nsec/1E9;
3838
}
3939

4040
void std_exit()

0 commit comments

Comments
 (0)