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.
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_exploring_writers_wrapper use classes_real_writer, only: Abstract_Real_Writer use classes_line_writer, only: Abstract_Line_Writer use types_energies_writers, only: Concrete_Energies_Writers use classes_directed_graph_writer, only: Abstract_Directed_Graph_Writer implicit none private type, public :: Exploring_Writers_Wrapper class(Abstract_Real_Writer), allocatable :: maximum_boxes_compression_delta(:) class(Abstract_Real_Writer), allocatable :: beta_pressures_excess(:) type(Concrete_Energies_Writers), allocatable :: energies(:) class(Abstract_Line_Writer), allocatable :: inv_pow_activities(:) class(Abstract_Line_Writer), allocatable :: insertion_successes(:) class(Abstract_Directed_Graph_Writer), allocatable :: dipoles_graph_writer end type Exploring_Writers_Wrapper end module types_exploring_writers_wrapper