Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ifort fix #40

Merged
merged 3 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/test_radiation.pf
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
!------------------------------------------------------------------------
module test_radiation
use funit
use radiation
use radiation, only: Radiation_class
use slam_reduction_class, only: Reduction_type
use slam_math
use slam_error_handling
use satellite
use solarsystem
use Neptuneclass
use solarsystem, only: Solarsystem_class, initSolarSystem
use Neptuneclass, only: Neptune_class, time_t

implicit none

Expand Down Expand Up @@ -330,4 +330,4 @@ end subroutine test_getSrpAcceleration

! end subroutine test_getShadow

end module test_radiation
end module test_radiation
4 changes: 2 additions & 2 deletions tests/test_solarsystem.pf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
!------------------------------------------------------------------------
module test_solarsystem
use funit
use solarsystem
use solarsystem, only: Solarsystem_class
use neptuneClass

implicit none
Expand Down Expand Up @@ -111,4 +111,4 @@ module test_solarsystem



end module test_solarsystem
end module test_solarsystem
6 changes: 3 additions & 3 deletions tests/test_thirdbody.pf
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ use thirdbody
use slam_reduction_class, only: Reduction_type
use slam_math
use slam_error_handling
use solarsystem
use neptuneClass
use solarsystem, only: Solarsystem_class, initSolarSystem
use neptuneClass, only: time_t
implicit none

contains
Expand Down Expand Up @@ -121,4 +121,4 @@ contains



end module test_thirdbody
end module test_thirdbody
Loading