diff --git a/Eigen/Cholesky b/Eigen/Cholesky index 7d209966f..0a75159a1 100644 --- a/Eigen/Cholesky +++ b/Eigen/Cholesky @@ -22,7 +22,6 @@ namespace Eigen { */ #include "src/misc/Solve.h" -#include "src/Array/Functors.h" #include "src/Cholesky/LLT.h" #include "src/Cholesky/LDLT.h" diff --git a/Eigen/Core b/Eigen/Core index 70c2c2207..66b3b95da 100644 --- a/Eigen/Core +++ b/Eigen/Core @@ -287,21 +287,19 @@ using std::size_t; #include "src/Core/products/TriangularSolverMatrix.h" #include "src/Core/BandMatrix.h" -#include "src/Array/Functors.h" -#include "src/Array/BooleanRedux.h" -#include "src/Array/Select.h" -#include "src/Array/VectorwiseOp.h" -#include "src/Array/Random.h" -#include "src/Array/Norms.h" -#include "src/Array/Replicate.h" -#include "src/Array/Reverse.h" -#include "src/Array/ArrayBase.h" -#include "src/Array/ArrayWrapper.h" -#include "src/Array/Array.h" +#include "src/Core/BooleanRedux.h" +#include "src/Core/Select.h" +#include "src/Core/VectorwiseOp.h" +#include "src/Core/Random.h" +#include "src/Core/Replicate.h" +#include "src/Core/Reverse.h" +#include "src/Core/ArrayBase.h" +#include "src/Core/ArrayWrapper.h" +#include "src/Core/Array.h" } // namespace Eigen -#include "src/Array/GlobalFunctions.h" +#include "src/Core/GlobalFunctions.h" #include "src/Core/util/EnableMSVCWarnings.h" diff --git a/Eigen/src/Array/CMakeLists.txt b/Eigen/src/Array/CMakeLists.txt deleted file mode 100644 index 0a6d300ce..000000000 --- a/Eigen/src/Array/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -FILE(GLOB Eigen_Array_SRCS "*.h") - -INSTALL(FILES - ${Eigen_Array_SRCS} - DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/Array COMPONENT Devel - ) diff --git a/Eigen/src/Array/Functors.h b/Eigen/src/Array/Functors.h deleted file mode 100644 index 15fde9ece..000000000 --- a/Eigen/src/Array/Functors.h +++ /dev/null @@ -1,270 +0,0 @@ -// This file is part of Eigen, a lightweight C++ template library -// for linear algebra. -// -// Copyright (C) 2008 Gael Guennebaud -// -// Eigen is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 3 of the License, or (at your option) any later version. -// -// Alternatively, you can redistribute it and/or -// modify it under the terms of the GNU General Public License as -// published by the Free Software Foundation; either version 2 of -// the License, or (at your option) any later version. -// -// Eigen is distributed in the hope that it will be useful, but WITHOUT ANY -// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public -// License and a copy of the GNU General Public License along with -// Eigen. If not, see . - -#ifndef EIGEN_ARRAY_FUNCTORS_H -#define EIGEN_ARRAY_FUNCTORS_H - -/** \internal - * \brief Template functor to add a scalar to a fixed other one - * \sa class CwiseUnaryOp, Array::operator+ - */ -/* If you wonder why doing the ei_pset1() in packetOp() is an optimization check ei_scalar_multiple_op */ -template -struct ei_scalar_add_op { - typedef typename ei_packet_traits::type PacketScalar; - // FIXME default copy constructors seems bugged with std::complex<> - inline ei_scalar_add_op(const ei_scalar_add_op& other) : m_other(other.m_other) { } - inline ei_scalar_add_op(const Scalar& other) : m_other(other) { } - inline Scalar operator() (const Scalar& a) const { return a + m_other; } - inline const PacketScalar packetOp(const PacketScalar& a) const - { return ei_padd(a, ei_pset1(m_other)); } - const Scalar m_other; -}; -template -struct ei_functor_traits > -{ enum { Cost = NumTraits::AddCost, PacketAccess = ei_packet_traits::size>1 }; }; - -/** \internal - * \brief Template functor to compute the square root of a scalar - * \sa class CwiseUnaryOp, Cwise::sqrt() - */ -template struct ei_scalar_sqrt_op { - EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_sqrt_op) - inline const Scalar operator() (const Scalar& a) const { return ei_sqrt(a); } - typedef typename ei_packet_traits::type Packet; - inline Packet packetOp(const Packet& a) const { return ei_psqrt(a); } -}; -template -struct ei_functor_traits > -{ enum { - Cost = 5 * NumTraits::MulCost, - PacketAccess = ei_packet_traits::HasSqrt - }; -}; - -/** \internal - * \brief Template functor to compute the cosine of a scalar - * \sa class CwiseUnaryOp, Cwise::cos() - */ -template struct ei_scalar_cos_op { - EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_cos_op) - inline Scalar operator() (const Scalar& a) const { return ei_cos(a); } - typedef typename ei_packet_traits::type Packet; - inline Packet packetOp(const Packet& a) const { return ei_pcos(a); } -}; -template -struct ei_functor_traits > -{ - enum { - Cost = 5 * NumTraits::MulCost, - PacketAccess = ei_packet_traits::HasCos - }; -}; - -/** \internal - * \brief Template functor to compute the sine of a scalar - * \sa class CwiseUnaryOp, Cwise::sin() - */ -template struct ei_scalar_sin_op { - EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_sin_op) - inline const Scalar operator() (const Scalar& a) const { return ei_sin(a); } - typedef typename ei_packet_traits::type Packet; - inline Packet packetOp(const Packet& a) const { return ei_psin(a); } -}; -template -struct ei_functor_traits > -{ - enum { - Cost = 5 * NumTraits::MulCost, - PacketAccess = ei_packet_traits::HasSin - }; -}; - -/** \internal - * \brief Template functor to raise a scalar to a power - * \sa class CwiseUnaryOp, Cwise::pow - */ -template -struct ei_scalar_pow_op { - // FIXME default copy constructors seems bugged with std::complex<> - inline ei_scalar_pow_op(const ei_scalar_pow_op& other) : m_exponent(other.m_exponent) { } - inline ei_scalar_pow_op(const Scalar& exponent) : m_exponent(exponent) {} - inline Scalar operator() (const Scalar& a) const { return ei_pow(a, m_exponent); } - const Scalar m_exponent; -}; -template -struct ei_functor_traits > -{ enum { Cost = 5 * NumTraits::MulCost, PacketAccess = false }; }; - -/** \internal - * \brief Template functor to compute the inverse of a scalar - * \sa class CwiseUnaryOp, Cwise::inverse() - */ -template -struct ei_scalar_inverse_op { - EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_inverse_op) - inline Scalar operator() (const Scalar& a) const { return Scalar(1)/a; } - template - inline const PacketScalar packetOp(const PacketScalar& a) const - { return ei_pdiv(ei_pset1(Scalar(1)),a); } -}; -template -struct ei_functor_traits > -{ enum { Cost = NumTraits::MulCost, PacketAccess = int(ei_packet_traits::size)>1 }; }; - -/** \internal - * \brief Template functor to compute the square of a scalar - * \sa class CwiseUnaryOp, Cwise::square() - */ -template -struct ei_scalar_square_op { - EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_square_op) - inline Scalar operator() (const Scalar& a) const { return a*a; } - template - inline const PacketScalar packetOp(const PacketScalar& a) const - { return ei_pmul(a,a); } -}; -template -struct ei_functor_traits > -{ enum { Cost = NumTraits::MulCost, PacketAccess = int(ei_packet_traits::size)>1 }; }; - -/** \internal - * \brief Template functor to compute the cube of a scalar - * \sa class CwiseUnaryOp, Cwise::cube() - */ -template -struct ei_scalar_cube_op { - EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_cube_op) - inline Scalar operator() (const Scalar& a) const { return a*a*a; } - template - inline const PacketScalar packetOp(const PacketScalar& a) const - { return ei_pmul(a,ei_pmul(a,a)); } -}; -template -struct ei_functor_traits > -{ enum { Cost = 2*NumTraits::MulCost, PacketAccess = int(ei_packet_traits::size)>1 }; }; - -// default ei_functor_traits for STL functors: - -template -struct ei_functor_traits > -{ enum { Cost = NumTraits::MulCost, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = NumTraits::MulCost, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = NumTraits::AddCost, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = NumTraits::AddCost, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = NumTraits::AddCost, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = ei_functor_traits::Cost, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = ei_functor_traits::Cost, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1 + ei_functor_traits::Cost, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 1 + ei_functor_traits::Cost, PacketAccess = false }; }; - -#ifdef EIGEN_STDEXT_SUPPORT - -template -struct ei_functor_traits > -{ enum { Cost = 0, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = 0, PacketAccess = false }; }; - -template -struct ei_functor_traits > > -{ enum { Cost = 0, PacketAccess = false }; }; - -template -struct ei_functor_traits > > -{ enum { Cost = 0, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = ei_functor_traits::Cost + ei_functor_traits::Cost, PacketAccess = false }; }; - -template -struct ei_functor_traits > -{ enum { Cost = ei_functor_traits::Cost + ei_functor_traits::Cost + ei_functor_traits::Cost, PacketAccess = false }; }; - -#endif // EIGEN_STDEXT_SUPPORT - -#endif // EIGEN_ARRAY_FUNCTORS_H diff --git a/Eigen/src/Array/Norms.h b/Eigen/src/Array/Norms.h deleted file mode 100644 index 8bb5e054c..000000000 --- a/Eigen/src/Array/Norms.h +++ /dev/null @@ -1,78 +0,0 @@ -// This file is part of Eigen, a lightweight C++ template library -// for linear algebra. -// -// Copyright (C) 2008 Benoit Jacob -// -// Eigen is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 3 of the License, or (at your option) any later version. -// -// Alternatively, you can redistribute it and/or -// modify it under the terms of the GNU General Public License as -// published by the Free Software Foundation; either version 2 of -// the License, or (at your option) any later version. -// -// Eigen is distributed in the hope that it will be useful, but WITHOUT ANY -// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public -// License and a copy of the GNU General Public License along with -// Eigen. If not, see . - -#ifndef EIGEN_ARRAY_NORMS_H -#define EIGEN_ARRAY_NORMS_H - -template -struct ei_lpNorm_selector -{ - typedef typename NumTraits::Scalar>::Real RealScalar; - inline static RealScalar run(const MatrixBase& m) - { - return ei_pow(m.cwiseAbs().array().pow(p).sum(), RealScalar(1)/p); - } -}; - -template -struct ei_lpNorm_selector -{ - inline static typename NumTraits::Scalar>::Real run(const MatrixBase& m) - { - return m.cwiseAbs().sum(); - } -}; - -template -struct ei_lpNorm_selector -{ - inline static typename NumTraits::Scalar>::Real run(const MatrixBase& m) - { - return m.norm(); - } -}; - -template -struct ei_lpNorm_selector -{ - inline static typename NumTraits::Scalar>::Real run(const MatrixBase& m) - { - return m.cwiseAbs().maxCoeff(); - } -}; - -/** \returns the \f$ \ell^p \f$ norm of *this, that is, returns the p-th root of the sum of the p-th powers of the absolute values - * of the coefficients of *this. If \a p is the special value \a Eigen::Infinity, this function returns the \f$ \ell^p\infty \f$ - * norm, that is the maximum of the absolute values of the coefficients of *this. - * - * \sa norm() - */ -template -template -inline typename NumTraits::Scalar>::Real MatrixBase::lpNorm() const -{ - return ei_lpNorm_selector::run(*this); -} - -#endif // EIGEN_ARRAY_NORMS_H diff --git a/Eigen/src/CMakeLists.txt b/Eigen/src/CMakeLists.txt index 9009291d9..761c83334 100644 --- a/Eigen/src/CMakeLists.txt +++ b/Eigen/src/CMakeLists.txt @@ -3,7 +3,6 @@ ADD_SUBDIRECTORY(LU) ADD_SUBDIRECTORY(QR) ADD_SUBDIRECTORY(SVD) ADD_SUBDIRECTORY(Cholesky) -ADD_SUBDIRECTORY(Array) ADD_SUBDIRECTORY(Geometry) ADD_SUBDIRECTORY(Sparse) ADD_SUBDIRECTORY(Jacobi) diff --git a/Eigen/src/Array/Array.h b/Eigen/src/Core/Array.h similarity index 100% rename from Eigen/src/Array/Array.h rename to Eigen/src/Core/Array.h diff --git a/Eigen/src/Array/ArrayBase.h b/Eigen/src/Core/ArrayBase.h similarity index 100% rename from Eigen/src/Array/ArrayBase.h rename to Eigen/src/Core/ArrayBase.h diff --git a/Eigen/src/Array/ArrayWrapper.h b/Eigen/src/Core/ArrayWrapper.h similarity index 100% rename from Eigen/src/Array/ArrayWrapper.h rename to Eigen/src/Core/ArrayWrapper.h diff --git a/Eigen/src/Array/BooleanRedux.h b/Eigen/src/Core/BooleanRedux.h similarity index 100% rename from Eigen/src/Array/BooleanRedux.h rename to Eigen/src/Core/BooleanRedux.h diff --git a/Eigen/src/Core/Dot.h b/Eigen/src/Core/Dot.h index dfa313e89..8eaa62185 100644 --- a/Eigen/src/Core/Dot.h +++ b/Eigen/src/Core/Dot.h @@ -80,6 +80,8 @@ MatrixBase::dot(const MatrixBase& other) const return ei_dot_nocheck::run(*this, other); } +//---------- implementation of L2 norm and related functions ---------- + /** \returns the squared \em l2 norm of *this, i.e., for vectors, the dot product of *this with itself. * * \sa dot(), norm() @@ -128,6 +130,61 @@ inline void MatrixBase::normalize() *this /= norm(); } +//---------- implementation of other norms ---------- + +template +struct ei_lpNorm_selector +{ + typedef typename NumTraits::Scalar>::Real RealScalar; + inline static RealScalar run(const MatrixBase& m) + { + return ei_pow(m.cwiseAbs().array().pow(p).sum(), RealScalar(1)/p); + } +}; + +template +struct ei_lpNorm_selector +{ + inline static typename NumTraits::Scalar>::Real run(const MatrixBase& m) + { + return m.cwiseAbs().sum(); + } +}; + +template +struct ei_lpNorm_selector +{ + inline static typename NumTraits::Scalar>::Real run(const MatrixBase& m) + { + return m.norm(); + } +}; + +template +struct ei_lpNorm_selector +{ + inline static typename NumTraits::Scalar>::Real run(const MatrixBase& m) + { + return m.cwiseAbs().maxCoeff(); + } +}; + +/** \returns the \f$ \ell^p \f$ norm of *this, that is, returns the p-th root of the sum of the p-th powers of the absolute values + * of the coefficients of *this. If \a p is the special value \a Eigen::Infinity, this function returns the \f$ \ell^p\infty \f$ + * norm, that is the maximum of the absolute values of the coefficients of *this. + * + * \sa norm() + */ +template +template +inline typename NumTraits::Scalar>::Real +MatrixBase::lpNorm() const +{ + return ei_lpNorm_selector::run(*this); +} + +//---------- implementation of isOrthogonal / isUnitary ---------- + /** \returns true if *this is approximately orthogonal to \a other, * within the precision given by \a prec. * @@ -169,4 +226,5 @@ bool MatrixBase::isUnitary(RealScalar prec) const } return true; } + #endif // EIGEN_DOT_H diff --git a/Eigen/src/Core/Functors.h b/Eigen/src/Core/Functors.h index 5255a980c..cf97b0733 100644 --- a/Eigen/src/Core/Functors.h +++ b/Eigen/src/Core/Functors.h @@ -558,12 +558,6 @@ template struct ei_linspaced_op const ei_linspaced_op_impl impl; }; -// allow to add new functors and specializations of ei_functor_traits from outside Eigen. -// this macro is really needed because ei_functor_traits must be specialized after it is declared but before it is used... -#ifdef EIGEN_FUNCTORS_PLUGIN -#include EIGEN_FUNCTORS_PLUGIN -#endif - // all functors allow linear access, except ei_scalar_identity_op. So we fix here a quick meta // to indicate whether a functor allows linear access, just always answering 'yes' except for // ei_scalar_identity_op. @@ -575,4 +569,253 @@ template struct ei_functor_has_linear_access struct ei_functor_allows_mixing_real_and_complex { enum { ret = 0 }; }; template struct ei_functor_allows_mixing_real_and_complex > { enum { ret = 1 }; }; + +/** \internal + * \brief Template functor to add a scalar to a fixed other one + * \sa class CwiseUnaryOp, Array::operator+ + */ +/* If you wonder why doing the ei_pset1() in packetOp() is an optimization check ei_scalar_multiple_op */ +template +struct ei_scalar_add_op { + typedef typename ei_packet_traits::type PacketScalar; + // FIXME default copy constructors seems bugged with std::complex<> + inline ei_scalar_add_op(const ei_scalar_add_op& other) : m_other(other.m_other) { } + inline ei_scalar_add_op(const Scalar& other) : m_other(other) { } + inline Scalar operator() (const Scalar& a) const { return a + m_other; } + inline const PacketScalar packetOp(const PacketScalar& a) const + { return ei_padd(a, ei_pset1(m_other)); } + const Scalar m_other; +}; +template +struct ei_functor_traits > +{ enum { Cost = NumTraits::AddCost, PacketAccess = ei_packet_traits::size>1 }; }; + +/** \internal + * \brief Template functor to compute the square root of a scalar + * \sa class CwiseUnaryOp, Cwise::sqrt() + */ +template struct ei_scalar_sqrt_op { + EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_sqrt_op) + inline const Scalar operator() (const Scalar& a) const { return ei_sqrt(a); } + typedef typename ei_packet_traits::type Packet; + inline Packet packetOp(const Packet& a) const { return ei_psqrt(a); } +}; +template +struct ei_functor_traits > +{ enum { + Cost = 5 * NumTraits::MulCost, + PacketAccess = ei_packet_traits::HasSqrt + }; +}; + +/** \internal + * \brief Template functor to compute the cosine of a scalar + * \sa class CwiseUnaryOp, Cwise::cos() + */ +template struct ei_scalar_cos_op { + EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_cos_op) + inline Scalar operator() (const Scalar& a) const { return ei_cos(a); } + typedef typename ei_packet_traits::type Packet; + inline Packet packetOp(const Packet& a) const { return ei_pcos(a); } +}; +template +struct ei_functor_traits > +{ + enum { + Cost = 5 * NumTraits::MulCost, + PacketAccess = ei_packet_traits::HasCos + }; +}; + +/** \internal + * \brief Template functor to compute the sine of a scalar + * \sa class CwiseUnaryOp, Cwise::sin() + */ +template struct ei_scalar_sin_op { + EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_sin_op) + inline const Scalar operator() (const Scalar& a) const { return ei_sin(a); } + typedef typename ei_packet_traits::type Packet; + inline Packet packetOp(const Packet& a) const { return ei_psin(a); } +}; +template +struct ei_functor_traits > +{ + enum { + Cost = 5 * NumTraits::MulCost, + PacketAccess = ei_packet_traits::HasSin + }; +}; + +/** \internal + * \brief Template functor to raise a scalar to a power + * \sa class CwiseUnaryOp, Cwise::pow + */ +template +struct ei_scalar_pow_op { + // FIXME default copy constructors seems bugged with std::complex<> + inline ei_scalar_pow_op(const ei_scalar_pow_op& other) : m_exponent(other.m_exponent) { } + inline ei_scalar_pow_op(const Scalar& exponent) : m_exponent(exponent) {} + inline Scalar operator() (const Scalar& a) const { return ei_pow(a, m_exponent); } + const Scalar m_exponent; +}; +template +struct ei_functor_traits > +{ enum { Cost = 5 * NumTraits::MulCost, PacketAccess = false }; }; + +/** \internal + * \brief Template functor to compute the inverse of a scalar + * \sa class CwiseUnaryOp, Cwise::inverse() + */ +template +struct ei_scalar_inverse_op { + EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_inverse_op) + inline Scalar operator() (const Scalar& a) const { return Scalar(1)/a; } + template + inline const PacketScalar packetOp(const PacketScalar& a) const + { return ei_pdiv(ei_pset1(Scalar(1)),a); } +}; +template +struct ei_functor_traits > +{ enum { Cost = NumTraits::MulCost, PacketAccess = int(ei_packet_traits::size)>1 }; }; + +/** \internal + * \brief Template functor to compute the square of a scalar + * \sa class CwiseUnaryOp, Cwise::square() + */ +template +struct ei_scalar_square_op { + EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_square_op) + inline Scalar operator() (const Scalar& a) const { return a*a; } + template + inline const PacketScalar packetOp(const PacketScalar& a) const + { return ei_pmul(a,a); } +}; +template +struct ei_functor_traits > +{ enum { Cost = NumTraits::MulCost, PacketAccess = int(ei_packet_traits::size)>1 }; }; + +/** \internal + * \brief Template functor to compute the cube of a scalar + * \sa class CwiseUnaryOp, Cwise::cube() + */ +template +struct ei_scalar_cube_op { + EIGEN_EMPTY_STRUCT_CTOR(ei_scalar_cube_op) + inline Scalar operator() (const Scalar& a) const { return a*a*a; } + template + inline const PacketScalar packetOp(const PacketScalar& a) const + { return ei_pmul(a,ei_pmul(a,a)); } +}; +template +struct ei_functor_traits > +{ enum { Cost = 2*NumTraits::MulCost, PacketAccess = int(ei_packet_traits::size)>1 }; }; + +// default functor traits for STL functors: + +template +struct ei_functor_traits > +{ enum { Cost = NumTraits::MulCost, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = NumTraits::MulCost, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = NumTraits::AddCost, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = NumTraits::AddCost, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = NumTraits::AddCost, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = ei_functor_traits::Cost, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = ei_functor_traits::Cost, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1 + ei_functor_traits::Cost, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 1 + ei_functor_traits::Cost, PacketAccess = false }; }; + +#ifdef EIGEN_STDEXT_SUPPORT + +template +struct ei_functor_traits > +{ enum { Cost = 0, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = 0, PacketAccess = false }; }; + +template +struct ei_functor_traits > > +{ enum { Cost = 0, PacketAccess = false }; }; + +template +struct ei_functor_traits > > +{ enum { Cost = 0, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = ei_functor_traits::Cost + ei_functor_traits::Cost, PacketAccess = false }; }; + +template +struct ei_functor_traits > +{ enum { Cost = ei_functor_traits::Cost + ei_functor_traits::Cost + ei_functor_traits::Cost, PacketAccess = false }; }; + +#endif // EIGEN_STDEXT_SUPPORT + +// allow to add new functors and specializations of ei_functor_traits from outside Eigen. +// this macro is really needed because ei_functor_traits must be specialized after it is declared but before it is used... +#ifdef EIGEN_FUNCTORS_PLUGIN +#include EIGEN_FUNCTORS_PLUGIN +#endif + #endif // EIGEN_FUNCTORS_H diff --git a/Eigen/src/Array/GlobalFunctions.h b/Eigen/src/Core/GlobalFunctions.h similarity index 100% rename from Eigen/src/Array/GlobalFunctions.h rename to Eigen/src/Core/GlobalFunctions.h diff --git a/Eigen/src/Array/Random.h b/Eigen/src/Core/Random.h similarity index 100% rename from Eigen/src/Array/Random.h rename to Eigen/src/Core/Random.h diff --git a/Eigen/src/Array/Replicate.h b/Eigen/src/Core/Replicate.h similarity index 100% rename from Eigen/src/Array/Replicate.h rename to Eigen/src/Core/Replicate.h diff --git a/Eigen/src/Array/Reverse.h b/Eigen/src/Core/Reverse.h similarity index 100% rename from Eigen/src/Array/Reverse.h rename to Eigen/src/Core/Reverse.h diff --git a/Eigen/src/Array/Select.h b/Eigen/src/Core/Select.h similarity index 100% rename from Eigen/src/Array/Select.h rename to Eigen/src/Core/Select.h diff --git a/Eigen/src/Array/VectorwiseOp.h b/Eigen/src/Core/VectorwiseOp.h similarity index 100% rename from Eigen/src/Array/VectorwiseOp.h rename to Eigen/src/Core/VectorwiseOp.h