mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
Fix comparison to block size
This commit is contained in:
parent
188a13f9fe
commit
af9c9f7706
@ -321,7 +321,7 @@ template<typename VectorsType, typename CoeffsType, int Side> 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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user