summaryrefslogtreecommitdiff
path: root/omegalib/examples/old_test/iter5.oc-rt
diff options
context:
space:
mode:
Diffstat (limited to 'omegalib/examples/old_test/iter5.oc-rt')
-rw-r--r--omegalib/examples/old_test/iter5.oc-rt11
1 files changed, 0 insertions, 11 deletions
diff --git a/omegalib/examples/old_test/iter5.oc-rt b/omegalib/examples/old_test/iter5.oc-rt
deleted file mode 100644
index 8b567d5..0000000
--- a/omegalib/examples/old_test/iter5.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 <=2i && j > i && j <= 16};
-#
-# codegen R;
-for(t1 = 2; t1 <= 9; t1++) {
- for(t2 = t1+1; t2 <= min(2*t1,16); t2++) {
- s1(t1,t2);
- }
-}
-
-#