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 AdditionalInit_ESAtmo3D(this)implicit none class(ESAtmo3D),intent(inout)::this! Localprocedure(SELF_bcMethod),pointer::bcfunc! Call parent _t AdditionalInit (registers CPU BC)call AdditionalInit_ESAtmo3D_t(this)! Re-register with GPU-accelerated versions for both lists.! hyperbolicBCs and parabolicBCs are independent linked lists, so! the same SELF_BC_NONORMALFLOW tag applies in both contexts.bcfunc=>hbc3d_NoNormalFlow_ESAtmo3D_GPU_wrappercall this%hyperbolicBCs%RegisterBoundaryCondition(&SELF_BC_NONORMALFLOW,"no_normal_flow",bcfunc)bcfunc=>pbc3d_NoStress_ESAtmo3D_GPU_wrappercall this%parabolicBCs%RegisterBoundaryCondition(&SELF_BC_NONORMALFLOW,"no_normal_flow",bcfunc)endsubroutine AdditionalInit_ESAtmo3D