get_elem_dense Function

private function get_elem_dense(this, index) result(element)

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 Bound

dense_lMat_t

Arguments

Type IntentOptional Attributes Name
class(dense_lMat_t), intent(in) :: this
integer(kind=int64), intent(in) :: index

Return Value real(kind=dp)


Contents

Source Code


Source Code

    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