Skip to content

Commit

Permalink
removing print
Browse files Browse the repository at this point in the history
  • Loading branch information
fawaz committed Dec 22, 2023
1 parent fc0caa4 commit 3572226
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion GFASubgraph/bfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ def main_while_loop(graph, start_node, queue, visited, size):
if n not in visited and n not in queue:
queue.append(n)

print(len(queue), len(visited))
return neighborhood


Expand Down

0 comments on commit 3572226

Please sign in to comment.