Nodes of different colours represent the following:
Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
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.
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.
Source Code
subroutine initibmnorm(fname,solid_info)use readinput,only:read_sparse_ijkuse decomp_2d,only:zstart,zendcharacter(11),intent(in)::fnametype(solid_info_type),intent(inout)::solid_infointeger,allocatable::ids_loc(:),pts_loc(:,:)integer::m! Use generic read_sparse_ijk to read and distribute solid pointscall read_sparse_ijk(fname,solid_info%nsolpts,solid_info%nsolptsrank,ids_loc,pts_loc)! Transfer ownership of arrays (no copying, no conversion needed)call move_alloc(ids_loc,solid_info%solptsrank)call move_alloc(pts_loc,solid_info%solpts_loc)!write(*,*) "rank ", myid, " has ", solid_info%nsolptsrank, " solid points from ", fnameend subroutine initibmnorm