Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
subroutine machine_const(round_off,sqrrmc,cubrmc,sqtiny,outch)!! Part of rksuite_90 v1.0 (Aug 1994)! software for initial value problems in ODEs!! Authors: R.W. Brankin (NAG Ltd., Oxford, England)! I. Gladwell (Math Dept., SMU, Dallas, TX, USA)! see main doc for contact details!real(kind=wp),intent(out)::round_off,sqrrmc,cubrmc,sqtinyinteger,intent(out)::outch!real(kind=wp)::dummyreal(kind=wp),parameter::third=1.0_wp/3.0_wp,ten=10.0_wp!outch=6!round_off=ten*epsilon(dummy)sqrrmc=sqrt(epsilon(dummy))cubrmc=epsilon(dummy)**thirdsqtiny=sqrt(tiny(dummy))!end subroutine machine_const