isl_basic_set_sort_constraints: take into account all coefficients
[isl.git] / test_inputs / codegen / cloog / logopar.c
blob70f98e8cd8995627233c9bc0b6f92d52d06ae192
2 for (int c1 = 0; c1 <= m; c1 += 1)
3 S1(1, c1);
4 for (int c0 = 2; c0 <= n; c0 += 1) {
5 for (int c1 = 0; c1 < c0 - 1; c1 += 1)
6 S2(c0, c1);
7 for (int c1 = c0 - 1; c1 <= n; c1 += 1) {
8 S1(c0, c1);
9 S2(c0, c1);
11 for (int c1 = n + 1; c1 <= m; c1 += 1)
12 S1(c0, c1);
14 for (int c0 = n + 1; c0 <= m + 1; c0 += 1)
15 for (int c1 = c0 - 1; c1 <= m; c1 += 1)
16 S1(c0, c1);