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_physical_model_wrapper use types_environment_wrapper, only: Environment_Wrapper use types_mixture_wrapper, only: Mixture_Wrapper use types_short_interactions_wrapper, only: Short_Interactions_Wrapper use types_dipolar_interactions_dynamic_wrapper, only: Dipolar_Interactions_Dynamic_Wrapper use types_dipolar_interactions_static_wrapper, only: Dipolar_Interactions_Static_Wrapper use classes_dipolar_interactions_facade, only: Abstract_Dipolar_Interactions_Facade implicit none private type, public :: Physical_Model_Wrapper type(Environment_Wrapper) :: environment type(Mixture_Wrapper) :: mixture type(Short_Interactions_Wrapper) :: short_interactions type(Dipolar_Interactions_Dynamic_Wrapper), allocatable :: dipolar_interactions_dynamic(:) type(Dipolar_Interactions_Static_Wrapper), allocatable :: dipolar_interactions_static(:) class(Abstract_Dipolar_Interactions_Facade), allocatable :: dipolar_interactions_facades(:) end type Physical_Model_Wrapper end module types_physical_model_wrapper