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_energies_writers use classes_real_writer, only: Abstract_Real_Writer use classes_line_writer, only: Abstract_Line_Writer use classes_triangle_writer, only: Abstract_Triangle_Writer implicit none private type, public :: Concrete_Energies_Writers class(Abstract_Line_Writer), allocatable :: walls_energies, field_energies class(Abstract_Triangle_Writer), allocatable :: short_energies, dipolar_energies class(Abstract_Real_Writer), allocatable :: dipolar_shared_energy end type Concrete_Energies_Writers end module types_energies_writers