* \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 */
| 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. |
nothing calls this directly
no test coverage detected