I\'d like to parallelize the following piece of code but am new to openmp and creating parallel code.
std::vector good_matches; for (int i = 0;
TBB's concurrent_vector acts much like std::vector, but allows parallel calls to push_back.
concurrent_vector
std::vector
push_back