2008-03-26 09:13:11 +00:00
|
|
|
#ifndef EIGEN_CORE_H
|
|
|
|
|
#define EIGEN_CORE_H
|
|
|
|
|
|
2008-04-10 12:34:22 +00:00
|
|
|
#ifndef EIGEN_DONT_VECTORIZE
|
2008-04-25 15:46:18 +00:00
|
|
|
#if ((defined __SSE2__) && ( (!defined __GNUC__) || (__GNUC__>=4 && __GNUC_MINOR__>=2)))
|
2008-04-10 09:41:13 +00:00
|
|
|
#define EIGEN_VECTORIZE
|
|
|
|
|
#define EIGEN_VECTORIZE_SSE
|
|
|
|
|
#include <emmintrin.h>
|
|
|
|
|
#include <xmmintrin.h>
|
|
|
|
|
#endif
|
2008-04-10 12:34:22 +00:00
|
|
|
#endif
|
2008-04-10 09:41:13 +00:00
|
|
|
|
2008-05-02 13:30:12 +00:00
|
|
|
#ifdef EIGEN_VECTORIZE
|
|
|
|
|
// it seems we cannot assume posix_memalign is defined in the stdlib header
|
|
|
|
|
extern "C" int posix_memalign (void **, size_t, size_t) throw ();
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-02-28 12:38:12 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
|
#include <cmath>
|
2007-12-28 16:20:00 +00:00
|
|
|
#include <complex>
|
|
|
|
|
#include <cassert>
|
2008-01-03 19:36:32 +00:00
|
|
|
#include <iostream>
|
2007-12-28 16:20:00 +00:00
|
|
|
|
|
|
|
|
namespace Eigen {
|
|
|
|
|
|
2008-04-10 09:41:13 +00:00
|
|
|
#include "src/Core/util/Macros.h"
|
|
|
|
|
#include "src/Core/util/Constants.h"
|
2008-04-10 09:01:28 +00:00
|
|
|
#include "src/Core/util/ForwardDeclarations.h"
|
2008-04-10 09:41:13 +00:00
|
|
|
#include "src/Core/util/Meta.h"
|
|
|
|
|
|
2007-12-28 16:20:00 +00:00
|
|
|
#include "src/Core/NumTraits.h"
|
|
|
|
|
#include "src/Core/MathFunctions.h"
|
2008-04-09 12:31:55 +00:00
|
|
|
#include "src/Core/PacketMath.h"
|
|
|
|
|
#include "src/Core/Functors.h"
|
2007-12-28 16:20:00 +00:00
|
|
|
#include "src/Core/MatrixBase.h"
|
|
|
|
|
#include "src/Core/Coeffs.h"
|
2008-04-10 09:01:28 +00:00
|
|
|
#include "src/Core/Assign.h"
|
2008-02-29 10:55:53 +00:00
|
|
|
#include "src/Core/MatrixStorage.h"
|
2007-12-28 16:20:00 +00:00
|
|
|
#include "src/Core/Matrix.h"
|
2008-03-31 16:20:06 +00:00
|
|
|
#include "src/Core/Lazy.h"
|
2008-04-05 11:10:54 +00:00
|
|
|
#include "src/Core/Temporary.h"
|
2008-02-29 14:35:14 +00:00
|
|
|
#include "src/Core/CwiseBinaryOp.h"
|
2008-03-03 10:52:44 +00:00
|
|
|
#include "src/Core/CwiseUnaryOp.h"
|
2008-04-24 18:35:39 +00:00
|
|
|
#include "src/Core/CwiseNullaryOp.h"
|
2008-01-11 07:16:18 +00:00
|
|
|
#include "src/Core/Product.h"
|
2007-12-28 16:20:00 +00:00
|
|
|
#include "src/Core/Block.h"
|
|
|
|
|
#include "src/Core/Minor.h"
|
|
|
|
|
#include "src/Core/Transpose.h"
|
|
|
|
|
#include "src/Core/Dot.h"
|
|
|
|
|
#include "src/Core/DiagonalMatrix.h"
|
|
|
|
|
#include "src/Core/DiagonalCoeffs.h"
|
2008-03-16 14:36:25 +00:00
|
|
|
#include "src/Core/Redux.h"
|
|
|
|
|
#include "src/Core/Visitor.h"
|
2007-12-28 16:20:00 +00:00
|
|
|
#include "src/Core/Fuzzy.h"
|
|
|
|
|
#include "src/Core/Map.h"
|
|
|
|
|
#include "src/Core/IO.h"
|
2008-01-15 13:55:47 +00:00
|
|
|
#include "src/Core/Swap.h"
|
2008-03-08 19:02:24 +00:00
|
|
|
#include "src/Core/CommaInitializer.h"
|
2008-04-26 18:26:05 +00:00
|
|
|
#include "src/Core/Triangular.h"
|
2008-04-26 19:20:26 +00:00
|
|
|
#include "src/Core/TriangularAssign.h"
|
2007-12-28 16:20:00 +00:00
|
|
|
|
|
|
|
|
} // namespace Eigen
|
2008-03-03 10:52:44 +00:00
|
|
|
|
2008-03-26 09:13:11 +00:00
|
|
|
#endif // EIGEN_CORE_H
|