1/* Generated from ../../../git/cloog/test/levenshtein-1-2-3.cloog by CLooG 0.14.0-136-gb91ef26 gmp bits in 0.12s. */
2S1(0,0) ;
3S2(1,0) ;
4S3(1,1) ;
5for (i=2;i<=N;i++) {
6  S2(i,0) ;
7  for (j=1;j<=i-1;j++) {
8    S6(i,j) ;
9  }
10  S3(i,i) ;
11}
12S7(N+1,0) ;
13for (j=1;j<=N;j++) {
14  S6(N+1,j) ;
15  S8(N+1,j) ;
16}
17for (i=N+2;i<=2*M-N-2;i++) {
18  j = floord(i-N-1,2) ;
19  S7(i,j) ;
20  if ((i+N)%2 == 0) {
21    S5(i,(i-N)/2) ;
22    S8(i,(i-N)/2) ;
23  }
24  for (j=ceild(i-N+1,2);j<=floord(i+N-1,2);j++) {
25    S6(i,j) ;
26    S8(i,j) ;
27  }
28  if ((i+N)%2 == 0) {
29    S4(i,(i+N)/2) ;
30    S8(i,(i+N)/2) ;
31  }
32}
33for (i=2*M-N-1;i<=2*M-2;i++) {
34  for (j=i-M+1;j<=M-1;j++) {
35    S6(i,j) ;
36  }
37}
38