Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | varNum |
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.
FUNCTION isExternalInterfaceErlVariable(varNum) RESULT(isExternalInterfaceVar)
! SUBROUTINE INFORMATION:
! AUTHOR Michael Wetter
! DATE WRITTEN February 2010
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This function checks if an Erl name obtained from the xml file
! is indeed specified as a ExternalInterface variable in the idf file
! METHODOLOGY EMPLOYED:
!
! USE STATEMENTS:
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER, INTENT(IN) :: varNum ! The variable index to be written during run time
LOGICAL :: isExternalInterfaceVar ! Set to true if the variable is a ExternalInterface variable
isExternalInterfaceVar = ErlVariable(varNum)%SetByExternalInterface
RETURN
END FUNCTION isExternalInterfaceErlVariable