summaryrefslogtreecommitdiff
path: root/test-chill/test-cases/chill/test_permute.stdout
blob: 0268d6bf52c7b70c1a02a57acd08204b0f069fad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
for(t2 = 0; t2 <= ambn-1; t2++) {
  for(t4 = 0; t4 <= an-1; t4++) {
    if (t2 <= 0) {
      for(t6 = 0; t6 <= bm-1; t6++) {
        s0(t4,t6,t2);
        s1(t4,t6,t2);
      }
    }
    else {
      for(t6 = 0; t6 <= bm-1; t6++) {
        s1(t4,t6,t2);
      }
    }
  }
}