Skip to content

Commit

Permalink
TODO label update
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo committed Jun 16, 2021
1 parent 28cb91c commit 83649d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PySDM/backends/numba/impl/_algorithmic_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def adaptive_sdm_gamma_body(gamma, idx, length, n, cell_id, dt_left, dt, dt_rang
dt_todo = np.empty_like(dt_left)
for cid in numba.prange(len(dt_todo)):
dt_todo[cid] = min(dt_left[cid], dt_range[1])
for i in range(length // 2): # TODO #401
for i in range(length // 2): # TODO #571
if gamma[i] == 0:
continue
j, k = pair_indices(i, idx, is_first_in_pair)
Expand Down

0 comments on commit 83649d5

Please sign in to comment.