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.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
subroutine test_equal_diff_dims()type(Variable)::v1,v2v1=Variable(type=pFIO_INT32,dimensions='x')v2=v1@assertTrue(v1==v2)@assertFalse(v1/=v2)v2=Variable(type=pFIO_INT32,dimensions='y')@assertTrue(v1==v1)@assertFalse(v1==v2)! dimension order mattersv1=Variable(type=pFIO_INT32,dimensions='x,y')v2=Variable(type=pFIO_INT32,dimensions='y,x')@assertFalse(v1==v2)end subroutine test_equal_diff_dims