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 test_mirror_ungridded_dims()type(FieldSpec)::import_spectype(FieldSpec)::export_spectype(ESMF_Geom)::geomtype(UngriddedDims)::export_dimstype(UngriddedDimVector)::ungrid_dimstype(UngriddedDim)::ungrid_dimungrid_dim=UngriddedDim(2)call ungrid_dims%push_back(ungrid_dim)export_dims=UngriddedDims(ungrid_dims)! Mirror ungrids by not specifying anythingimport_spec=FieldSpec(&geom=geom,vertical_grid=BasicVerticalGrid(1),vertical_dim_spec=VerticalDimSpec(),&typekind=ESMF_TYPEKIND_R4,&standard_name='A',long_name='AA',attributes=StringVector(),&units='m')export_spec=FieldSpec(&geom=geom,vertical_grid=BasicVerticalGrid(1),vertical_dim_spec=VerticalDimSpec(),&typekind=ESMF_TYPEKIND_R4,&ungridded_dims=export_dims,&standard_name='A',long_name='AA',attributes=StringVector(),&units='m')@assert_that(import_spec%can_connect_to(export_spec),is(true()))end subroutine test_mirror_ungridded_dims