Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | varNum | |||
real(kind=r64), | intent(in) | :: | value |
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.
SUBROUTINE ExternalInterfaceSetErlVariable(varNum, value)
! SUBROUTINE INFORMATION:
! AUTHOR Rui Zhang
! DATE WRITTEN February 2010
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This is the ExternalInterface runtime write ErlVariable function
! 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
REAL(r64), INTENT(IN) :: value ! The real time value of the vairable to be set
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
ErlVariable(varNum)%Value = SetErlValueNumber(value)
RETURN
END SUBROUTINE ExternalInterfaceSetErlVariable