Skip to content

Commit 7232323

Browse files
authored
Merge pull request #760 from MESAHub/chore/pmocz/format
fortitude linting
2 parents 5f176ee + b7d6a92 commit 7232323

File tree

212 files changed

+330
-223
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

212 files changed

+330
-223
lines changed

astero/private/astero_run_support.f90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ subroutine do_run_star_astero( &
4444
use gyre_support, only: gyre_is_enabled, init_gyre
4545
interface
4646
subroutine extras_controls(id, ierr)
47+
implicit none
4748
integer, intent(in) :: id
4849
integer, intent(out) :: ierr
4950
end subroutine extras_controls

astero/public/astero_def.f90

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,15 @@ module astero_def
4545
abstract interface
4646

4747
subroutine other_proc_interface(id, ierr)
48+
implicit none
4849
integer, intent(in) :: id
4950
integer, intent(out) :: ierr
5051
end subroutine other_proc_interface
5152

5253
subroutine other_adipls_mode_info_interface( &
5354
l, order, freq, inertia, x, y, aa, data, nn, iy, iaa, ispcpr, ierr)
5455
use const_def, only: dp
56+
implicit none
5557
integer, intent(in) :: l, order
5658
real(dp), intent(in) :: freq, inertia
5759
integer, intent(in) :: nn, iy, iaa, ispcpr
@@ -614,6 +616,7 @@ end subroutine other_adipls_mode_info_interface
614616

615617
subroutine set_constraint_value_interface(id, name, val, ierr)
616618
use const_def, only: dp, strlen
619+
implicit none
617620
integer, intent(in) :: id
618621
character(len=strlen), intent(in) :: name
619622
real(dp), intent(out) :: val
@@ -622,13 +625,15 @@ end subroutine set_constraint_value_interface
622625

623626
subroutine set_param_interface(id, name, val, ierr)
624627
use const_def, only: dp, strlen
628+
implicit none
625629
integer, intent(in) :: id
626630
character(len=strlen), intent(in) :: name ! which param to set
627631
real(dp), intent(in) :: val
628632
integer, intent(out) :: ierr
629633
end subroutine set_param_interface
630634

631635
subroutine extras_controls_interface(id, ierr)
636+
implicit none
632637
integer, intent(in) :: id
633638
integer, intent(out) :: ierr
634639
end subroutine extras_controls_interface

astero/public/astero_lib.f90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ subroutine run_star_astero( &
5050
use astero_def, only: init_astero_def
5151
interface
5252
subroutine extras_controls(id, ierr)
53+
implicit none
5354
integer, intent(in) :: id
5455
integer, intent(out) :: ierr
5556
end subroutine extras_controls

astero/test_suite/astero_adipls/src/run.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ program run
22
use astero_lib, only: run_star_astero
33
use run_star_extras, only: extras_controls
44
call run_star_astero(extras_controls)
5-
end program
5+
end program run

astero/test_suite/astero_gyre/src/run.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ program run
22
use astero_lib, only: run_star_astero
33
use run_star_extras, only: extras_controls
44
call run_star_astero(extras_controls)
5-
end program
5+
end program run

astero/test_suite/example_astero/src/run.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ program run
22
use astero_lib, only: run_star_astero
33
use run_star_extras, only: extras_controls
44
call run_star_astero(extras_controls)
5-
end program
5+
end program run

astero/test_suite/fast_from_file/src/run.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ program run
22
use astero_lib, only: run_star_astero
33
use run_star_extras, only: extras_controls
44
call run_star_astero(extras_controls)
5-
end program
5+
end program run

astero/test_suite/fast_newuoa/src/run.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ program run
22
use astero_lib, only: run_star_astero
33
use run_star_extras, only: extras_controls
44
call run_star_astero(extras_controls)
5-
end program
5+
end program run

astero/test_suite/fast_scan_grid/src/run.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ program run
22
use astero_lib, only: run_star_astero
33
use run_star_extras, only: extras_controls
44
call run_star_astero(extras_controls)
5-
end program
5+
end program run

astero/test_suite/fast_simplex/src/run.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ program run
22
use astero_lib, only: run_star_astero
33
use run_star_extras, only: extras_controls
44
call run_star_astero(extras_controls)
5-
end program
5+
end program run

0 commit comments

Comments
 (0)