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
From lines 152-157 in "clipping_processor.jl" I implemented a "skipping scheme." Essentially because I am iterating through a list that I am actively adding to. So if I add a new element to the list at some stage in the for loop, there is a chance I might run into it again as the for-loop goes through the list, but I do not want to process it twice, hence the skipping scheme.
I think the way I approached getting the functionality I wanted was convoluted and there is probably a better way to do this.
The text was updated successfully, but these errors were encountered:
From lines 152-157 in "clipping_processor.jl" I implemented a "skipping scheme." Essentially because I am iterating through a list that I am actively adding to. So if I add a new element to the list at some stage in the for loop, there is a chance I might run into it again as the for-loop goes through the list, but I do not want to process it twice, hence the skipping scheme.
I think the way I approached getting the functionality I wanted was convoluted and there is probably a better way to do this.
The text was updated successfully, but these errors were encountered: