Skip to content

Commit

Permalink
remove trailing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
warrickball committed Dec 5, 2023
1 parent e390304 commit 8abfe95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neu/private/mod_neu.f90
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ subroutine phot_neu(sphot,sphotdt,sphotdd,sphotda,sphotdz, input)

! sin/cos (5 fac1 tau)
sin5 = sin1 * (5.0d0 - sin1 * sin1 * (20.0d0 - 16.0d0 * sin1 * sin1))
cos5 = cos1 * (cos1 * cos1 * (16.0d0 * cos1 * cos1 - 20.0d0) + 5.0d0);
cos5 = cos1 * (cos1 * cos1 * (16.0d0 * cos1 * cos1 - 20.0d0) + 5.0d0)

last = cos(fac2*tau)
xast = sin(fac2*tau)
Expand Down Expand Up @@ -1047,7 +1047,7 @@ subroutine brem_neu_liquid_metal(sbrem,sbremdt,sbremdd,sbremda,sbremdz,t8, input

! sin/cos (5 u)
sin5 = sin1 * (5.0d0 - sin1 * sin1 * (20.0d0 - 16.0d0 * sin1 * sin1))
cos5 = cos1 * (cos1 * cos1 * (16.0d0 * cos1 * cos1 - 20.0d0) + 5.0d0);
cos5 = cos1 * (cos1 * cos1 * (16.0d0 * cos1 * cos1 - 20.0d0) + 5.0d0)


!..equation 5.21
Expand Down

0 comments on commit 8abfe95

Please sign in to comment.