Home
last modified time | relevance | path

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

/external/eigen/test/
Dsparse_permutations.cpp105 VERIFY( is_sorted( res = mat.twistedBy(p) )); in sparse_permutations()
111 VERIFY( is_sorted( res = mat.template selfadjointView<Upper>().twistedBy(p_null) )); in sparse_permutations()
115 VERIFY( is_sorted( res = mat.template selfadjointView<Lower>().twistedBy(p_null) )); in sparse_permutations()
120 VERIFY( is_sorted( res = up.template selfadjointView<Upper>().twistedBy(p_null) )); in sparse_permutations()
124 VERIFY( is_sorted( res = lo.template selfadjointView<Lower>().twistedBy(p_null) )); in sparse_permutations()
164 res.template selfadjointView<Upper>() = mat.template selfadjointView<Upper>().twistedBy(p); in sparse_permutations()
168 res.template selfadjointView<Upper>() = mat.template selfadjointView<Lower>().twistedBy(p); in sparse_permutations()
172 res.template selfadjointView<Lower>() = mat.template selfadjointView<Lower>().twistedBy(p); in sparse_permutations()
176 res.template selfadjointView<Lower>() = mat.template selfadjointView<Upper>().twistedBy(p); in sparse_permutations()
181 res.template selfadjointView<Upper>() = up.template selfadjointView<Upper>().twistedBy(p); in sparse_permutations()
[all …]
Dsparse_solver.h332 …plate selfadjointView<Solver::UpLo>() = A.template triangularView<Eigen::Lower>().twistedBy(pnull);
/external/eigen/Eigen/src/PardisoSupport/
DPardisoSupport.h475 …trix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
536 …trix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
/external/eigen/Eigen/src/SparseCore/
DSparseSelfAdjointView.h127 …SparseSymmetricPermutationProduct<_MatrixTypeNested,Mode> twistedBy(const PermutationMatrix<Dynami…
142 return *this = src.twistedBy(pnull);
149 return *this = src.twistedBy(pnull);
DSparseMatrixBase.h324 …SparseSymmetricPermutationProduct<Derived,Upper|Lower> twistedBy(const PermutationMatrix<Dynamic,D… in twistedBy() function
/external/eigen/Eigen/src/SparseCholesky/
DSimplicialCholesky.h220 tmp.template selfadjointView<Upper>() = a.template selfadjointView<UpLo>().twistedBy(m_P);
670 ap.template selfadjointView<Upper>() = a.template selfadjointView<UpLo>().twistedBy(m_P);
/external/eigen/Eigen/src/IterativeLinearSolvers/
DIncompleteCholesky.h208 tmp = mat.template selfadjointView<_UpLo>().twistedBy(m_perm); in factorize()
DIncompleteLUT.h271 mat = amat.twistedBy(m_Pinv); in factorize()
/external/eigen/doc/
DSparseQuickReference.dox155 sm1.twistedBy(perm); // Permute rows and columns
DTutorialSparse.dox357 sm2 = A.selfadjointView<Upper>().twistedBy(P); // compute P S P' fro…
358 sm2.selfadjointView<Lower>() = A.selfadjointView<Lower>().twistedBy(P); // compute P S P' fro…