2008-03-26 17:13:11 +08:00
|
|
|
#ifndef EIGEN_CORE_H
|
|
|
|
#define EIGEN_CORE_H
|
|
|
|
|
2008-05-13 02:09:30 +08:00
|
|
|
#include "CoreDeclarations"
|
2008-05-05 18:23:29 +08:00
|
|
|
#include <iostream>
|
2008-08-03 23:44:06 +08:00
|
|
|
#include <cstring>
|
2008-05-03 20:21:23 +08:00
|
|
|
|
2008-05-02 21:30:12 +08: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
|
|
|
|
|
2007-12-29 00:20:00 +08:00
|
|
|
namespace Eigen {
|
|
|
|
|
|
|
|
#include "src/Core/NumTraits.h"
|
|
|
|
#include "src/Core/MathFunctions.h"
|
2008-05-12 16:30:42 +08:00
|
|
|
#include "src/Core/DummyPacketMath.h"
|
|
|
|
|
2008-05-06 01:19:47 +08:00
|
|
|
#if defined EIGEN_VECTORIZE_SSE
|
2008-05-12 16:30:42 +08:00
|
|
|
#include "src/Core/arch/SSE/PacketMath.h"
|
2008-05-06 01:19:47 +08:00
|
|
|
#elif defined EIGEN_VECTORIZE_ALTIVEC
|
2008-05-12 16:30:42 +08:00
|
|
|
#include "src/Core/arch/AltiVec/PacketMath.h"
|
2008-05-06 01:19:47 +08:00
|
|
|
#endif
|
|
|
|
|
2008-05-13 01:34:46 +08:00
|
|
|
#ifndef EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD
|
|
|
|
#define EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD 16
|
|
|
|
#endif
|
|
|
|
|
2008-04-09 20:31:55 +08:00
|
|
|
#include "src/Core/Functors.h"
|
2007-12-29 00:20:00 +08:00
|
|
|
#include "src/Core/MatrixBase.h"
|
|
|
|
#include "src/Core/Coeffs.h"
|
2008-06-03 03:29:23 +08:00
|
|
|
#ifndef EIGEN_PARSED_BY_DOXYGEN // work around Doxygen bug triggered by Assign.h r814874
|
|
|
|
// at least confirmed with Doxygen 1.5.5 and 1.5.6
|
2008-04-10 17:01:28 +08:00
|
|
|
#include "src/Core/Assign.h"
|
2008-06-03 03:29:23 +08:00
|
|
|
#endif
|
2008-02-29 18:55:53 +08:00
|
|
|
#include "src/Core/MatrixStorage.h"
|
2008-05-28 13:14:16 +08:00
|
|
|
#include "src/Core/NestByValue.h"
|
2008-05-14 16:20:15 +08:00
|
|
|
#include "src/Core/Flagged.h"
|
2007-12-29 00:20:00 +08:00
|
|
|
#include "src/Core/Matrix.h"
|
2008-07-08 08:49:10 +08:00
|
|
|
#include "src/Core/Cwise.h"
|
2008-02-29 22:35:14 +08:00
|
|
|
#include "src/Core/CwiseBinaryOp.h"
|
2008-03-03 18:52:44 +08:00
|
|
|
#include "src/Core/CwiseUnaryOp.h"
|
2008-04-25 02:35:39 +08:00
|
|
|
#include "src/Core/CwiseNullaryOp.h"
|
2008-07-10 06:30:18 +08:00
|
|
|
#include "src/Core/Dot.h"
|
2008-05-28 12:38:16 +08:00
|
|
|
#include "src/Core/Product.h"
|
2008-06-15 19:54:18 +08:00
|
|
|
#include "src/Core/DiagonalProduct.h"
|
2008-07-27 04:40:29 +08:00
|
|
|
#include "src/Core/InverseProduct.h"
|
2007-12-29 00:20:00 +08:00
|
|
|
#include "src/Core/Block.h"
|
|
|
|
#include "src/Core/Minor.h"
|
|
|
|
#include "src/Core/Transpose.h"
|
|
|
|
#include "src/Core/DiagonalMatrix.h"
|
|
|
|
#include "src/Core/DiagonalCoeffs.h"
|
2008-06-23 18:32:48 +08:00
|
|
|
#include "src/Core/Sum.h"
|
2008-03-16 22:36:25 +08:00
|
|
|
#include "src/Core/Redux.h"
|
|
|
|
#include "src/Core/Visitor.h"
|
2007-12-29 00:20:00 +08:00
|
|
|
#include "src/Core/Fuzzy.h"
|
|
|
|
#include "src/Core/Map.h"
|
|
|
|
#include "src/Core/IO.h"
|
2008-01-15 21:55:47 +08:00
|
|
|
#include "src/Core/Swap.h"
|
2008-03-09 03:02:24 +08:00
|
|
|
#include "src/Core/CommaInitializer.h"
|
2008-05-27 13:47:30 +08:00
|
|
|
#include "src/Core/Part.h"
|
2008-06-01 07:21:49 +08:00
|
|
|
#include "src/Core/CacheFriendlyProduct.h"
|
|
|
|
|
2007-12-29 00:20:00 +08:00
|
|
|
} // namespace Eigen
|
2008-03-03 18:52:44 +08:00
|
|
|
|
2008-03-26 17:13:11 +08:00
|
|
|
#endif // EIGEN_CORE_H
|