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
{{ message }}
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
I have learnt a lot from your code, while I have a question about the bfs function described as follows:
I know the code of create_batch.py lines#259-276 is to achieve breadth-first search and it is effective, but I have a doubt about whether lines#271-273 does not work or not because line#266q.put((target, graph[top[0]][target])) have put the child node to queue, such that the time of constructing 2-hop neighbors is so long (as you mentioned in previous issues, about 45 minutes), so in my opinion whether we could move line#266 to the next line of if distance[target] > 2: continue to make it work.
Thanks.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello, authors.
I have learnt a lot from your code, while I have a question about the
bfs
function described as follows:I know the code of create_batch.py lines
#259-276
is to achieve breadth-first search and it is effective, but I have a doubt about whether lines#271-273
does not work or not because line#266
q.put((target, graph[top[0]][target]))
have put the child node to queue, such that the time of constructing 2-hop neighbors is so long (as you mentioned in previous issues, about 45 minutes), so in my opinion whether we could move line#266
to the next line ofif distance[target] > 2: continue
to make it work.Thanks.
The text was updated successfully, but these errors were encountered: