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.
function utility_det3(A)!!==================================================================!! !! Return determinant of a 3x3 matrix A !! !!===================================================================real(kind=dp),intent(in)::a(3,3)real(kind=dp)::utility_det3utility_det3=A(1,1)*(A(2,2)*A(3,3)-A(2,3)*A(3,2))+&A(1,2)*(A(2,3)*A(3,1)-A(2,1)*A(3,3))+&A(1,3)*(A(2,1)*A(3,2)-A(2,2)*A(3,1))return end function utility_det3