summaryrefslogtreecommitdiff
path: root/omegalib/examples/old_test/stride1.oc-rt
blob: a577449eab32ac5766a271be4a21f7c8c3a780ff (plain)
1
2
3
4
5
6
7
8
9
# Omega Calculator v1.2 (based on Omega Library 1.2, August, 2000):
# R := { [i] : i < 10 && i > 1 && exists ( alpha : i = 3alpha) };
# 
# codegen R;
for(t1 = 3; t1 <= 9; t1 += 3) {
  s1(t1);
}

#