Nodes of different colours represent the following:
Solid arrows point from a file to a file which it depends on. A file is dependent upon another if the latter must be compiled before the former can be.
module constants implicit none private integer, parameter :: dp = kind(1.0d0) real(dp), parameter :: pi = 3.141592653589793238462643383279502884197169399_dp real(dp), parameter :: machine_eps = epsilon(1.0_dp) real(dp), parameter :: eps = 1e-12_dp public :: dp, pi, machine_eps end module constants