mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix comparison to block size
This commit is contained in:
@@ -321,7 +321,7 @@ template<typename VectorsType, typename CoeffsType, int Side> class HouseholderS
|
|||||||
{
|
{
|
||||||
const Index BlockSize = 48;
|
const Index BlockSize = 48;
|
||||||
// if the entries are large enough, then apply the reflectors by block
|
// 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)
|
for(Index i = 0; i < m_length; i+=BlockSize)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user