We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
max_time
No description provided.
The text was updated successfully, but these errors were encountered:
iterate is rolled out to
iterate
next = iterate(iter) while next !== nothing (item, state) = next # body next = iterate(iter, state) end
according to (https://docs.julialang.org/en/v1/manual/interfaces/).
We should create our own @iterate max_time BFSIterator macro, that does something like
@iterate max_time BFSIterator
next = iterate(iter) while next !== nothing (item, state) = next # body task = @spawn iterate(iter, state) next = fetch(task) end
Sorry, something went wrong.
MAybe this post helps: https://discourse.julialang.org/t/simple-timeout-of-function/99578
sebdumancic
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: