Get an element of the 6-index integrals from the densely stored container @param[in] index position of the element @return element value of the element
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(dense_lMat_t), | intent(in) | :: | this | |||
integer(kind=int64), | intent(in) | :: | index |
function get_elem_dense(this, index) result(element)
class(dense_lMat_t), intent(in) :: this
integer(int64), intent(in) :: index
HElement_t(dp) :: element
element = this%lMat_vals%ptr(index)
end function get_elem_dense