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. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
subroutine UpdateGRK3_DGModel3D(this,m)implicit none class(DGModel3D),intent(inout)::thisinteger,intent(in)::m! Localinteger::ndof! The stepped variables occupy the leading nstepped entries of the! variable dimension (the slowest-varying index of the interior array),! so restricting ndof to nstepped updates exactly variables 1:nstepped.ndof=this%nstepped*&this%solution%nelem*&(this%solution%interp%N+1)*&(this%solution%interp%N+1)*&(this%solution%interp%N+1)! Fused tendency + RK stage update (no separate CalculateDSDt pass).call UpdateGRK_CalculateDSDt_gpu(this%worksol%interior_gpu,this%solution%interior_gpu,&this%fluxDivergence%interior_gpu,this%source%interior_gpu,&rk3_a(m),rk3_g(m),this%dt,ndof)endsubroutine UpdateGRK3_DGModel3D