2008-03-26 09:13:11 +00:00
|
|
|
#ifndef EIGEN_CORE_H
|
|
|
|
|
#define EIGEN_CORE_H
|
|
|
|
|
|
2008-05-12 18:09:30 +00:00
|
|
|
#include "CoreDeclarations"
|
2008-05-05 10:23:29 +00:00
|
|
|
#include <iostream>
|
2008-08-03 15:44:06 +00:00
|
|
|
#include <cstring>
|
2008-05-03 12:21:23 +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
|
|
|
|
|
|
2007-12-28 16:20:00 +00:00
|
|
|
namespace Eigen {
|
|
|
|
|
|
|
|
|
|
#include "src/Core/NumTraits.h"
|
|
|
|
|
#include "src/Core/MathFunctions.h"
|
2008-05-12 08:30:42 +00:00
|
|
|
#include "src/Core/DummyPacketMath.h"
|
|
|
|
|
|
2008-05-05 17:19:47 +00:00
|
|
|
#if defined EIGEN_VECTORIZE_SSE
|
2008-05-12 08:30:42 +00:00
|
|
|
#include "src/Core/arch/SSE/PacketMath.h"
|
2008-05-05 17:19:47 +00:00
|
|
|
#elif defined EIGEN_VECTORIZE_ALTIVEC
|
2008-05-12 08:30:42 +00:00
|
|
|
#include "src/Core/arch/AltiVec/PacketMath.h"
|
2008-05-05 17:19:47 +00:00
|
|
|
#endif
|
|
|
|
|
|
2008-05-12 17:34:46 +00:00
|
|
|
#ifndef EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD
|
|
|
|
|
#define EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD 16
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-04-09 12:31:55 +00:00
|
|
|
#include "src/Core/Functors.h"
|
2007-12-28 16:20:00 +00:00
|
|
|
#include "src/Core/MatrixBase.h"
|
|
|
|
|
#include "src/Core/Coeffs.h"
|
2008-06-02 19:29:23 +00: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 09:01:28 +00:00
|
|
|
#include "src/Core/Assign.h"
|
2008-06-02 19:29:23 +00:00
|
|
|
#endif
|
2008-02-29 10:55:53 +00:00
|
|
|
#include "src/Core/MatrixStorage.h"
|
2008-05-28 05:14:16 +00:00
|
|
|
#include "src/Core/NestByValue.h"
|
2008-05-14 08:20:15 +00:00
|
|
|
#include "src/Core/Flagged.h"
|
2007-12-28 16:20:00 +00:00
|
|
|
#include "src/Core/Matrix.h"
|
2008-07-08 00:49:10 +00:00
|
|
|
#include "src/Core/Cwise.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-07-09 22:30:18 +00:00
|
|
|
#include "src/Core/Dot.h"
|
2008-05-28 04:38:16 +00:00
|
|
|
#include "src/Core/Product.h"
|
2008-06-15 11:54:18 +00:00
|
|
|
#include "src/Core/DiagonalProduct.h"
|
2008-08-09 20:06:25 +00:00
|
|
|
#include "src/Core/SolveTriangular.h"
|
2008-08-09 18:41:24 +00:00
|
|
|
#include "src/Core/MapBase.h"
|
|
|
|
|
#include "src/Core/Map.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/DiagonalMatrix.h"
|
|
|
|
|
#include "src/Core/DiagonalCoeffs.h"
|
2008-06-23 10:32:48 +00:00
|
|
|
#include "src/Core/Sum.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/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-05-27 05:47:30 +00:00
|
|
|
#include "src/Core/Part.h"
|
2008-05-31 23:21:49 +00:00
|
|
|
#include "src/Core/CacheFriendlyProduct.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
|