Searched refs:found_diag (Results 1 - 2 of 2) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
H A DSparseColEtree.h77 bool found_diag; local
95 found_diag = col>=m;
104 for (typename MatrixType::InnerIterator it(mat, pcol); it||!found_diag; ++it)
108 if (i == col) found_diag = true;
/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h369 bool found_diag = nonzeroCol>=m; local
375 // thus the trick with found_diag that permits to do one more iteration on the diagonal element if this one has not been found.
376 for (typename MatrixType::InnerIterator itp(m_pmat, col); itp || !found_diag; ++itp)
380 if(curIdx == nonzeroCol) found_diag = true;

Completed in 724 milliseconds