Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/Core/
DSelfAdjointView.h40 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>
DBandMatrix.h93 … 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) {}
DTriangularMatrix.h100 const int mode = int(Mode) & ~SelfAdjoint; in check_coordinates()
725 struct eigen2_part_return_type<MatrixType, SelfAdjoint>
/external/eigen/test/eigen2/
Deigen2_triangular.cpp119 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()
Deigen2_sparse_product.cpp99 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()
Deigen2_sparse_solvers.cpp84 typedef SparseMatrix<Scalar,LowerTriangular|SelfAdjoint> SparseSelfAdjointMatrix; in sparse_solvers()
128 typedef SparseMatrix<Scalar,UpperTriangular|SelfAdjoint> SparseSelfAdjointMatrix; in sparse_solvers()
/external/eigen/Eigen/src/Eigen2Support/
DTriangularSolver.h16 const unsigned int SelfAdjointBit = SelfAdjoint;
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixMatrix.h401 LhsIsSelfAdjoint = (LhsMode&SelfAdjoint)==SelfAdjoint,
403 RhsIsSelfAdjoint = (RhsMode&SelfAdjoint)==SelfAdjoint
/external/eigen/Eigen/src/Core/util/
DConstants.h183 SelfAdjoint=0x10, enumerator
/external/eigen/unsupported/Eigen/src/SparseExtra/
DMarketIO.h73 else if (sym == SelfAdjoint) header += " Hermitian"; in putMarketHeader()
127 else if (substr[4].compare("Hermitian") == 0) sym = SelfAdjoint; in getMarketHeader()
/external/eigen/bench/
Dsparse_cholesky.cpp42 typedef SparseMatrix<Scalar,SelfAdjoint|LowerTriangular> EigenSparseSelfAdjointMatrix;
/external/eigen/Eigen/src/SuperLUSupport/
DSuperLUSupport.h199 …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 …