standard style

This commit is contained in:
Martin Diehl 2022-12-02 20:41:47 +01:00
parent 18ad14708f
commit f61273c062
1 changed files with 5 additions and 3 deletions

View File

@ -1218,6 +1218,7 @@ subroutine selfTest()
integer, intent(in) :: n
real(pReal), dimension(n) :: planeCosine
planeCosine = cos(real(math_range(n),pReal)/real(n,pReal)*TAU-TAU/real(n*2,pReal))
end function planeCosine
@ -1226,6 +1227,7 @@ subroutine selfTest()
integer, intent(in) :: n
real(pReal), dimension(n) :: planeSine
planeSine = sin(real(math_range(n),pReal)/real(n,pReal)*TAU-TAU/real(n*2,pReal))
end function planeSine