mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
fix typo and remove unused declaration.
This commit is contained in:
parent
969e92261d
commit
b471161f28
@ -38,7 +38,7 @@
|
|||||||
* with given dense storage of the coefficients. It is the return type of MatrixBase::selfadjointView()
|
* with given dense storage of the coefficients. It is the return type of MatrixBase::selfadjointView()
|
||||||
* and most of the time this is the only way that it is used.
|
* and most of the time this is the only way that it is used.
|
||||||
*
|
*
|
||||||
* \sa class TriangularBase, MatrixBase::selfAdjointView()
|
* \sa class TriangularBase, MatrixBase::selfadjointView()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
* with given dense storage of the coefficients. It is the return type of MatrixBase::selfadjointView()
|
* with given dense storage of the coefficients. It is the return type of MatrixBase::selfadjointView()
|
||||||
* and most of the time this is the only way that it is used.
|
* and most of the time this is the only way that it is used.
|
||||||
*
|
*
|
||||||
* \sa SparseMatrixBase::selfAdjointView()
|
* \sa SparseMatrixBase::selfadjointView()
|
||||||
*/
|
*/
|
||||||
template<typename Lhs, typename Rhs, int UpLo>
|
template<typename Lhs, typename Rhs, int UpLo>
|
||||||
class SparseSelfAdjointTimeDenseProduct;
|
class SparseSelfAdjointTimeDenseProduct;
|
||||||
@ -235,7 +235,6 @@ class SparseSelfAdjointTimeDenseProduct
|
|||||||
dest.row(j) += i.value() * m_rhs.row(j);
|
dest.row(j) += i.value() * m_rhs.row(j);
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
Block<Dest,1,Dest::ColsAtCompileTime> dest_j(dest.row(LhsIsRowMajor ? j : 0));
|
|
||||||
for(; (ProcessFirstHalf ? i && i.index() < j : i) ; ++i)
|
for(; (ProcessFirstHalf ? i && i.index() < j : i) ; ++i)
|
||||||
{
|
{
|
||||||
Index a = LhsIsRowMajor ? j : i.index();
|
Index a = LhsIsRowMajor ? j : i.index();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user