mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 11:49:02 +08:00
Fix HouseholderSequence.h
This commit is contained in:
parent
f845a8bb1a
commit
3de96caeaa
@ -400,7 +400,7 @@ template<typename VectorsType, typename CoeffsType, int Side> class HouseholderS
|
||||
}
|
||||
else
|
||||
{
|
||||
Block<Dest, Dynamic, Dest::ColsAtCompileTime> sub_dst = dst.bottomRows(dstRows);
|
||||
auto sub_dst = dst.bottomRows(dstRows);
|
||||
apply_block_householder_on_the_left(sub_dst, sub_vecs, m_coeffs.segment(k, bs), !m_reverse);
|
||||
}
|
||||
}
|
||||
@ -420,7 +420,7 @@ template<typename VectorsType, typename CoeffsType, int Side> class HouseholderS
|
||||
}
|
||||
else
|
||||
{
|
||||
Block<Dest, Dynamic, Dest::ColsAtCompileTime> sub_dst = dst.bottomRows(dstRows);
|
||||
auto sub_dst = dst.bottomRows(dstRows);
|
||||
sub_dst.applyHouseholderOnTheLeft(essentialVector(actual_k), m_coeffs.coeff(actual_k), workspace.data());
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user