kernel.hh
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef __GECODE_KERNEL_HH__
00043 #define __GECODE_KERNEL_HH__
00044
00045 #include <cstddef>
00046 #include <cstdlib>
00047 #include <cstring>
00048 #include <cassert>
00049
00050 #include "gecode/support.hh"
00051
00052
00053
00054
00055
00056 #if !defined(GECODE_STATIC_LIBS) && \
00057 (defined(__CYGWIN__) || defined(__MINGW32__) || defined(_MSC_VER))
00058
00059 #ifdef GECODE_BUILD_KERNEL
00060 #define GECODE_KERNEL_EXPORT __declspec( dllexport )
00061 #else
00062 #define GECODE_KERNEL_EXPORT __declspec( dllimport )
00063 #endif
00064
00065 #else
00066
00067 #ifdef GECODE_GCC_HAS_CLASS_VISIBILITY
00068 #define GECODE_KERNEL_EXPORT __attribute__ ((visibility("default")))
00069 #else
00070 #define GECODE_KERNEL_EXPORT
00071 #endif
00072
00073 #endif
00074
00088
00089
00090
00091
00092
00093 #include "gecode/kernel/exception.icc"
00094
00095
00096
00097
00098
00099
00100
00101
00102 #include "gecode/kernel/memory-manager.icc"
00103
00104
00105
00106
00107
00108
00109
00110
00111 #include "gecode/kernel/macros.icc"
00112
00113
00114
00115
00116
00117
00118 #include "gecode/kernel/core.icc"
00119 #include "gecode/kernel/modevent.icc"
00120
00121
00122
00123
00124
00125
00126 #include "gecode/kernel/var-traits.icc"
00127
00128
00129
00130
00131
00132
00133 #include "gecode/kernel/var.icc"
00134
00135
00136
00137
00138
00139
00140 #include "gecode/kernel/reflection.icc"
00141
00142
00143
00144
00145
00146
00147 #include "gecode/kernel/view.icc"
00148
00149
00150
00151
00152
00153
00154 #include "gecode/kernel/array.icc"
00155
00156
00157
00158
00159
00160
00161 #include "gecode/kernel/var-map.icc"
00162
00163
00164
00165
00166
00167
00168 #include "gecode/kernel/shared-array.icc"
00169
00170
00171
00172
00173
00174
00175 #include "gecode/kernel/propagator.icc"
00176 #include "gecode/kernel/advisor.icc"
00177 #include "gecode/kernel/branching.icc"
00178
00179
00180
00181
00182
00183
00184 #include "gecode/kernel/var-imp.icc"
00185
00186 #endif
00187
00188