diff --git a/Eigen/src/Householder/HouseholderSequence.h b/Eigen/src/Householder/HouseholderSequence.h index ab32f7d3f..0c6a09861 100644 --- a/Eigen/src/Householder/HouseholderSequence.h +++ b/Eigen/src/Householder/HouseholderSequence.h @@ -321,7 +321,7 @@ template class HouseholderS { const Index BlockSize = 48; // if the entries are large enough, then apply the reflectors by block - if(m_length>BlockSize && dst.cols()>1) + if(m_length>=BlockSize && dst.cols()>1) { for(Index i = 0; i < m_length; i+=BlockSize) {