| 22 | #include "SparseUnsortedList.h" |
| 23 | |
| 24 | CSRMatrix::CSRMatrix() |
| 25 | : _m( 0 ) |
| 26 | , _n( 0 ) |
| 27 | , _A( NULL ) |
| 28 | , _IA( NULL ) |
| 29 | , _JA( NULL ) |
| 30 | , _nnz( 0 ) |
| 31 | , _estimatedNnz( 0 ) |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | CSRMatrix::CSRMatrix( const double *M, unsigned m, unsigned n ) |
| 36 | : _m( 0 ) |
nothing calls this directly
no outgoing calls
no test coverage detected