Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Source Code
function s_spline_matrix_dense__matvec_prod(self,v_in)result(v_out)class(sll_t_spline_matrix_dense),intent(in)::selfreal(wp),intent(in)::v_in(:)real(wp)::v_out(size(v_in))integer::jSLL_ASSERT(size(v_in,1)==self%n)DO j=1,self%nv_out(j)=DOT_PRODUCT(self%a(:,j),v_in(:))END DO end function s_spline_matrix_dense__matvec_prod