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_markov_chain_generator_wrapper use types_changes_wrapper, only: Changes_Wrapper use classes_generating_algorithm, only: Generating_Algorithm_Wrapper use classes_plmc_propagator, only: Abstract_PLMC_Propagator implicit none private type, public :: Markov_Chain_Generator_Wrapper type(Changes_Wrapper) :: changes type(Generating_Algorithm_Wrapper) :: generating_algorithms(10) class(Abstract_PLMC_Propagator), allocatable :: plmc_propagator end type Markov_Chain_Generator_Wrapper end module types_markov_chain_generator_wrapper