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
function make_ungridded_dims(names)result(dims)type(UngriddedDims)::dimscharacter(len=*),intent(in)::names(:)type(UngriddedDim),allocatable::dims_array(:)integer::icharacter(len=:),allocatable::nameallocate(dims_array(size(names)))do i=1,size(names)name=trim(names(i))dims_array(i)=UngriddedDim(len(name),name=name)end dodims=UngriddedDims(dims_array)end function make_ungridded_dims