Parallel random graph construction in GraphBIG is not implemented correctly.
C++ standard library containers like vector, list, and unordered_map are not thread-safe. Calling push_back concurrently on the same data structure without synchronization is leading to data corruption in this benchmark. Locking each vertex before adding an edge should solve the problem, but this will have a significant impact on performance.
See #7 for a demonstration of this issue.