MCPcopy Create free account
hub / github.com/ErrorAtLine0/infinipaint / startVec

Method startVec

include/Eigen/src/SparseCore/SparseMatrix.h:450–455  ·  view source on GitHub ↗

\internal * \sa insertBack, insertBackByOuterInner */

Source from the content-addressed store, hash-verified

448 /** \internal
449 * \sa insertBack, insertBackByOuterInner */
450 inline void startVec(Index outer) {
451 eigen_assert(m_outerIndex[outer] == Index(m_data.size()) &&
452 "You must call startVec for each inner vector sequentially");
453 eigen_assert(m_outerIndex[outer + 1] == 0 && "You must call startVec for each inner vector sequentially");
454 m_outerIndex[outer + 1] = m_outerIndex[outer];
455 }
456
457 /** \internal
458 * 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