HomeSort by relevance Sort by last modified time
    Searched refs:m_innerIndices (Results 1 - 2 of 2) sorted by null

  /external/eigen/Eigen/src/MetisSupport/
MetisSupport.h 66 m_innerIndices.resize(TotNz);
83 m_innerIndices(CurNz) = idx;
94 m_innerIndices(CurNz) = idx;
112 output_error = METIS_NodeND(&m, m_indexPtr.data(), m_innerIndices.data(), NULL, NULL, perm.data(), iperm.data());
133 IndexVector m_innerIndices; // Adjacency list
  /external/eigen/Eigen/src/SparseCore/
MappedSparseMatrix.h 44 Index* m_innerIndices;
61 inline const Index* innerIndexPtr() const { return m_innerIndices; }
62 inline Index* innerIndexPtr() { return m_innerIndices; }
77 else if (end>0 && inner==m_innerIndices[end-1])
82 const Index* r = std::lower_bound(&m_innerIndices[start],&m_innerIndices[end-1],inner);
83 const Index id = r-&m_innerIndices[0];
96 Index* r = std::lower_bound(&m_innerIndices[start],&m_innerIndices[end],inner);
97 const Index id = r-&m_innerIndices[0]
    [all...]

Completed in 3358 milliseconds