| 668 | * \param newValue the new value at that entry |
| 669 | */ |
| 670 | __device__ CUMAT_STRONG_INLINE void setRawCoeff(Index index, const _Scalar& newValue) |
| 671 | { |
| 672 | CUMAT_ASSERT_CUDA(index >= 0); |
| 673 | CUMAT_ASSERT_CUDA(index < size()); |
| 674 | data_.data()[index] = newValue; |
| 675 | } |
| 676 | |
| 677 | /** |
| 678 | * \brief Access to the linearized coefficient, read-only. |