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

Commit

Permalink
Fixed typo. Squaring turned into a multiply by 2 in the code conversi…
Browse files Browse the repository at this point in the history
…on. oops.
  • Loading branch information
daminton committed Aug 11, 2021
1 parent 7b9e9ad commit 3971371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symba/symba_discard.f90
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ subroutine symba_discard_cb_pl(pl, system, param)
associate(npl => pl%nbody, cb => system%cb)
call system%set_msys()
rmin2 = param%rmin**2
rmax2 = param%rmax*2
rmax2 = param%rmax**2
rmaxu2 = param%rmaxu**2
do i = 1, npl
if (pl%status(i) == ACTIVE) then
Expand Down

0 comments on commit 3971371

Please sign in to comment.