| 88 | } |
| 89 | |
| 90 | void SparseEtaMatrix::addEntry( unsigned index, double value ) |
| 91 | { |
| 92 | _sparseColumn.append( Entry( index, value ) ); |
| 93 | if ( index == _columnIndex ) |
| 94 | _diagonalElement = value; |
| 95 | } |
| 96 | |
| 97 | void SparseEtaMatrix::dumpDenseTransposed() const |
| 98 | { |
no test coverage detected