Home | History | Annotate | Download | only in IterativeSolvers

Lines Matching refs:it

23   * NOTE It is assumed that the matrix does not have empty row or column, 
41 * \tparam _MatrixType the type of the matrix. It should be a real square sparsematrix
95 for (typename MatrixType::InnerIterator it(m_matrix, k); it; ++it)
97 if ( Dr(it.row()) < abs(it.value()) )
98 Dr(it.row()) = abs(it.value());
100 if ( Dc(it.col()) < abs(it.value()) )
101 Dc(it.col()) = abs(it.value());
119 for (typename MatrixType::InnerIterator it(m_matrix, k); it; ++it)
121 it.valueRef() = it.value()/( Dr(it.row()) * Dc(it.col()) );
123 if ( DrRes(it.row()) < abs(it.value()) )
124 DrRes(it.row()) = abs(it.value());
126 if ( DcRes(it.col()) < abs(it.value()) )
127 DcRes(it.col()) = abs(it.value());