HomeSort by relevance Sort by last modified time
    Searched defs:SparseMatrixType (Results 1 - 8 of 8) sorted by null

  /external/eigen/test/
conjugate_gradient.cpp 15 typedef SparseMatrix<T,0,I> SparseMatrixType;
16 ConjugateGradient<SparseMatrixType, Lower > cg_colmajor_lower_diag;
17 ConjugateGradient<SparseMatrixType, Upper > cg_colmajor_upper_diag;
18 ConjugateGradient<SparseMatrixType, Lower|Upper> cg_colmajor_loup_diag;
19 ConjugateGradient<SparseMatrixType, Lower, IdentityPreconditioner> cg_colmajor_lower_I;
20 ConjugateGradient<SparseMatrixType, Upper, IdentityPreconditioner> cg_colmajor_upper_I;
incomplete_cholesky.cpp 17 typedef SparseMatrix<T,0,I> SparseMatrixType;
18 ConjugateGradient<SparseMatrixType, Lower, IncompleteCholesky<T, Lower, AMDOrdering<I> > > cg_illt_lower_amd;
19 ConjugateGradient<SparseMatrixType, Lower, IncompleteCholesky<T, Lower, NaturalOrdering<I> > > cg_illt_lower_nat;
20 ConjugateGradient<SparseMatrixType, Upper, IncompleteCholesky<T, Upper, AMDOrdering<I> > > cg_illt_upper_amd;
21 ConjugateGradient<SparseMatrixType, Upper, IncompleteCholesky<T, Upper, NaturalOrdering<I> > > cg_illt_upper_nat;
22 ConjugateGradient<SparseMatrixType, Upper|Lower, IncompleteCholesky<T, Lower, AMDOrdering<I> > > cg_illt_uplo_amd;
simplicial_cholesky.cpp 14 typedef SparseMatrix<T,0,I> SparseMatrixType;
15 SimplicialCholesky<SparseMatrixType, Lower> chol_colmajor_lower_amd;
16 SimplicialCholesky<SparseMatrixType, Upper> chol_colmajor_upper_amd;
17 SimplicialLLT< SparseMatrixType, Lower> llt_colmajor_lower_amd;
18 SimplicialLLT< SparseMatrixType, Upper> llt_colmajor_upper_amd;
19 SimplicialLDLT< SparseMatrixType, Lower> ldlt_colmajor_lower_amd;
20 SimplicialLDLT< SparseMatrixType, Upper> ldlt_colmajor_upper_amd;
21 SimplicialLDLT< SparseMatrixType, Lower, NaturalOrdering<I> > ldlt_colmajor_lower_nat;
22 SimplicialLDLT< SparseMatrixType, Upper, NaturalOrdering<I> > ldlt_colmajor_upper_nat;
sparse_vector.cpp 19 typedef SparseMatrix<Scalar,0,StorageIndex> SparseMatrixType;
22 SparseMatrixType m1(rows,rows);
106 SparseMatrixType mv1;
  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 114 typedef SparseMatrix<Scalar,RowMajor,StorageIndex> SparseMatrixType;
247 mutable SparseMatrixType m_matrix;
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 366 typedef DynamicSparseMatrix<_Scalar,_Options,_StorageIndex> SparseMatrixType;
367 typedef typename SparseMatrixType::InnerIterator InnerIterator;
368 typedef typename SparseMatrixType::ReverseInnerIterator ReverseInnerIterator;
372 Flags = SparseMatrixType::Flags
376 evaluator(const SparseMatrixType &mat) : m_matrix(&mat) {}
378 operator SparseMatrixType&() { return m_matrix->const_cast_derived(); }
379 operator const SparseMatrixType&() const { return *m_matrix; }
385 const SparseMatrixType *m_matrix;
  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 95 template<typename SparseMatrixType, int BlockRows, int BlockCols>
97 : public SparseCompressedBase<Block<SparseMatrixType,BlockRows,BlockCols,true> >
99 typedef typename internal::remove_all<typename SparseMatrixType::Nested>::type _MatrixTypeNested;
100 typedef Block<SparseMatrixType, BlockRows, BlockCols, true> BlockType;
101 typedef SparseCompressedBase<Block<SparseMatrixType,BlockRows,BlockCols,true> > Base;
111 inline sparse_matrix_block_impl(SparseMatrixType& xpr, Index i)
115 inline sparse_matrix_block_impl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
122 typedef typename internal::remove_all<typename SparseMatrixType::Nested>::type _NestedMatrixType;
148 typename SparseMatrixType::Storage newdata(m_matrix.data().allocatedSize() - block_size + nnz);
269 inline const SparseMatrixType& nestedExpression() const { return m_matrix;
    [all...]
SparseMatrix.h     [all...]

Completed in 886 milliseconds