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_observables_changes use, intrinsic :: iso_fortran_env, only: DP => REAL64 use types_real_wrapper, only: Real_Line use module_changes_success, only: Concrete_Change_Counter, Concrete_Changes_Counter, & Concrete_Changes_Success, Concrete_Change_Counter_Line implicit none private type, public :: Concrete_Observables_Changes type(Concrete_Changes_Counter), allocatable :: changes_counters(:) type(Concrete_Changes_Success), allocatable :: changes_sucesses(:) type(Concrete_Change_Counter_Line), allocatable :: switches_counters(:) type(Real_Line), allocatable :: switches_successes(:) type(Concrete_Change_Counter), allocatable :: transmutations_counters(:, :) real(DP), allocatable :: transmutations_successes(:, :) end type Concrete_Observables_Changes end module types_observables_changes