From 8473a77f2fc3461a4d93de08cda4a50a62ca0abe Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 13 Sep 2008 18:51:51 +0000 Subject: move CommaInitializer out of MatrixBase and documment it (because of .finished()) --- Eigen/src/Core/CommaInitializer.h | 44 ++++++++++++++++++++----------- Eigen/src/Core/MatrixBase.h | 6 ++--- Eigen/src/Core/Redux.h | 5 ++-- Eigen/src/Core/util/ForwardDeclarations.h | 2 ++ 4 files changed, 34 insertions(+), 23 deletions(-) (limited to 'Eigen') diff --git a/Eigen/src/Core/CommaInitializer.h b/Eigen/src/Core/CommaInitializer.h index 282510550..4aa1fcd0a 100644 --- a/Eigen/src/Core/CommaInitializer.h +++ b/Eigen/src/Core/CommaInitializer.h @@ -26,25 +26,34 @@ #ifndef EIGEN_COMMAINITIALIZER_H #define EIGEN_COMMAINITIALIZER_H -/** \internal - * Helper class to define the MatrixBase::operator<< +/** \class CommaInitializer + * + * \brief Helper class used by the comma initializer operator + * + * This class is internally used to implement the comma initializer feature. It is + * the return type of MatrixBase::operator<<, and most of the time this is the only + * way it is used. + * + * \sa \ref MatrixBaseCommaInitRef "MatrixBase::operator<<", CommaInitializer::finished() */ -template -struct MatrixBase::CommaInitializer +template +struct CommaInitializer { - inline CommaInitializer(Derived& mat, const Scalar& s) + typedef typename ei_traits::Scalar Scalar; + inline CommaInitializer(MatrixType& mat, const Scalar& s) : m_matrix(mat), m_row(0), m_col(1), m_currentBlockRows(1) { m_matrix.coeffRef(0,0) = s; } template - inline CommaInitializer(Derived& mat, const MatrixBase& other) + inline CommaInitializer(MatrixType& mat, const MatrixBase& other) : m_matrix(mat), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows()) { m_matrix.block(0, 0, other.rows(), other.cols()) = other; } + /* inserts a scalar value in the target matrix */ CommaInitializer& operator,(const Scalar& s) { if (m_col==m_matrix.cols()) @@ -62,6 +71,7 @@ struct MatrixBase::CommaInitializer return *this; } + /* inserts a matrix expression in the target matrix */ template CommaInitializer& operator,(const MatrixBase& other) { @@ -77,8 +87,8 @@ struct MatrixBase::CommaInitializer && "Too many coefficients passed to comma initializer (operator<<)"); ei_assert(m_currentBlockRows==other.rows()); if (OtherDerived::SizeAtCompileTime != Dynamic) - m_matrix.block + m_matrix.template block (m_row, m_col) = other; else m_matrix.block(m_row, m_col, other.rows(), other.cols()) = other; @@ -100,11 +110,11 @@ struct MatrixBase::CommaInitializer * quaternion.fromRotationMatrix((Matrix3f() << axis0, axis1, axis2).finished()); * \endcode */ - inline Derived& finished() { return m_matrix; } + inline MatrixType& finished() { return m_matrix; } - Derived& m_matrix; - int m_row; // current row id - int m_col; // current col id + MatrixType& m_matrix; // target matrix + int m_row; // current row id + int m_col; // current col id int m_currentBlockRows; // current block height }; @@ -118,20 +128,22 @@ struct MatrixBase::CommaInitializer * * Example: \include MatrixBase_set.cpp * Output: \verbinclude MatrixBase_set.out + * + * \sa CommaInitializer::finished(), class CommaInitializer */ template -inline typename MatrixBase::CommaInitializer MatrixBase::operator<< (const Scalar& s) +inline CommaInitializer MatrixBase::operator<< (const Scalar& s) { - return CommaInitializer(*static_cast(this), s); + return CommaInitializer(*static_cast(this), s); } /** \sa operator<<(const Scalar&) */ template template -inline typename MatrixBase::CommaInitializer +inline CommaInitializer MatrixBase::operator<<(const MatrixBase& other) { - return CommaInitializer(*static_cast(this), other); + return CommaInitializer(*static_cast(this), other); } #endif // EIGEN_COMMAINITIALIZER_H diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h index 81aae3593..2b4926082 100644 --- a/Eigen/src/Core/MatrixBase.h +++ b/Eigen/src/Core/MatrixBase.h @@ -53,8 +53,6 @@ */ template class MatrixBase { - struct CommaInitializer; - public: class InnerIterator; @@ -236,10 +234,10 @@ template class MatrixBase template Derived& lazyAssign(const Product& product); - CommaInitializer operator<< (const Scalar& s); + CommaInitializer operator<< (const Scalar& s); template - CommaInitializer operator<< (const MatrixBase& other); + CommaInitializer operator<< (const MatrixBase& other); const Scalar coeff(int row, int col) const; const Scalar operator()(int row, int col) const; diff --git a/Eigen/src/Core/Redux.h b/Eigen/src/Core/Redux.h index 32b571e4f..6e4f9897d 100644 --- a/Eigen/src/Core/Redux.h +++ b/Eigen/src/Core/Redux.h @@ -91,9 +91,8 @@ MatrixBase::redux(const BinaryOp& func) const const bool unroll = SizeAtCompileTime * CoeffReadCost + (SizeAtCompileTime-1) * ei_functor_traits::Cost <= EIGEN_UNROLLING_LIMIT; - return ei_redux_impl - ::run(derived(), func); + return ei_redux_impl + ::run(derived(), func); } /** \returns the minimum of all coefficients of *this diff --git a/Eigen/src/Core/util/ForwardDeclarations.h b/Eigen/src/Core/util/ForwardDeclarations.h index 8a8beb9b7..55016e05d 100644 --- a/Eigen/src/Core/util/ForwardDeclarations.h +++ b/Eigen/src/Core/util/ForwardDeclarations.h @@ -51,6 +51,8 @@ template class Part; template class Extract; template class Cwise; template class WithFormat; +template struct CommaInitializer; + template struct ei_product_mode; template::value> struct ProductReturnType; -- cgit v1.2.3