Searched refs:SelfAdjoint (Results 1 – 12 of 12) sorted by relevance
/external/eigen/Eigen/src/Core/ |
D | SelfAdjointView.h | 40 Mode = UpLo | SelfAdjoint, 205 struct triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Upper), UnrollCount, ClearOp… 214 …triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Upper), UnrollCount-1, ClearOpposi… 224 struct triangular_assignment_selector<Derived1, Derived2, SelfAdjoint|Upper, 0, ClearOpposite> 230 struct triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Lower), UnrollCount, ClearOp… 239 …triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Lower), UnrollCount-1, ClearOpposi… 249 struct triangular_assignment_selector<Derived1, Derived2, SelfAdjoint|Lower, 0, ClearOpposite> 255 struct triangular_assignment_selector<Derived1, Derived2, SelfAdjoint|Upper, Dynamic, ClearOpposite> 273 struct triangular_assignment_selector<Derived1, Derived2, SelfAdjoint|Lower, Dynamic, ClearOpposite>
|
D | BandMatrix.h | 93 … ReturnOpposite = (Options&SelfAdjoint) && (((Index)>0 && Supers==0) || ((Index)<0 && Subs==0)), 312 class TridiagonalMatrix : public BandMatrix<Scalar,Size,Size,Options&SelfAdjoint?0:1,1,Options|RowM… 314 typedef BandMatrix<Scalar,Size,Size,Options&SelfAdjoint?0:1,1,Options|RowMajor> Base; 317 TridiagonalMatrix(Index size = Size) : Base(size,size,Options&SelfAdjoint?0:1,1) {}
|
D | TriangularMatrix.h | 100 const int mode = int(Mode) & ~SelfAdjoint; in check_coordinates() 725 struct eigen2_part_return_type<MatrixType, SelfAdjoint>
|
/external/eigen/test/eigen2/ |
D | eigen2_triangular.cpp | 119 m1.part<SelfAdjoint>() = m; in selfadjoint() 126 m2.part<SelfAdjoint>() = m.part<UpperTriangular>(); in selfadjoint() 133 m3.part<SelfAdjoint>() = m.part<LowerTriangular>(); in selfadjoint() 141 Matrix2i::Map(array).part<SelfAdjoint>() = Matrix2i::Random().part<LowerTriangular>(); in selfadjoint()
|
D | eigen2_sparse_product.cpp | 99 VERIFY_IS_APPROX(x=mUp.template marked<UpperTriangular|SelfAdjoint>()*b, refX=refS*b); in sparse_product() 100 VERIFY_IS_APPROX(x=mLo.template marked<LowerTriangular|SelfAdjoint>()*b, refX=refS*b); in sparse_product() 101 VERIFY_IS_APPROX(x=mS.template marked<SelfAdjoint>()*b, refX=refS*b); in sparse_product()
|
D | eigen2_sparse_solvers.cpp | 84 typedef SparseMatrix<Scalar,LowerTriangular|SelfAdjoint> SparseSelfAdjointMatrix; in sparse_solvers() 128 typedef SparseMatrix<Scalar,UpperTriangular|SelfAdjoint> SparseSelfAdjointMatrix; in sparse_solvers()
|
/external/eigen/Eigen/src/Eigen2Support/ |
D | TriangularSolver.h | 16 const unsigned int SelfAdjointBit = SelfAdjoint;
|
/external/eigen/Eigen/src/Core/products/ |
D | SelfadjointMatrixMatrix.h | 401 LhsIsSelfAdjoint = (LhsMode&SelfAdjoint)==SelfAdjoint, 403 RhsIsSelfAdjoint = (RhsMode&SelfAdjoint)==SelfAdjoint
|
/external/eigen/Eigen/src/Core/util/ |
D | Constants.h | 183 SelfAdjoint=0x10, enumerator
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
D | MarketIO.h | 73 else if (sym == SelfAdjoint) header += " Hermitian"; in putMarketHeader() 127 else if (substr[4].compare("Hermitian") == 0) sym = SelfAdjoint; in getMarketHeader()
|
/external/eigen/bench/ |
D | sparse_cholesky.cpp | 42 typedef SparseMatrix<Scalar,SelfAdjoint|LowerTriangular> EigenSparseSelfAdjointMatrix;
|
/external/eigen/Eigen/src/SuperLUSupport/ |
D | SuperLUSupport.h | 199 …eigen_assert(((MatrixType::Flags & SelfAdjoint)==0) && "SelfAdjoint matrix shape not supported by … in Map() 258 …eigen_assert(((MatrixType::Flags & SelfAdjoint)==0) && "SelfAdjoint matrix shape not supported by …
|