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 initialize(path,encoding,rc)character(len=*),optional,intent(in)::pathinteger(ut_encoding),optional,intent(in)::encodinginteger,optional,intent(out)::rcinteger::status! System must be initialized once and only once._ASSERT_RC(instance_is_uninitialized(),'UDSystem is initialized already.',UTF_INITIALIZATION_FAILURE)! Disable error messages from udunits2call disable_ut_error_message_handler()call initialize_system(SYSTEM_INSTANCE,path,encoding,rc=status)if(.not.is_ut_success(status))then! On failure, free memorycall finalize()_RETURN(_FAILURE)end if_ASSERT_RC(.not.SYSTEM_INSTANCE%is_free(),'Failed to initialize UDSystem',UTF_NOT_INITIALIZED)_RETURN(_SUCCESS)end subroutine initialize