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

  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 139 return &m_data.lowerProfile(0);
143 return &m_data.lowerProfile(0);
167 const Index minInnerIndex = outer - m_data.lowerProfile(outer);
169 return this->m_data.lower(m_rowStartIndex[outer] + inner - (outer - m_data.lowerProfile(outer)));
185 const Index maxInnerIndex = outer + m_data.lowerProfile(outer);
214 const Index minInnerIndex = outer - m_data.lowerProfile(outer);
216 return this->m_data.lower(m_rowStartIndex[outer] + inner - (outer - m_data.lowerProfile(outer)));
227 const Index maxInnerIndex = outer + m_data.lowerProfile(outer);
249 const Index minInnerIndex = outer - m_data.lowerProfile(outer);
251 return this->m_data.lower(m_rowStartIndex[outer] + inner - (outer - m_data.lowerProfile(outer)))
    [all...]
SkylineStorage.h 168 inline Index& lowerProfile(Index i) {
172 inline const Index& lowerProfile(Index i) const {
176 static SkylineStorage Map(Index* upperProfile, Index* lowerProfile, Scalar* diag, Scalar* upper, Scalar* lower, Index size, Index upperSize, Index lowerSize) {
179 res.m_lowerProfile = lowerProfile;
209 Index* lowerProfile = new Index[lowerProfileSize];
222 memcpy(lowerProfile, m_lowerProfile, copyLowerProfileSize * sizeof (Index));
236 m_lowerProfile = lowerProfile;

Completed in 132 milliseconds