You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@progress doesn't work when later iterables refer to previous iteration variables:
julia> x = [1:3, 1:2, 5:6];
julia> @progress for y in x, z in y
@show z
end
ERROR: UndefVarError: y not defined
I realize there's a problem computing the progress in this case, but perhaps there could be a better error message or a fallback to compute progress only based on the outer loop.
The text was updated successfully, but these errors were encountered:
@progress
doesn't work when later iterables refer to previous iteration variables:I realize there's a problem computing the progress in this case, but perhaps there could be a better error message or a fallback to compute progress only based on the outer loop.
The text was updated successfully, but these errors were encountered: