Nodes of different colours represent the following:
Solid arrows point from a file to a file which depends upon it. A file is dependent upon another if the latter must be compiled before the former can be. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
module types_json_report use json_module, only: json_value implicit none private type, public :: Generating_JSON_Report type(json_value), pointer :: root => null() type(json_value), pointer :: random_seed => null() type(json_value), pointer :: algorithms_weight => null() end type Generating_JSON_Report type, public :: Exploring_JSON_Report type(json_value), pointer :: root => null() type(json_value), pointer :: random_seed => null() end type Exploring_JSON_Report end module types_json_report