| 269 | } |
| 270 | |
| 271 | unsigned SparseUnsortedLists::getNnz() const |
| 272 | { |
| 273 | unsigned result = 0; |
| 274 | for ( unsigned i = 0; i < _m; ++i ) |
| 275 | result += _rows[i]->getNnz(); |
| 276 | |
| 277 | return result; |
| 278 | } |
| 279 | |
| 280 | void SparseUnsortedLists::toDense( double *result ) const |
| 281 | { |