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

  /external/eigen/Eigen/src/SparseCore/
SparseVector.h 413 typedef SparseVector<_Scalar,_Options,_Index> SparseVectorType;
414 typedef evaluator_base<SparseVectorType> Base;
415 typedef typename SparseVectorType::InnerIterator InnerIterator;
416 typedef typename SparseVectorType::ReverseInnerIterator ReverseInnerIterator;
420 Flags = SparseVectorType::Flags
425 explicit evaluator(const SparseVectorType &mat) : m_matrix(&mat)
434 operator SparseVectorType&() { return m_matrix->const_cast_derived(); }
435 operator const SparseVectorType&() const { return *m_matrix; }
437 const SparseVectorType *m_matrix;
  /external/eigen/test/
sparse_vector.cpp 18 typedef SparseVector<Scalar,0,StorageIndex> SparseVectorType;
23 SparseVectorType v1(rows), v2(rows), v3(rows);
47 for (typename SparseVectorType::InnerIterator it(v1); it; ++it,++j)
58 SparseVectorType v4(rows);
128 SparseVectorType vec1(rows);
sparse_block.cpp 40 typedef SparseVector<Scalar> SparseVectorType;
154 SparseVectorType v1;

Completed in 208 milliseconds