Searched defs:maxOuterIndex (Results 1 - 1 of 1) sorted by relevance

/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineMatrix.h177 const Index maxOuterIndex = inner + m_data.upperProfile(inner); variable
178 if (outer <= maxOuterIndex)
221 const Index maxOuterIndex = inner + m_data.upperProfile(inner); variable
222 eigen_assert(outer <= maxOuterIndex && "you try to acces a coeff that do not exist in the storage");
279 const Index maxOuterIndex = inner + m_data.upperProfile(inner);
280 if (outer <= maxOuterIndex)
342 const Index maxOuterIndex = inner + m_data.upperProfile(inner);
343 eigen_assert(outer <= maxOuterIndex && "you try to acces a coeff that do not exist in the storage");
360 const Index maxOuterIndex = inner + m_data.upperProfile(inner);
361 return outer <= maxOuterIndex;
[all...]

Completed in 286 milliseconds