mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
RealQZ: bug in splitOffTwoRows fixed
This commit is contained in:
parent
bf7d986af6
commit
a3a9773ab6
@ -306,7 +306,7 @@ namespace Eigen {
|
|||||||
template<typename MatrixType>
|
template<typename MatrixType>
|
||||||
inline void RealQZ<MatrixType>::splitOffTwoRows(Index i) {
|
inline void RealQZ<MatrixType>::splitOffTwoRows(Index i) {
|
||||||
const Index dim=m_S.cols();
|
const Index dim=m_S.cols();
|
||||||
if (internal::abs(m_S.coeff(i+1,1)==Scalar(0)))
|
if (internal::abs(m_S.coeff(i+1,i)==Scalar(0)))
|
||||||
return;
|
return;
|
||||||
Index z = findSmallDiagEntry(i,i+1);
|
Index z = findSmallDiagEntry(i,i+1);
|
||||||
if (z==i-1) {
|
if (z==i-1) {
|
||||||
|
Loading…
Reference in New Issue
Block a user