Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Fixed public/private issues that gfortran picked up on but ifort did not
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Jul 9, 2021
1 parent ceade10 commit 1715d42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/helio_classes.f90
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module helio_classes
!! Definition of classes and methods specific to the Democratic Heliocentric Method
!! Adapted from David E. Kaufmann's Swifter routine: helio.f90
use swiftest_globals
use swiftest_classes, only : swiftest_cb, swiftest_pl, swiftest_tp
use swiftest_classes, only : swiftest_cb, swiftest_pl, swiftest_tp, swiftest_nbody_system
use whm_classes, only : whm_nbody_system
implicit none

Expand Down
2 changes: 1 addition & 1 deletion src/modules/rmvs_classes.f90
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ module rmvs_classes
!*******************************************************************************************************************************

!> RMVS massive body particle class
type, private, extends(whm_pl) :: rmvs_pl
type, public, extends(whm_pl) :: rmvs_pl
integer(I4B), dimension(:), allocatable :: nenc !! number of test particles encountering planet this full rmvs time step
integer(I4B), dimension(:), allocatable :: tpenc1P !! index of first test particle encountering planet
integer(I4B), dimension(:), allocatable :: plind ! Connects the planetocentric indices back to the heliocentric planet list
Expand Down

0 comments on commit 1715d42

Please sign in to comment.