mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-10 02:39:03 +08:00
Ok, too many class bodies - it was only required for ei_svd_precondition_2x2_block_to_be_real.
This commit is contained in:
parent
3c74d6b7d4
commit
e115fa3cea
@ -34,13 +34,13 @@ template<typename MatrixType, unsigned int Options,
|
||||
bool PossiblyMoreRowsThanCols = (Options & AtLeastAsManyColsAsRows) == 0
|
||||
&& (MatrixType::RowsAtCompileTime==Dynamic
|
||||
|| (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,
|
||||
bool PossiblyMoreColsThanRows = (Options & AtLeastAsManyRowsAsCols) == 0
|
||||
&& (MatrixType::ColsAtCompileTime==Dynamic
|
||||
|| (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
|
||||
* \nonstableyet
|
||||
|
Loading…
x
Reference in New Issue
Block a user