Skip to content

Commit 4988594

Browse files
committed
a few more whitespaces
1 parent f9eda0f commit 4988594

File tree

4 files changed

+6
-18
lines changed

4 files changed

+6
-18
lines changed

star/test_suite/custom_rates/src/run.f90

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@ program run
1212

1313
call do_run_star
1414

15-
end program
16-
15+
end program run

stella/src/stl/rad_photo_cross_section.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module rad_photo_cross_section
1212
interface photoCross
1313
module procedure photoCrossVerner, ics_full
1414
end interface
15-
15+
1616
real (kind=sp), parameter, private :: p_e_max = 5.d4
1717
integer i
1818
integer, dimension(7) :: L, IS2Ne

stella/src/util/epsilon.f90

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11

2-
program test_epsilon
2+
program test_epsilon
33
real, parameter :: x = 3.143
44
real(8), parameter :: y = 2.33
55
print *, EPSILON(x)
66
print *, EPSILON(y)
77
end program test_epsilon
8-

stella/src/util/nag_sub.F90

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,7 @@ module nag_sub
2020

2121
implicit none
2222
private
23-
24-
character(len=*), parameter, private :: mdl_name = 'lnag_sub'
25-
26-
public :: nag_d01gaf
27-
28-
contains
23+
character(len=*), parameter, private :: mdl_name = 'lnag_sub' public :: nag_d01gaf contains
2924

3025
!!******
3126
!!
@@ -45,19 +40,14 @@ module nag_sub
4540
!! see SUBROUTINE D01GAF in NAG
4641
!!
4742
!! OUTPUT
48-
!! -
49-
!! SOURCE
43+
!! -!! SOURCE
5044
!!
5145
!!*** **********************************************************************
5246
subroutine nag_d01gaf (X,y,N,ans,err)
53-
real (kind=dp), dimension(:), intent(in) :: X
54-
real (kind=dp), dimension(:), intent(in) :: y
55-
integer, intent(in) :: N
56-
real (kind=dp), intent(out) :: ans, err
47+
real (kind=dp), dimension(:), intent(in) :: X real (kind=dp), dimension(:), intent(in) :: y integer, intent(in) :: N real (kind=dp), intent(out) :: ans, err
5748
character(len=*), parameter :: subrtn_name = 'd01gaf' &
5849
, fullPathSubrtn = mdl_name//'.'//subrtn_name
5950
integer :: ifail
60-
6151

6252
call d01gaf(X,y,N,ans,err,ifail)
6353
if(ifail > 0) then

0 commit comments

Comments
 (0)