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_vm_operatorscall ESMF_VMGetCurrent(vm,rc=rc)!------------------------------------------------------------------------!EX_UTestwrite(name,*)"VM equality before assignment Test"write(failMsg,*)"Did not return ESMF_SUCCESS"vmBool=(vmAlias.eq.vm)call ESMF_Test(.not.vmBool,name,failMsg,result,ESMF_SRCLINE)!------------------------------------------------------------------------!EX_UTest! Testing ESMF_VMAssignment(=)()write(name,*)"VM assignment and equality Test"write(failMsg,*)"Did not return ESMF_SUCCESS"vmAlias=vmvmBool=(vmAlias.eq.vm)call ESMF_Test(vmBool,name,failMsg,result,ESMF_SRCLINE)!------------------------------------------------------------------------!EX_UTest! Testing ESMF_VMOperator(==)()write(name,*)"VM equality Test"write(failMsg,*)"Did not return ESMF_SUCCESS"vmBool=(vmAlias==vm)call ESMF_Test(vmBool,name,failMsg,result,ESMF_SRCLINE)!------------------------------------------------------------------------!EX_UTest! Testing ESMF_VMOperator(/=)()write(name,*)"VM non-equality after destroy Test"write(failMsg,*)"Did not return ESMF_SUCCESS"vmBool=(vmAlias/=vm)call ESMF_Test(.not.vmBool,name,failMsg,result,ESMF_SRCLINE)end subroutine test_vm_operators