summaryrefslogtreecommitdiff
path: root/omega/examples/old_test/stride6
diff options
context:
space:
mode:
Diffstat (limited to 'omega/examples/old_test/stride6')
-rw-r--r--omega/examples/old_test/stride610
1 files changed, 10 insertions, 0 deletions
diff --git a/omega/examples/old_test/stride6 b/omega/examples/old_test/stride6
new file mode 100644
index 0000000..364e24c
--- /dev/null
+++ b/omega/examples/old_test/stride6
@@ -0,0 +1,10 @@
+symbolic n;
+R := {[i,j]: i >= 1 && i <= 101 &&
+ j >= i && j <=401 && exists (alpha : j = 2 alpha)};
+codegen R;
+S := {[i,j]: i >= 1 && i <= 101 && exists (alpha : i = 2 alpha) &&
+ j >= i && j <=401 && exists (alpha : j = 2 alpha)};
+codegen S;
+T := {[i,j]: i >= 1 && i <= 101 && exists (alpha : i = 2 alpha) &&
+ j >= i && j <=401 && exists (alpha : 2j = 4 alpha)};
+codegen T;