Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef EIGEN_MISC_KERNEL_H
00026 #define EIGEN_MISC_KERNEL_H
00027
00028 namespace internal {
00029
00033 template<typename DecompositionType>
00034 struct traits<kernel_retval_base<DecompositionType> >
00035 {
00036 typedef typename DecompositionType::MatrixType MatrixType;
00037 typedef Matrix<
00038 typename MatrixType::Scalar,
00039 MatrixType::ColsAtCompileTime,
00040
00041
00042 Dynamic,
00043 MatrixType::Options,
00044 MatrixType::MaxColsAtCompileTime,
00045 MatrixType::MaxColsAtCompileTime
00046
00047 > ReturnType;
00048 };
00049
00050 template<typename _DecompositionType> struct kernel_retval_base
00051 : public ReturnByValue<kernel_retval_base<_DecompositionType> >
00052 {
00053 typedef _DecompositionType DecompositionType;
00054 typedef ReturnByValue<kernel_retval_base> Base;
00055 typedef typename Base::Index Index;
00056
00057 kernel_retval_base(const DecompositionType& dec)
00058 : m_dec(dec),
00059 m_rank(dec.rank()),
00060 m_cols(m_rank==dec.cols() ? 1 : dec.cols() - m_rank)
00061 {}
00062
00063 inline Index rows() const { return m_dec.cols(); }
00064 inline Index cols() const { return m_cols; }
00065 inline Index rank() const { return m_rank; }
00066 inline const DecompositionType& dec() const { return m_dec; }
00067
00068 template<typename Dest> inline void evalTo(Dest& dst) const
00069 {
00070 static_cast<const kernel_retval<DecompositionType>*>(this)->evalTo(dst);
00071 }
00072
00073 protected:
00074 const DecompositionType& m_dec;
00075 Index m_rank, m_cols;
00076 };
00077
00078 }
00079
00080 #define EIGEN_MAKE_KERNEL_HELPERS(DecompositionType) \
00081 typedef typename DecompositionType::MatrixType MatrixType; \
00082 typedef typename MatrixType::Scalar Scalar; \
00083 typedef typename MatrixType::RealScalar RealScalar; \
00084 typedef typename MatrixType::Index Index; \
00085 typedef Eigen::internal::kernel_retval_base<DecompositionType> Base; \
00086 using Base::dec; \
00087 using Base::rank; \
00088 using Base::rows; \
00089 using Base::cols; \
00090 kernel_retval(const DecompositionType& dec) : Base(dec) {}
00091
00092 #endif // EIGEN_MISC_KERNEL_H