summaryrefslogtreecommitdiff
path: root/omegalib/examples/old_test/iter2.oc-rt
diff options
context:
space:
mode:
Diffstat (limited to 'omegalib/examples/old_test/iter2.oc-rt')
-rw-r--r--omegalib/examples/old_test/iter2.oc-rt11
1 files changed, 0 insertions, 11 deletions
diff --git a/omegalib/examples/old_test/iter2.oc-rt b/omegalib/examples/old_test/iter2.oc-rt
deleted file mode 100644
index 0597426..0000000
--- a/omegalib/examples/old_test/iter2.oc-rt
+++ /dev/null
@@ -1,11 +0,0 @@
-# Omega Calculator v1.2 (based on Omega Library 1.2, August, 2000):
-# R := { [i,j] : i <= 10 && i >= 1 && j <=100 && j >= 10};
-#
-# codegen R;
-for(t1 = 1; t1 <= 10; t1++) {
- for(t2 = 10; t2 <= 100; t2++) {
- s1(t1,t2);
- }
-}
-
-#