summaryrefslogtreecommitdiff
path: root/omegalib/examples/old_test/m9.oc-rt
diff options
context:
space:
mode:
Diffstat (limited to 'omegalib/examples/old_test/m9.oc-rt')
-rw-r--r--omegalib/examples/old_test/m9.oc-rt20
1 files changed, 0 insertions, 20 deletions
diff --git a/omegalib/examples/old_test/m9.oc-rt b/omegalib/examples/old_test/m9.oc-rt
deleted file mode 100644
index c331a0c..0000000
--- a/omegalib/examples/old_test/m9.oc-rt
+++ /dev/null
@@ -1,20 +0,0 @@
->>> IS:={[i,j]: 1 <= i,j <= 9};
->>> T1:={[i,j]->[2j,i,0]};
->>> T2:={[i,j]->[2j,i,1]};
->>> codegen T1:IS,T2:IS;
-for(t1 = 2; t1 <= 18; t1 += 2) {
- for(t2 = 1; t2 <= 9; t2++) {
- s1(t2,intDiv(t1,2));
- s2(t2,intDiv(t1,2));
- }
-}
-
->>> codegen 2 T1:IS,T2:IS;
-for(t1 = 2; t1 <= 18; t1 += 2) {
- for(t2 = 1; t2 <= 9; t2++) {
- s1(t2,intDiv(t1,2));
- s2(t2,intDiv(t1,2));
- }
-}
-
-