00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef EIGEN_MACROS_H
00012 #define EIGEN_MACROS_H
00013
00014 #define EIGEN_WORLD_VERSION 3
00015 #define EIGEN_MAJOR_VERSION 2
00016 #define EIGEN_MINOR_VERSION 0
00017
00018 #define EIGEN_VERSION_AT_LEAST(x,y,z) (EIGEN_WORLD_VERSION>x || (EIGEN_WORLD_VERSION>=x && \
00019 (EIGEN_MAJOR_VERSION>y || (EIGEN_MAJOR_VERSION>=y && \
00020 EIGEN_MINOR_VERSION>=z))))
00021 #ifdef __GNUC__
00022 #define EIGEN_GNUC_AT_LEAST(x,y) ((__GNUC__==x && __GNUC_MINOR__>=y) || __GNUC__>x)
00023 #else
00024 #define EIGEN_GNUC_AT_LEAST(x,y) 0
00025 #endif
00026
00027 #ifdef __GNUC__
00028 #define EIGEN_GNUC_AT_MOST(x,y) ((__GNUC__==x && __GNUC_MINOR__<=y) || __GNUC__<x)
00029 #else
00030 #define EIGEN_GNUC_AT_MOST(x,y) 0
00031 #endif
00032
00033 #if EIGEN_GNUC_AT_MOST(4,3) && !defined(__clang__)
00034
00035 #define EIGEN_SAFE_TO_USE_STANDARD_ASSERT_MACRO 0
00036 #else
00037 #define EIGEN_SAFE_TO_USE_STANDARD_ASSERT_MACRO 1
00038 #endif
00039
00040 #if defined(__GNUC__) && (__GNUC__ <= 3)
00041 #define EIGEN_GCC3_OR_OLDER 1
00042 #else
00043 #define EIGEN_GCC3_OR_OLDER 0
00044 #endif
00045
00046
00047
00048
00049
00050
00051
00052
00053 #if defined(__GNUC__) && !(defined(__i386__) || defined(__x86_64__) || defined(__powerpc__) || defined(__ppc__) || defined(__ia64__))
00054 #define EIGEN_GCC_AND_ARCH_DOESNT_WANT_STACK_ALIGNMENT 1
00055 #else
00056 #define EIGEN_GCC_AND_ARCH_DOESNT_WANT_STACK_ALIGNMENT 0
00057 #endif
00058
00059
00060 #if !EIGEN_GCC_AND_ARCH_DOESNT_WANT_STACK_ALIGNMENT \
00061 && !EIGEN_GCC3_OR_OLDER \
00062 && !defined(__SUNPRO_CC) \
00063 && !defined(__QNXNTO__)
00064 #define EIGEN_ARCH_WANTS_STACK_ALIGNMENT 1
00065 #else
00066 #define EIGEN_ARCH_WANTS_STACK_ALIGNMENT 0
00067 #endif
00068
00069 #ifdef EIGEN_DONT_ALIGN
00070 #ifndef EIGEN_DONT_ALIGN_STATICALLY
00071 #define EIGEN_DONT_ALIGN_STATICALLY
00072 #endif
00073 #define EIGEN_ALIGN 0
00074 #else
00075 #define EIGEN_ALIGN 1
00076 #endif
00077
00078
00079
00080 #if EIGEN_ARCH_WANTS_STACK_ALIGNMENT && !defined(EIGEN_DONT_ALIGN_STATICALLY)
00081 #define EIGEN_ALIGN_STATICALLY 1
00082 #else
00083 #define EIGEN_ALIGN_STATICALLY 0
00084 #ifndef EIGEN_DISABLE_UNALIGNED_ARRAY_ASSERT
00085 #define EIGEN_DISABLE_UNALIGNED_ARRAY_ASSERT
00086 #endif
00087 #endif
00088
00089 #ifdef EIGEN_DEFAULT_TO_ROW_MAJOR
00090 #define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION RowMajor
00091 #else
00092 #define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION ColMajor
00093 #endif
00094
00095 #ifndef EIGEN_DEFAULT_DENSE_INDEX_TYPE
00096 #define EIGEN_DEFAULT_DENSE_INDEX_TYPE std::ptrdiff_t
00097 #endif
00098
00104 #ifndef EIGEN_FAST_MATH
00105 #define EIGEN_FAST_MATH 1
00106 #endif
00107
00108 #define EIGEN_DEBUG_VAR(x) std::cerr << #x << " = " << x << std::endl;
00109
00110
00111 #define EIGEN_CAT2(a,b) a ## b
00112 #define EIGEN_CAT(a,b) EIGEN_CAT2(a,b)
00113
00114
00115 #define EIGEN_MAKESTRING2(a) #a
00116 #define EIGEN_MAKESTRING(a) EIGEN_MAKESTRING2(a)
00117
00118
00119
00120
00121 #if (defined _MSC_VER) || (defined __INTEL_COMPILER)
00122 #define EIGEN_STRONG_INLINE __forceinline
00123 #else
00124 #define EIGEN_STRONG_INLINE inline
00125 #endif
00126
00127
00128
00129
00130
00131
00132
00133
00134 #if EIGEN_GNUC_AT_LEAST(4,0)
00135 #define EIGEN_ALWAYS_INLINE __attribute__((always_inline)) inline
00136 #else
00137 #define EIGEN_ALWAYS_INLINE EIGEN_STRONG_INLINE
00138 #endif
00139
00140 #if (defined __GNUC__)
00141 #define EIGEN_DONT_INLINE __attribute__((noinline))
00142 #elif (defined _MSC_VER)
00143 #define EIGEN_DONT_INLINE __declspec(noinline)
00144 #else
00145 #define EIGEN_DONT_INLINE
00146 #endif
00147
00148 #if (defined __GNUC__)
00149 #define EIGEN_PERMISSIVE_EXPR __extension__
00150 #else
00151 #define EIGEN_PERMISSIVE_EXPR
00152 #endif
00153
00154
00155
00156
00157
00158 #define EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS
00159 #define EIGEN_DEFINE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS inline
00160
00161 #ifdef NDEBUG
00162 # ifndef EIGEN_NO_DEBUG
00163 # define EIGEN_NO_DEBUG
00164 # endif
00165 #endif
00166
00167
00168 #ifdef EIGEN_NO_DEBUG
00169 #define eigen_plain_assert(x)
00170 #else
00171 #if EIGEN_SAFE_TO_USE_STANDARD_ASSERT_MACRO
00172 namespace Eigen {
00173 namespace internal {
00174 inline bool copy_bool(bool b) { return b; }
00175 }
00176 }
00177 #define eigen_plain_assert(x) assert(x)
00178 #else
00179
00180 #include <cstdlib>
00181 #include <iostream>
00182
00183 namespace Eigen {
00184 namespace internal {
00185
00186
00187 namespace {
00188 EIGEN_DONT_INLINE bool copy_bool(bool b) { return b; }
00189 }
00190 inline void assert_fail(const char *condition, const char *function, const char *file, int line)
00191 {
00192 std::cerr << "assertion failed: " << condition << " in function " << function << " at " << file << ":" << line << std::endl;
00193 abort();
00194 }
00195 }
00196 }
00197 #define eigen_plain_assert(x) \
00198 do { \
00199 if(!Eigen::internal::copy_bool(x)) \
00200 Eigen::internal::assert_fail(EIGEN_MAKESTRING(x), __PRETTY_FUNCTION__, __FILE__, __LINE__); \
00201 } while(false)
00202 #endif
00203 #endif
00204
00205
00206 #ifndef eigen_assert
00207 #define eigen_assert(x) eigen_plain_assert(x)
00208 #endif
00209
00210 #ifdef EIGEN_INTERNAL_DEBUGGING
00211 #define eigen_internal_assert(x) eigen_assert(x)
00212 #else
00213 #define eigen_internal_assert(x)
00214 #endif
00215
00216 #ifdef EIGEN_NO_DEBUG
00217 #define EIGEN_ONLY_USED_FOR_DEBUG(x) (void)x
00218 #else
00219 #define EIGEN_ONLY_USED_FOR_DEBUG(x)
00220 #endif
00221
00222 #ifndef EIGEN_NO_DEPRECATED_WARNING
00223 #if (defined __GNUC__)
00224 #define EIGEN_DEPRECATED __attribute__((deprecated))
00225 #elif (defined _MSC_VER)
00226 #define EIGEN_DEPRECATED __declspec(deprecated)
00227 #else
00228 #define EIGEN_DEPRECATED
00229 #endif
00230 #else
00231 #define EIGEN_DEPRECATED
00232 #endif
00233
00234 #if (defined __GNUC__)
00235 #define EIGEN_UNUSED __attribute__((unused))
00236 #else
00237 #define EIGEN_UNUSED
00238 #endif
00239
00240
00241 #define EIGEN_UNUSED_VARIABLE(var) (void)var;
00242
00243 #if !defined(EIGEN_ASM_COMMENT)
00244 #if (defined __GNUC__) && ( defined(__i386__) || defined(__x86_64__) )
00245 #define EIGEN_ASM_COMMENT(X) asm("#" X)
00246 #else
00247 #define EIGEN_ASM_COMMENT(X)
00248 #endif
00249 #endif
00250
00251
00252
00253
00254
00255
00256
00257
00258 #if (defined __GNUC__) || (defined __PGI) || (defined __IBMCPP__) || (defined __ARMCC_VERSION)
00259 #define EIGEN_ALIGN_TO_BOUNDARY(n) __attribute__((aligned(n)))
00260 #elif (defined _MSC_VER)
00261 #define EIGEN_ALIGN_TO_BOUNDARY(n) __declspec(align(n))
00262 #elif (defined __SUNPRO_CC)
00263
00264 #define EIGEN_ALIGN_TO_BOUNDARY(n) __attribute__((aligned(n)))
00265 #else
00266 #error Please tell me what is the equivalent of __attribute__((aligned(n))) for your compiler
00267 #endif
00268
00269 #define EIGEN_ALIGN16 EIGEN_ALIGN_TO_BOUNDARY(16)
00270
00271 #if EIGEN_ALIGN_STATICALLY
00272 #define EIGEN_USER_ALIGN_TO_BOUNDARY(n) EIGEN_ALIGN_TO_BOUNDARY(n)
00273 #define EIGEN_USER_ALIGN16 EIGEN_ALIGN16
00274 #else
00275 #define EIGEN_USER_ALIGN_TO_BOUNDARY(n)
00276 #define EIGEN_USER_ALIGN16
00277 #endif
00278
00279 #ifdef EIGEN_DONT_USE_RESTRICT_KEYWORD
00280 #define EIGEN_RESTRICT
00281 #endif
00282 #ifndef EIGEN_RESTRICT
00283 #define EIGEN_RESTRICT __restrict
00284 #endif
00285
00286 #ifndef EIGEN_STACK_ALLOCATION_LIMIT
00287 #define EIGEN_STACK_ALLOCATION_LIMIT 20000
00288 #endif
00289
00290 #ifndef EIGEN_DEFAULT_IO_FORMAT
00291 #ifdef EIGEN_MAKING_DOCS
00292
00293
00294 #define EIGEN_DEFAULT_IO_FORMAT Eigen::IOFormat(3, 0, " ", "\n", "", "")
00295 #else
00296 #define EIGEN_DEFAULT_IO_FORMAT Eigen::IOFormat()
00297 #endif
00298 #endif
00299
00300
00301 #define EIGEN_EMPTY
00302
00303 #if defined(_MSC_VER) && (!defined(__INTEL_COMPILER))
00304 #define EIGEN_INHERIT_ASSIGNMENT_EQUAL_OPERATOR(Derived) \
00305 using Base::operator =;
00306 #elif defined(__clang__) // workaround clang bug (see http://forum.kde.org/viewtopic.php?f=74&t=102653)
00307 #define EIGEN_INHERIT_ASSIGNMENT_EQUAL_OPERATOR(Derived) \
00308 using Base::operator =; \
00309 EIGEN_STRONG_INLINE Derived& operator=(const Derived& other) { Base::operator=(other); return *this; } \
00310 template <typename OtherDerived> \
00311 EIGEN_STRONG_INLINE Derived& operator=(const DenseBase<OtherDerived>& other) { Base::operator=(other.derived()); return *this; }
00312 #else
00313 #define EIGEN_INHERIT_ASSIGNMENT_EQUAL_OPERATOR(Derived) \
00314 using Base::operator =; \
00315 EIGEN_STRONG_INLINE Derived& operator=(const Derived& other) \
00316 { \
00317 Base::operator=(other); \
00318 return *this; \
00319 }
00320 #endif
00321
00322 #define EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Derived) \
00323 EIGEN_INHERIT_ASSIGNMENT_EQUAL_OPERATOR(Derived)
00324
00333 #define EIGEN_GENERIC_PUBLIC_INTERFACE(Derived) \
00334 typedef typename Eigen::internal::traits<Derived>::Scalar Scalar; \
00335 typedef typename Eigen::NumTraits<Scalar>::Real RealScalar; \
00336 typedef typename Base::CoeffReturnType CoeffReturnType; \
00337 typedef typename Eigen::internal::nested<Derived>::type Nested; \
00338 typedef typename Eigen::internal::traits<Derived>::StorageKind StorageKind; \
00339 typedef typename Eigen::internal::traits<Derived>::Index Index; \
00340 enum { RowsAtCompileTime = Eigen::internal::traits<Derived>::RowsAtCompileTime, \
00341 ColsAtCompileTime = Eigen::internal::traits<Derived>::ColsAtCompileTime, \
00342 Flags = Eigen::internal::traits<Derived>::Flags, \
00343 CoeffReadCost = Eigen::internal::traits<Derived>::CoeffReadCost, \
00344 SizeAtCompileTime = Base::SizeAtCompileTime, \
00345 MaxSizeAtCompileTime = Base::MaxSizeAtCompileTime, \
00346 IsVectorAtCompileTime = Base::IsVectorAtCompileTime };
00347
00348
00349 #define EIGEN_DENSE_PUBLIC_INTERFACE(Derived) \
00350 typedef typename Eigen::internal::traits<Derived>::Scalar Scalar; \
00351 typedef typename Eigen::NumTraits<Scalar>::Real RealScalar; \
00352 typedef typename Base::PacketScalar PacketScalar; \
00353 typedef typename Base::CoeffReturnType CoeffReturnType; \
00354 typedef typename Eigen::internal::nested<Derived>::type Nested; \
00355 typedef typename Eigen::internal::traits<Derived>::StorageKind StorageKind; \
00356 typedef typename Eigen::internal::traits<Derived>::Index Index; \
00357 enum { RowsAtCompileTime = Eigen::internal::traits<Derived>::RowsAtCompileTime, \
00358 ColsAtCompileTime = Eigen::internal::traits<Derived>::ColsAtCompileTime, \
00359 MaxRowsAtCompileTime = Eigen::internal::traits<Derived>::MaxRowsAtCompileTime, \
00360 MaxColsAtCompileTime = Eigen::internal::traits<Derived>::MaxColsAtCompileTime, \
00361 Flags = Eigen::internal::traits<Derived>::Flags, \
00362 CoeffReadCost = Eigen::internal::traits<Derived>::CoeffReadCost, \
00363 SizeAtCompileTime = Base::SizeAtCompileTime, \
00364 MaxSizeAtCompileTime = Base::MaxSizeAtCompileTime, \
00365 IsVectorAtCompileTime = Base::IsVectorAtCompileTime }; \
00366 using Base::derived; \
00367 using Base::const_cast_derived;
00368
00369
00370 #define EIGEN_PLAIN_ENUM_MIN(a,b) (((int)a <= (int)b) ? (int)a : (int)b)
00371 #define EIGEN_PLAIN_ENUM_MAX(a,b) (((int)a >= (int)b) ? (int)a : (int)b)
00372
00373
00374
00375
00376 #define EIGEN_SIZE_MIN_PREFER_DYNAMIC(a,b) (((int)a == 0 || (int)b == 0) ? 0 \
00377 : ((int)a == 1 || (int)b == 1) ? 1 \
00378 : ((int)a == Dynamic || (int)b == Dynamic) ? Dynamic \
00379 : ((int)a <= (int)b) ? (int)a : (int)b)
00380
00381
00382
00383
00384 #define EIGEN_SIZE_MIN_PREFER_FIXED(a,b) (((int)a == 0 || (int)b == 0) ? 0 \
00385 : ((int)a == 1 || (int)b == 1) ? 1 \
00386 : ((int)a == Dynamic && (int)b == Dynamic) ? Dynamic \
00387 : ((int)a == Dynamic) ? (int)b \
00388 : ((int)b == Dynamic) ? (int)a \
00389 : ((int)a <= (int)b) ? (int)a : (int)b)
00390
00391
00392 #define EIGEN_SIZE_MAX(a,b) (((int)a == Dynamic || (int)b == Dynamic) ? Dynamic \
00393 : ((int)a >= (int)b) ? (int)a : (int)b)
00394
00395 #define EIGEN_LOGICAL_XOR(a,b) (((a) || (b)) && !((a) && (b)))
00396
00397 #define EIGEN_IMPLIES(a,b) (!(a) || (b))
00398
00399 #define EIGEN_MAKE_CWISE_BINARY_OP(METHOD,FUNCTOR) \
00400 template<typename OtherDerived> \
00401 EIGEN_STRONG_INLINE const CwiseBinaryOp<FUNCTOR<Scalar>, const Derived, const OtherDerived> \
00402 (METHOD)(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const \
00403 { \
00404 return CwiseBinaryOp<FUNCTOR<Scalar>, const Derived, const OtherDerived>(derived(), other.derived()); \
00405 }
00406
00407
00408 #define EIGEN_CWISE_PRODUCT_RETURN_TYPE(LHS,RHS) \
00409 CwiseBinaryOp< \
00410 internal::scalar_product_op< \
00411 typename internal::traits<LHS>::Scalar, \
00412 typename internal::traits<RHS>::Scalar \
00413 >, \
00414 const LHS, \
00415 const RHS \
00416 >
00417
00418 #endif // EIGEN_MACROS_H