| 228 | } |
| 229 | |
| 230 | void SparseUnsortedArray::erase( unsigned index ) |
| 231 | { |
| 232 | ASSERT( index < _nnz ); |
| 233 | |
| 234 | _array[index] = _array[_nnz - 1]; |
| 235 | --_nnz; |
| 236 | } |
| 237 | |
| 238 | void SparseUnsortedArray::mergeEntries( unsigned source, unsigned target ) |
| 239 | { |
nothing calls this directly
no outgoing calls
no test coverage detected