aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-07-23 10:19:58 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-07-23 10:19:58 +0200
commiteee14846e3a676674899e164572564315ada3114 (patch)
treef47a55f50d4036c1644712764b7cc43d881e60cd /Eigen
parentddb3ac98a20d5f56146a53d485b1899a46b9f912 (diff)
formating
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/SelfAdjointView.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Eigen/src/Core/SelfAdjointView.h b/Eigen/src/Core/SelfAdjointView.h
index c64ebc174..c73a3ffce 100644
--- a/Eigen/src/Core/SelfAdjointView.h
+++ b/Eigen/src/Core/SelfAdjointView.h
@@ -201,12 +201,12 @@ struct ei_selfadjoint_product_returntype<Lhs,LhsMode,false,Rhs,RhsMode,true>
ei_product_selfadjoint_vector<typename Lhs::Scalar,ei_traits<Lhs>::Flags&RowMajorBit,
LhsMode&(UpperTriangularBit|LowerTriangularBit)>
(
- m_lhs.rows(), // size
- m_lhs.data(), // lhs
+ m_lhs.rows(), // size
+ m_lhs.data(), // lhs
m_lhs.stride(), // lhsStride,
- m_rhs.data(), // rhs
+ m_rhs.data(), // rhs
// int rhsIncr,
- dst.data() // res
+ dst.data() // res
);
}
@@ -278,11 +278,11 @@ struct ei_selfadjoint_product_returntype<Lhs,LhsMode,false,Rhs,RhsMode,false>
NumTraits<Scalar>::IsComplex && EIGEN_LOGICAL_XOR(RhsUpLo==UpperTriangular,bool(RhsBlasTraits::NeedToConjugate)),
ei_traits<Dest>::Flags&RowMajorBit ? RowMajor : ColMajor>
::run(
- lhs.rows(), rhs.cols(), // sizes
+ lhs.rows(), rhs.cols(), // sizes
&lhs.coeff(0,0), lhs.stride(), // lhs info
&rhs.coeff(0,0), rhs.stride(), // rhs info
&dst.coeffRef(0,0), dst.stride(), // result info
- actualAlpha // alpha
+ actualAlpha // alpha
);
}