reverse the changes of the previos step -- makes a row-standardized matrix from a symmetric one
| 158 | // reverse the changes of the previos step -- makes a |
| 159 | // row-standardized matrix from a symmetric one |
| 160 | void SparseMatrix::makeRowStd() |
| 161 | { |
| 162 | for (int r = 0; r < size; ++r) { |
| 163 | row[ r ].mColumnDivRow( scale, r ); |
| 164 | }; |
| 165 | } |
| 166 | |
| 167 | void SparseMatrix::IminusRhoThis( const double rho, const DenseVector &column, |
| 168 | DenseVector &result) const { |
no test coverage detected