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_cells_wrapper use classes_neighbour_cells, only: Neighbour_Cells_Line use classes_visitable_cells, only: Abstract_Visitable_Cells implicit none private type, public :: Cells_Wrapper type(Neighbour_Cells_Line), allocatable :: neighbour_cells(:) class(Abstract_Visitable_Cells), allocatable :: visitable_cells(:, :) end type Cells_Wrapper end module types_cells_wrapper