delphi_cb
 All Classes Namespaces Files Functions Variables Macros
environment.h
Go to the documentation of this file.
1 
8 #ifndef ENVIRONMENT_H_
9 #define ENVIRONMENT_H_
10 
18 #define MX
19 
23 #define VERBOSE
24 
28 #define DEVELOPER
29 
33 //#define MCCE
34 
38 //#define PARALLEL_OMP
39 
45 namespace delphi
46 {
47 #ifdef SP
48 typedef int delphi_integer;
49 typedef float delphi_real;
50 #endif
51 
52 #ifdef MX
53 typedef int delphi_integer;
54 typedef double delphi_real;
55 #endif
56 
57 #ifdef DP
58 typedef long int delphi_integer;
59 typedef double delphi_real;
60 #endif
61 
62 #ifdef LD
63 typedef long int delphi_integer;
64 typedef long double delphi_real;
65 #endif
66 
70 //#define DEBUG_IO_SIZE
71 
72 #ifdef DEBUG_IO_SIZE
73 #define DEBUG_IO_FORCE
74 #endif
75 
79 //#define DEBUG_IO_CHARGE
80 
81 #ifdef DEBUG_IO_CHARGE
82 #define DEBUG_IO_FORCE
83 #endif
84 
88 //#define DEBUG_IO_PDB
89 
93 //#define DEBUG_DATAMARSHAL
94 
98 //#define DEBUG_DELPHI_MAP
99 
103 //#define DEBUG_DELPHI_SPACE
104 
108 //#define DEBUG_DELPHI_SOLVER
109 
110 #ifdef DEBUG_DELPHI_SOLVER
111 #define DEBUG_DELPHI_SOLVER_MKDBSF1
112 #define DEBUG_DELPHI_SOLVER_MKDBSF
113 #define DEBUG_DELPHI_SOLVER_ITIT
114 #define DEBUG_DELPHI_SOLVER_RELFAC
115 #define DEBUG_DELPHI_SOLVER_SETBC
116 #define DEBUG_DELPHI_SOLVER_SETCRG
117 #endif
118 
122 //#define DEBUG_DELPHI_ENERGY
123 
127 //#define DEBUG_DELPHI_SITE
128 
132 //#define DEBUG_MCCE
133 
137 //#define DEBUG_OBJECT
138 
139 }
140 
141 using namespace delphi;
142 
143 #endif //ENVIRONMENT_H_
Definition: environment.h:45