Parallel BFS
Simple Case - Unweighted Graph
Min distance from source to all other nodes
- dist(s) = 0
- dist(v) = 1 if there is an edge from s to v
- dist(v) = for all u s.t. there is an edge from u to v.
Simple Case - Unweighted Graph
Min distance from source to all other nodes