summaryrefslogtreecommitdiff
path: root/omega/examples/old_test/sample1
blob: fb292b38c9dc0e49dca0a5c3c3f7e62a3267fe5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
example { [i] -> [j] : 1 <= i < j <= 20 };

example { [i,j] -> [i+1,j+1] : 1 <= i <= 9 && 5 <= j <= 25 };

example (inverse { [i] -> [i+1] : 1 <= i <= 9 });

example (domain { [i] -> [i+1] : 1 <= i <= 9 });

example (range { [i] -> [i+1] : 1 <= i <= 9 });

example ({[i] -> [i+1] : 1 <= i <= 9 } compose { [i] -> [i+1] : 1 <= i <= 9 });