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 #ifndef __GECODE_KERNEL_HH__
00027 #define __GECODE_KERNEL_HH__
00028
00029 #include <cstddef>
00030 #include <cstdlib>
00031 #include <cstring>
00032 #include <cassert>
00033
00034 #include "gecode/config.icc"
00035
00036
00037
00038
00039
00040
00041 #if !defined(GECODE_STATIC_LIBS) && \
00042 (defined(__CYGWIN__) || defined(__MINGW32__) || defined(_MSC_VER))
00043
00044 #ifdef GECODE_BUILD_KERNEL
00045 #define GECODE_KERNEL_EXPORT __declspec( dllexport )
00046 #else
00047 #define GECODE_KERNEL_EXPORT __declspec( dllimport )
00048 #endif
00049
00050 #else
00051
00052 #ifdef GCC_HASCLASSVISIBILITY
00053
00054 #define GECODE_KERNEL_EXPORT __attribute__ ((visibility("default")))
00055
00056 #else
00057
00058 #define GECODE_KERNEL_EXPORT
00059
00060 #endif
00061 #endif
00062
00076
00077
00078
00079
00080
00081 #include "gecode/kernel/exception.icc"
00082
00083
00084
00085
00086
00087
00088
00089
00090 #include "gecode/kernel/memory.icc"
00091 #include "gecode/kernel/memory-manager.icc"
00092
00093
00094
00095
00096
00097
00098
00099
00100 #include "gecode/kernel/macros.icc"
00101
00102
00103
00104
00105
00106
00107 #include "gecode/kernel/core.icc"
00108 #include "gecode/kernel/modevent.icc"
00109
00110
00111
00112
00113
00114
00115
00116 #include "gecode/kernel/view.icc"
00117
00118
00119
00120
00121
00122
00123
00124
00125 #include "gecode/kernel/array.icc"
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135 #include "gecode/kernel/propagator.icc"
00136 #include "gecode/kernel/branching.icc"
00137
00138 #endif
00139
00140
00141