| 25 | public: |
| 26 | USING_MATRIX; |
| 27 | SparseMatrix() { } |
| 28 | SparseMatrix( |
| 29 | const MatrixInfo& info, SArray<size_t> offset, SArray<I> index, SArray<V> value) |
| 30 | : Matrix<V>(info, value), offset_(offset), index_(index) { |
nothing calls this directly
no outgoing calls
no test coverage detected