MCPcopy Create free account
hub / github.com/dblalock/bolt / startVec

Method startVec

cpp/src/external/eigen/src/SparseCore/SparseMatrix.h:407–412  ·  view source on GitHub ↗

\internal * \sa insertBack, insertBackByOuterInner */

Source from the content-addressed store, hash-verified

405 /** \internal
406 * \sa insertBack, insertBackByOuterInner */
407 inline void startVec(Index outer)
408 {
409 eigen_assert(m_outerIndex[outer]==Index(m_data.size()) && "You must call startVec for each inner vector sequentially");
410 eigen_assert(m_outerIndex[outer+1]==0 && "You must call startVec for each inner vector sequentially");
411 m_outerIndex[outer+1] = m_outerIndex[outer];
412 }
413
414 /** \internal
415 * Must be called after inserting a set of non zero entries using the low level compressed API.

Callers 4

factorizeMethod · 0.80
assign_sparse_to_sparseFunction · 0.80
factorizeMethod · 0.80

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected