このブラウザーはサポートされなくなりました。
Microsoft Edge にアップグレードすると、最新の機能、セキュリティ更新プログラム、およびテクニカル サポートを利用できます。
The following example demonstrates the reduction clause (Section 2.7.2.6 on page 28):
#pragma omp parallel for private(i) shared(x, y, n) \ reduction(+: a, b) for (i=0; i<n; i++) { a = a + x[i]; b = b + y[i]; }