jenesuispasgoth

Untitled

Apr 13th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #pragma omp for
  2. for (int i = 1; i < N-1; ++i) {
  3.     if (i < 100) continue;
  4.     if (i > 199 && i < 300) continue;
  5.     for (int j = 1; j < N-1; ++j) {
  6.         stencil();
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment