| 91 | } |
| 92 | |
| 93 | void SparseUnsortedList::dump() const |
| 94 | { |
| 95 | printf( "\nDumping sparse unsortedList: (nnz = %u)\n", _list.size() ); |
| 96 | for ( const auto &entry : _list ) |
| 97 | printf( "\tEntry %u: %6.2lf\n", entry._index, entry._value ); |
| 98 | printf( "\n" ); |
| 99 | } |
| 100 | |
| 101 | void SparseUnsortedList::dumpDense() const |
| 102 | { |