-
Notifications
You must be signed in to change notification settings - Fork 0
/
wb.h
101 lines (79 loc) · 3.25 KB
/
wb.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
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
#ifndef __WB_H__
#define __WB_H__
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
#ifdef _MSC_VER
#define __func__ __FUNCTION__
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS 1
#endif /* _CRT_SECURE_NO_WARNINGS */
#define _CRT_SECURE_NO_DEPRECATE 1
#define _CRT_NONSTDC_NO_DEPRECATE 1
// there are problems with MSVC not using lazy load. These
// mostly occur because code for non-lazy loads doesn't
// deal well with lines that don't have a newline, and many of the
// supplied datasets done.
#define LAZY_FILE_LOAD
#include <windows.h>
#include <direct.h>
#include <io.h>
#endif /* _MSC_VER */
#include <stdio.h>
#include <stdlib.h>
#define wbStmt(stmt) stmt
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
#define wbLine __LINE__
#define wbFile __FILE__
#define wbFunction __func__
#define wbExit() wbAssert(0); exit(1)
#ifdef WB_USE_COURSERA
#define wbLogger_printOnExit 1
#else /* WB_USE_COURSERA */
#define wbLogger_printOnLog 1
#endif /* WB_USE_COURSERA */
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
extern char * solutionJSON;
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
#include <wbTypes.h>
#include <wbAssert.h>
#include <wbMalloc.h>
#include <wbString.h>
#include <wbTimer.h>
#include <wbLogger.h>
#include <wbComparator.h>
#include <wbFile.h>
#include <wbImport.h>
#include <wbExport.h>
#include <wbCast.h>
#include <wbImage.h>
#include <wbArg.h>
#include <wbSolution.h>
#include <wbExit.h>
#include <wbInit.h>
#include <wbCUDA.h>
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
/***********************************************************/
#endif /* __WB_H__ */