Home
last modified time | relevance | path

Searched refs:mLo (Results 1 – 1 of 1) sorted by relevance

/external/eigen/test/
Dsparse_product.cpp272 SparseMatrixType mLo(rows, rows); in sparse_product() local
280 mLo = mUp.adjoint(); in sparse_product()
283 mS = mUp + mLo; in sparse_product()
297 VERIFY_IS_APPROX(x=mLo.template selfadjointView<Lower>()*b, refX=refS*b); in sparse_product()
301 VERIFY_IS_APPROX(x=b * mLo.template selfadjointView<Lower>(), refX=b*refS); in sparse_product()
305 VERIFY_IS_APPROX(x.noalias()-=mLo.template selfadjointView<Lower>()*b, refX-=refS*b); in sparse_product()
310 VERIFY_IS_APPROX(mSres = mLo.template selfadjointView<Lower>()*mS, in sparse_product()
312 VERIFY_IS_APPROX(mSres = mS * mLo.template selfadjointView<Lower>(), in sparse_product()