我想知道如果我可以并行使用OpenMP的代码。 将OPENMP使代码运行得更快? 有没有更好的方式来实现这一目标?
vector<int> t; // already initialized
do{
// Something with current permutation
} while(next_permutation(t.begin(), t.end()));
我知道我可以很容易地并行化for
指令,但在这里我有while (condition = true)
。