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

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed bug in associate statement
  • Loading branch information
daminton committed Apr 2, 2021
1 parent da36377 commit 5608ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rmvs/rmvs_step.f90
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ module subroutine rmvs_step_in_pl(self, cb, tp, config, t, dt)

dti = dt / NTPHENC

associate(pl => self, npl => self%nbody, xht => tp%xh, vht => tp%vh, plind => self%plind, nenc => pl%nenc)
associate(pl => self, npl => self%nbody, xht => tp%xh, vht => tp%vh, plind => self%plind, nenc => self%nenc)
if (config%loblatecb) call pl%obl_acc_in(cb)
call pl%make_planetocentric(cb, tp, config)
do i = 1, npl
Expand Down

0 comments on commit 5608ae1

Please sign in to comment.