MCPcopy Create free account
hub / github.com/Meshcapade/difflocks / setRawCoeff

Function setRawCoeff

extensions/include/cuMat/src/SparseMatrix.h:165–168  ·  view source on GitHub ↗

* \brief Access to the linearized coefficient, write-only. * The format of the indexing depends on whether this * matrix is column major (ColumnMajorBit) or row major (RowMajorBit). * Requirement of \c AccessFlags::WriteCwise * \param index the linearized index of the entry. * \param newValue the new value at that entry */

Source from the content-addressed store, hash-verified

163 * \param newValue the new value at that entry
164 */
165 __device__ CUMAT_STRONG_INLINE void setRawCoeff(Index index, const _Scalar& newValue)
166 {
167 A_.setRawCoeff(index, newValue);
168 }
169
170 /**
171 * \brief Access to the linearized coefficient, read-only.

Callers

nothing calls this directly

Calls 1

setRawCoeffMethod · 0.45

Tested by

no test coverage detected