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

Commit

Permalink
Fixed bad radius variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Mar 8, 2023
1 parent 2ed8bc0 commit d6e5d08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/encounter/encounter_check.f90
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ module subroutine encounter_check_sweep_aabb_double_list(self, n1, n2, r1, v1, r
iend = self%aabb%iend(i) - 1_I8B
nbox = iend - ibeg + 1
ii = i - n1
call encounter_check_all_sweep_one(ii, nbox, r1(1,ii), r1(2,ii), r1(3,ii), v2(1,ii), v2(2,ii), v2(3,ii), &
call encounter_check_all_sweep_one(ii, nbox, r2(1,ii), r2(2,ii), r2(3,ii), v2(1,ii), v2(2,ii), v2(3,ii), &
xind(ibeg:iend), yind(ibeg:iend), zind(ibeg:iend),&
vxind(ibeg:iend), vyind(ibeg:iend), vzind(ibeg:iend), &
renc2(ii), rencind(ibeg:iend), dt, ext_ind(ibeg:iend), &
Expand Down

0 comments on commit d6e5d08

Please sign in to comment.