MCPcopy Create free account
hub / github.com/NeuralNetworkVerification/Marabou / CSRMatrix

Method CSRMatrix

src/basis_factorization/CSRMatrix.cpp:24–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22#include "SparseUnsortedList.h"
23
24CSRMatrix::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
35CSRMatrix::CSRMatrix( const double *M, unsigned m, unsigned n )
36 : _m( 0 )

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected