Ok, too many class bodies - it was only required for ei_svd_precondition_2x2_block_to_be_real.

This commit is contained in:
Hauke Heibel 2009-09-27 17:18:19 +02:00
parent 3c74d6b7d4
commit e115fa3cea

View File

@ -34,13 +34,13 @@ template<typename MatrixType, unsigned int Options,
bool PossiblyMoreRowsThanCols = (Options & AtLeastAsManyColsAsRows) == 0 bool PossiblyMoreRowsThanCols = (Options & AtLeastAsManyColsAsRows) == 0
&& (MatrixType::RowsAtCompileTime==Dynamic && (MatrixType::RowsAtCompileTime==Dynamic
|| (MatrixType::RowsAtCompileTime>MatrixType::ColsAtCompileTime))> || (MatrixType::RowsAtCompileTime>MatrixType::ColsAtCompileTime))>
struct ei_svd_precondition_if_more_rows_than_cols {}; struct ei_svd_precondition_if_more_rows_than_cols;
template<typename MatrixType, unsigned int Options, template<typename MatrixType, unsigned int Options,
bool PossiblyMoreColsThanRows = (Options & AtLeastAsManyRowsAsCols) == 0 bool PossiblyMoreColsThanRows = (Options & AtLeastAsManyRowsAsCols) == 0
&& (MatrixType::ColsAtCompileTime==Dynamic && (MatrixType::ColsAtCompileTime==Dynamic
|| (MatrixType::ColsAtCompileTime>MatrixType::RowsAtCompileTime))> || (MatrixType::ColsAtCompileTime>MatrixType::RowsAtCompileTime))>
struct ei_svd_precondition_if_more_cols_than_rows {}; struct ei_svd_precondition_if_more_cols_than_rows;
/** \ingroup SVD_Module /** \ingroup SVD_Module
* \nonstableyet * \nonstableyet