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

Method append

src/basis_factorization/SparseUnsortedArray.cpp:214–221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

212}
213
214void SparseUnsortedArray::append( unsigned index, double value )
215{
216 if ( _allocatedSize == _nnz )
217 increaseCapacity();
218
219 _array[_nnz] = Entry( index, value );
220 ++_nnz;
221}
222
223void SparseUnsortedArray::addLastEntry( double entry )
224{

Callers

nothing calls this directly

Calls 1

EntryClass · 0.70

Tested by

no test coverage detected