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 data_output_objects implicit none private public :: generating_report_filename, exploring_report_filename, random_number_generator_object, & generating_algorithms_weights_object character(len=*), parameter :: generating_report_filename = "generating_report.json" character(len=*), parameter :: exploring_report_filename = "exploring_report.json" character(len=*), parameter :: random_number_generator_object = "Random Number Generator" character(len=*), parameter :: generating_algorithms_weights_object = & "Generating Algorithms Weight" end module data_output_objects