Home
last modified time | relevance | path

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

/external/eigen/test/
Dsparse_permutations.cpp63 res = mat.twistedBy(p); in sparse_permutations()
68 res = mat.template selfadjointView<Upper>().twistedBy(p_null); in sparse_permutations()
72 res = mat.template selfadjointView<Lower>().twistedBy(p_null); in sparse_permutations()
77 res = up.template selfadjointView<Upper>().twistedBy(p_null); in sparse_permutations()
81 res = lo.template selfadjointView<Lower>().twistedBy(p_null); in sparse_permutations()
121 res.template selfadjointView<Upper>() = mat.template selfadjointView<Upper>().twistedBy(p); in sparse_permutations()
125 res.template selfadjointView<Upper>() = mat.template selfadjointView<Lower>().twistedBy(p); in sparse_permutations()
129 res.template selfadjointView<Lower>() = mat.template selfadjointView<Lower>().twistedBy(p); in sparse_permutations()
133 res.template selfadjointView<Lower>() = mat.template selfadjointView<Upper>().twistedBy(p); in sparse_permutations()
138 res.template selfadjointView<Upper>() = up.template selfadjointView<Upper>().twistedBy(p); in sparse_permutations()
[all …]
Dsparse_solver.h236 …adjointView<Solver::UpLo>() = it.matrix().template triangularView<Eigen::Lower>().twistedBy(pnull); in check_sparse_spd_solving()
/external/eigen/Eigen/src/SparseCore/
DSparseSelfAdjointView.h138 …SparseSymmetricPermutationProduct<_MatrixTypeNested,UpLo> twistedBy(const PermutationMatrix<Dynami…
154 return *this = src.twistedBy(pnull);
161 return *this = src.twistedBy(pnull);
DSparseMatrixBase.h365 …SparseSymmetricPermutationProduct<Derived,Upper|Lower> twistedBy(const PermutationMatrix<Dynamic,D… in twistedBy() function
/external/eigen/Eigen/src/PardisoSupport/
DPardisoSupport.h494 …trix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
553 …trix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
/external/eigen/Eigen/src/SparseCholesky/
DSimplicialCholesky.h201 ap.template selfadjointView<Upper>() = a.template selfadjointView<UpLo>().twistedBy(m_P); in factorize()
636 ap.template selfadjointView<Upper>() = a.template selfadjointView<UpLo>().twistedBy(m_P);
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DIncompleteCholesky.h142 m_L.template selfadjointView<Lower>() = mat.template selfadjointView<_UpLo>().twistedBy(m_perm); in factorize()
/external/eigen/Eigen/src/IterativeLinearSolvers/
DIncompleteLUT.h260 mat = amat.twistedBy(m_Pinv); in factorize()
/external/eigen/doc/
DSparseQuickReference.dox155 sm1.twistedBy(perm); // Permute rows and columns
DTutorialSparse.dox333 sm2 = A.selfadjointView<Upper>().twistedBy(P); // compute P S P' fro…
334 sm2.selfadjointView<Lower>() = A.selfadjointView<Lower>().twistedBy(P); // compute P S P' fro…