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 integer type errors
  • Loading branch information
daminton committed Sep 5, 2022
1 parent 374b0a7 commit b4ef786
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/symba/symba_step.f90
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ module subroutine symba_step_reset_system(self, param)
class is (symba_tp)
associate(npl => pl%nbody, ntp => tp%nbody)
nenc_old = system%plplenc_list%nenc
call system%plplenc_list%setup(0)
call system%plplcollision_list%setup(0)
call system%plplenc_list%setup(0_I8B)
call system%plplcollision_list%setup(0_I8B)
if (npl > 0) then
pl%lcollision(1:npl) = .false.
call pl%reset_kinship([(i, i=1, npl)])
Expand All @@ -284,7 +284,7 @@ module subroutine symba_step_reset_system(self, param)
end if

nenc_old = system%pltpenc_list%nenc
call system%pltpenc_list%setup(0)
call system%pltpenc_list%setup(0_I8B)
if (ntp > 0) then
tp%nplenc(1:ntp) = 0
tp%levelg(1:ntp) = -1
Expand Down

0 comments on commit b4ef786

Please sign in to comment.