swap_r Subroutine

public subroutine swap_r(a, b)

Arguments

Type IntentOptional AttributesName
real(kind=SP), intent(inout) :: a
real(kind=SP), intent(inout) :: b

Called by

proc~~swap_r~~CalledByGraph proc~swap_r swap_r interface~swap swap interface~swap->proc~swap_r

Contents

Source Code


Source Code

	SUBROUTINE swap_r(a,b)
	REAL(SP), INTENT(INOUT) :: a,b
	REAL(SP) :: dum
	dum=a
	a=b
	b=dum
	END SUBROUTINE swap_r