We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c61c97a commit 4d5f28bCopy full SHA for 4d5f28b
1 file changed
src/utils.jl
@@ -48,9 +48,7 @@ function stratified_map!(f::Function, n_total::Int, strata, args...;
48
remainder = sample(strata, n_remaining)
49
for (k, stratum) in enumerate(remainder)
50
i = n_total - n_remaining + k
51
- for i in idxs
52
- f(i, stratum, args...)
53
- end
+ f(i, stratum, args...)
54
end
55
56
return nothing
0 commit comments