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

Method toDense

src/basis_factorization/SparseUnsortedArrays.cpp:311–317  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

309}
310
311void SparseUnsortedArrays::toDense( double *result ) const
312{
313 std::fill_n( result, _n * _m, 0 );
314
315 for ( unsigned i = 0; i < _m; ++i )
316 _rows[i]->toDense( result + ( i * _n ) );
317}
318
319void SparseUnsortedArrays::clear()
320{

Callers 1

getRowDenseMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected