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.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
program test1use kindsuse fortimeuse forunittestimplicit none type(timer)::ttype(unit_test)::ut! Elapsed timecall t%timer_start()call sleep(1)! Perform operations herecall t%timer_stop()call ut%check(res=t%elapsed_time,expected=1.0_rk,tol=1.0e-1_rk,msg='test1')end program test1