alf 0.10.0 → 0.10.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +22 -0
- data/Gemfile +3 -3
- data/Gemfile.lock +9 -10
- data/alf.gemspec +3 -3
- data/alf.noespec +5 -4
- data/doc/commands/show.md +1 -1
- data/doc/operators/relational/heading.md +20 -0
- data/doc/operators/relational/join.md +4 -3
- data/doc/operators/relational/matching.md +7 -3
- data/doc/operators/relational/restrict.md +2 -2
- data/examples/hitradio/compact.rb +48 -0
- data/examples/hitradio/compare1.rb +28 -0
- data/examples/hitradio/gz_reader.rb +23 -0
- data/examples/hitradio/hitradio-1.alf +1 -0
- data/examples/hitradio/hitradio.log +25080 -0
- data/examples/hitradio/hitradio.mar +25081 -0
- data/examples/hitradio/hitradio.mar.gz +0 -0
- data/examples/hitradio/hitradio.rash +25080 -0
- data/examples/hitradio/mar_reader.rb +18 -0
- data/lib/alf/aggregator/aggregators.rb +28 -0
- data/lib/alf/aggregator/aggregators.rbc +2640 -0
- data/lib/alf/aggregator/base.rbc +1055 -0
- data/lib/alf/aggregator/class_methods.rb +1 -1
- data/lib/alf/aggregator/class_methods.rbc +830 -0
- data/lib/alf/buffer/sorted.rbc +715 -0
- data/lib/alf/command/class_methods.rbc +453 -0
- data/lib/alf/command/doc_manager.rbc +1604 -0
- data/lib/alf/command/exec.rbc +408 -0
- data/lib/alf/command/help.rbc +764 -0
- data/lib/alf/command/main.rb +37 -5
- data/lib/alf/command/main.rbc +3612 -0
- data/lib/alf/command/show.rb +37 -5
- data/lib/alf/command/show.rbc +1327 -0
- data/lib/alf/environment/base.rbc +459 -0
- data/lib/alf/environment/class_methods.rbc +1110 -0
- data/lib/alf/environment/explicit.rb +2 -2
- data/lib/alf/environment/explicit.rbc +601 -0
- data/lib/alf/environment/folder.rb +2 -2
- data/lib/alf/environment/folder.rbc +942 -0
- data/lib/alf/errors.rb +4 -0
- data/lib/alf/errors.rbc +155 -0
- data/lib/alf/extra/csv.rb +5 -2
- data/lib/alf/extra/csv.rbc +2021 -0
- data/lib/alf/extra/logs.rbc +1957 -0
- data/lib/alf/extra/sequel.rbc +1417 -0
- data/lib/alf/extra/yaml.rbc +435 -0
- data/lib/alf/extra.rbc +101 -0
- data/lib/alf/iterator/base.rbc +437 -0
- data/lib/alf/iterator/class_methods.rbc +518 -0
- data/lib/alf/iterator/proxy.rbc +599 -0
- data/lib/alf/lispy/instance_methods.rbc +2535 -0
- data/lib/alf/loader.rb +2 -1
- data/lib/alf/loader.rbc +85 -0
- data/lib/alf/operator/base.rbc +860 -0
- data/lib/alf/operator/binary.rbc +595 -0
- data/lib/alf/operator/cesure.rbc +883 -0
- data/lib/alf/operator/class_methods.rbc +1915 -0
- data/lib/alf/operator/experimental.rbc +200 -0
- data/lib/alf/operator/non_relational/autonum.rbc +587 -0
- data/lib/alf/operator/non_relational/clip.rbc +522 -0
- data/lib/alf/operator/non_relational/coerce.rbc +596 -0
- data/lib/alf/operator/non_relational/compact.rbc +1283 -0
- data/lib/alf/operator/non_relational/defaults.rbc +733 -0
- data/lib/alf/operator/non_relational/generator.rbc +1015 -0
- data/lib/alf/operator/non_relational/sort.rbc +665 -0
- data/lib/alf/operator/nullary.rbc +404 -0
- data/lib/alf/operator/relational/extend.rbc +616 -0
- data/lib/alf/operator/relational/group.rbc +968 -0
- data/lib/alf/operator/relational/heading.rb +30 -0
- data/lib/alf/operator/relational/heading.rbc +657 -0
- data/lib/alf/operator/relational/intersect.rbc +969 -0
- data/lib/alf/operator/relational/join.rbc +1708 -0
- data/lib/alf/operator/relational/matching.rbc +1047 -0
- data/lib/alf/operator/relational/minus.rbc +965 -0
- data/lib/alf/operator/relational/not_matching.rbc +1047 -0
- data/lib/alf/operator/relational/project.rbc +669 -0
- data/lib/alf/operator/relational/quota.rbc +1193 -0
- data/lib/alf/operator/relational/rank.rbc +1217 -0
- data/lib/alf/operator/relational/rename.rbc +496 -0
- data/lib/alf/operator/relational/restrict.rbc +611 -0
- data/lib/alf/operator/relational/summarize.rbc +1922 -0
- data/lib/alf/operator/relational/ungroup.rbc +643 -0
- data/lib/alf/operator/relational/union.rbc +846 -0
- data/lib/alf/operator/relational/unwrap.rbc +540 -0
- data/lib/alf/operator/relational/wrap.rbc +560 -0
- data/lib/alf/operator/shortcut.rbc +809 -0
- data/lib/alf/operator/signature.rbc +4640 -0
- data/lib/alf/operator/transform.rbc +484 -0
- data/lib/alf/operator/unary.rbc +629 -0
- data/lib/alf/reader/alf_file.rbc +464 -0
- data/lib/alf/reader/base.rbc +1613 -0
- data/lib/alf/reader/class_methods.rb +1 -1
- data/lib/alf/reader/class_methods.rbc +1099 -0
- data/lib/alf/reader/rash.rbc +583 -0
- data/lib/alf/relation/class_methods.rbc +674 -0
- data/lib/alf/relation/instance_methods.rb +7 -0
- data/lib/alf/relation/instance_methods.rbc +2107 -0
- data/lib/alf/renderer/base.rbc +936 -0
- data/lib/alf/renderer/class_methods.rbc +875 -0
- data/lib/alf/renderer/rash.rb +16 -2
- data/lib/alf/renderer/rash.rbc +802 -0
- data/lib/alf/renderer/text.rb +54 -16
- data/lib/alf/renderer/text.rbc +5530 -0
- data/lib/alf/tools/coerce.rbc +352 -0
- data/lib/alf/tools/miscellaneous.rb +8 -1
- data/lib/alf/tools/miscellaneous.rbc +1497 -0
- data/lib/alf/tools/to_lispy.rbc +2618 -0
- data/lib/alf/tools/to_ruby_literal.rbc +344 -0
- data/lib/alf/tools/tuple_handle.rbc +738 -0
- data/lib/alf/types/attr_list.rbc +1535 -0
- data/lib/alf/types/attr_name.rbc +781 -0
- data/lib/alf/types/boolean.rbc +365 -0
- data/lib/alf/types/heading.rb +16 -1
- data/lib/alf/types/heading.rbc +1778 -0
- data/lib/alf/types/ordering.rbc +2228 -0
- data/lib/alf/types/renaming.rbc +1064 -0
- data/lib/alf/types/summarization.rbc +1394 -0
- data/lib/alf/types/tuple_computation.rbc +1061 -0
- data/lib/alf/types/tuple_expression.rbc +1016 -0
- data/lib/alf/types/tuple_predicate.rbc +1349 -0
- data/lib/alf/version.rb +1 -1
- data/lib/alf/version.rbc +350 -0
- data/lib/alf.rb +13 -5
- data/lib/alf.rbc +3884 -0
- data/spec/integration/command/alf/alf_help.stdout +8 -6
- data/spec/integration/command/help/help_1.stdout +3 -1
- data/spec/integration/command/show/show_base.cmd +1 -1
- data/spec/integration/command/show/show_base_sort_1.cmd +1 -0
- data/spec/integration/command/show/show_base_sort_1.stdout +9 -0
- data/spec/integration/command/show/show_base_sort_2.cmd +1 -0
- data/spec/integration/command/show/show_base_sort_2.stdout +9 -0
- data/spec/integration/command/show/show_ff.cmd +1 -0
- data/spec/integration/command/show/show_ff.stdout +10 -0
- data/spec/integration/command/show/show_rash_pretty.cmd +1 -0
- data/spec/integration/command/show/show_rash_pretty.stdout +30 -0
- data/spec/integration/test_alf.rbc +1098 -0
- data/spec/integration/test_command.rbc +1832 -0
- data/spec/integration/test_examples.rbc +559 -0
- data/spec/integration/test_semantics.rbc +991 -0
- data/spec/regression/alf_file/test___FILE__.rbc +524 -0
- data/spec/regression/heading/test_heading_with_date.rbc +381 -0
- data/spec/regression/lispy/test_compile.rbc +404 -0
- data/spec/regression/logs/test_path_attribute.rbc +687 -0
- data/spec/regression/relation/test_relation_allbut_all.rbc +468 -0
- data/spec/regression/relation/test_relation_with_date.rbc +381 -0
- data/spec/regression/restrict/test_restrict_with_keywords.rbc +628 -0
- data/spec/shared/a_value.rbc +337 -0
- data/spec/shared/an_operator_class.rbc +908 -0
- data/spec/spec_helper.rbc +453 -0
- data/spec/unit/assumptions/test_file.rbc +668 -0
- data/spec/unit/assumptions/test_instance_eval.rbc +654 -0
- data/spec/unit/assumptions/test_scoping.rbc +755 -0
- data/spec/unit/assumptions/test_set.rbc +1928 -0
- data/spec/unit/command/doc_manager/test_call.rbc +1537 -0
- data/spec/unit/csv/test_reader.rbc +2228 -0
- data/spec/unit/csv/test_renderer.rbc +2426 -0
- data/spec/unit/environment/test_explicit.rbc +464 -0
- data/spec/unit/environment/test_folder.rb +2 -2
- data/spec/unit/environment/test_folder.rbc +1304 -0
- data/spec/unit/lispy/test_relation.rbc +1477 -0
- data/spec/unit/lispy/test_run.rbc +1735 -0
- data/spec/unit/lispy/test_tuple.rbc +1686 -0
- data/spec/unit/logs/test_reader.rb +6 -4
- data/spec/unit/logs/test_reader.rbc +1807 -0
- data/spec/unit/operator/non_relational/compact/test_buffer_based.rbc +1127 -0
- data/spec/unit/operator/non_relational/compact/test_sort_based.rbc +1127 -0
- data/spec/unit/operator/non_relational/test_autonum.rbc +1969 -0
- data/spec/unit/operator/non_relational/test_clip.rbc +1850 -0
- data/spec/unit/operator/non_relational/test_coerce.rbc +1290 -0
- data/spec/unit/operator/non_relational/test_compact.rbc +1382 -0
- data/spec/unit/operator/non_relational/test_defaults.rbc +2319 -0
- data/spec/unit/operator/non_relational/test_generator.rbc +2361 -0
- data/spec/unit/operator/non_relational/test_sort.rbc +2583 -0
- data/spec/unit/operator/relational/join/test_hash_based.rbc +2481 -0
- data/spec/unit/operator/relational/matching/test_hash_based.rbc +2458 -0
- data/spec/unit/operator/relational/not_matching/test_hash_based.rbc +1632 -0
- data/spec/unit/operator/relational/summarize/test_hash_based.rbc +1990 -0
- data/spec/unit/operator/relational/summarize/test_sort_based.rbc +1990 -0
- data/spec/unit/operator/relational/test_extend.rbc +1300 -0
- data/spec/unit/operator/relational/test_group.rbc +2142 -0
- data/spec/unit/operator/relational/test_intersect.rbc +2069 -0
- data/spec/unit/operator/relational/test_join.rbc +1282 -0
- data/spec/unit/operator/relational/test_minus.rbc +1995 -0
- data/spec/unit/operator/relational/test_project.rbc +2870 -0
- data/spec/unit/operator/relational/test_quota.rbc +1788 -0
- data/spec/unit/operator/relational/test_rank.rbc +2079 -0
- data/spec/unit/operator/relational/test_rename.rbc +1158 -0
- data/spec/unit/operator/relational/test_restrict.rbc +2305 -0
- data/spec/unit/operator/relational/test_summarize.rbc +2570 -0
- data/spec/unit/operator/relational/test_ungroup.rbc +1425 -0
- data/spec/unit/operator/relational/test_union.rbc +1089 -0
- data/spec/unit/operator/relational/test_unwrap.rbc +1176 -0
- data/spec/unit/operator/relational/test_wrap.rbc +1203 -0
- data/spec/unit/operator/signature/test_collect_on.rbc +1989 -0
- data/spec/unit/operator/signature/test_initialize.rbc +544 -0
- data/spec/unit/operator/signature/test_install.rbc +1671 -0
- data/spec/unit/operator/signature/test_option_parser.rbc +1348 -0
- data/spec/unit/operator/signature/test_parse_args.rbc +1908 -0
- data/spec/unit/operator/signature/test_parse_argv.rbc +2878 -0
- data/spec/unit/operator/signature/test_to_lispy.rbc +3305 -0
- data/spec/unit/operator/signature/test_to_shell.rbc +3327 -0
- data/spec/unit/operator/test_non_relational.rbc +571 -0
- data/spec/unit/operator/test_relational.rb +2 -1
- data/spec/unit/operator/test_relational.rbc +758 -0
- data/spec/unit/reader/test_alf_file.rbc +1107 -0
- data/spec/unit/reader/test_initialize.rbc +1774 -0
- data/spec/unit/reader/test_rash.rbc +1127 -0
- data/spec/unit/relation/test_coerce.rbc +2320 -0
- data/spec/unit/relation/test_inspect.rbc +502 -0
- data/spec/unit/relation/test_relops.rbc +1585 -0
- data/spec/unit/relation/test_to_a.rbc +1112 -0
- data/spec/unit/renderer/test_initialize.rbc +1766 -0
- data/spec/unit/sequel/test_environment.rbc +1723 -0
- data/spec/unit/test_aggregator.rb +38 -1
- data/spec/unit/test_aggregator.rbc +4358 -0
- data/spec/unit/test_environment.rbc +1271 -0
- data/spec/unit/test_lispy.rbc +879 -0
- data/spec/unit/test_operator.rbc +531 -0
- data/spec/unit/test_reader.rb +6 -2
- data/spec/unit/test_reader.rbc +1249 -0
- data/spec/unit/test_relation.rbc +2588 -0
- data/spec/unit/test_renderer.rb +12 -1
- data/spec/unit/test_renderer.rbc +2011 -0
- data/spec/unit/text/test_cell.rb +1 -0
- data/spec/unit/text/test_cell.rbc +1532 -0
- data/spec/unit/text/test_row.rbc +847 -0
- data/spec/unit/text/test_table.rbc +978 -0
- data/spec/unit/tools/test_coalesce.rbc +456 -0
- data/spec/unit/tools/test_coerce.rbc +279 -0
- data/spec/unit/tools/test_to_lispy.rbc +5711 -0
- data/spec/unit/tools/test_to_ruby_literal.rbc +272 -0
- data/spec/unit/tools/test_tools.rbc +672 -0
- data/spec/unit/tools/test_tuple_handle.rbc +1591 -0
- data/spec/unit/tools/test_tuple_heading.rb +20 -0
- data/spec/unit/tools/test_tuple_heading.rbc +821 -0
- data/spec/unit/tools/test_varargs.rbc +495 -0
- data/spec/unit/types/heading/test_union.rb +21 -0
- data/spec/unit/types/heading/test_union.rbc +1043 -0
- data/spec/unit/types/test_attr_list.rbc +4481 -0
- data/spec/unit/types/test_attr_name.rbc +1872 -0
- data/spec/unit/types/test_heading.rbc +1735 -0
- data/spec/unit/types/test_ordering.rbc +3695 -0
- data/spec/unit/types/test_renaming.rbc +2426 -0
- data/spec/unit/types/test_summarization.rbc +2538 -0
- data/spec/unit/types/test_tuple_computation.rbc +2340 -0
- data/spec/unit/types/test_tuple_expression.rbc +2285 -0
- data/spec/unit/types/test_tuple_predicate.rbc +3168 -0
- data/tasks/gh-pages.rake +1 -1
- metadata +529 -125
@@ -0,0 +1,2069 @@
|
|
1
|
+
!RBIX
|
2
|
+
11817445442317083511
|
3
|
+
x
|
4
|
+
M
|
5
|
+
1
|
6
|
+
n
|
7
|
+
n
|
8
|
+
x
|
9
|
+
10
|
10
|
+
__script__
|
11
|
+
i
|
12
|
+
37
|
13
|
+
5
|
14
|
+
7
|
15
|
+
0
|
16
|
+
64
|
17
|
+
47
|
18
|
+
49
|
19
|
+
1
|
20
|
+
1
|
21
|
+
15
|
22
|
+
99
|
23
|
+
7
|
24
|
+
2
|
25
|
+
65
|
26
|
+
49
|
27
|
+
3
|
28
|
+
2
|
29
|
+
13
|
30
|
+
99
|
31
|
+
12
|
32
|
+
7
|
33
|
+
4
|
34
|
+
12
|
35
|
+
7
|
36
|
+
5
|
37
|
+
12
|
38
|
+
65
|
39
|
+
12
|
40
|
+
49
|
41
|
+
6
|
42
|
+
4
|
43
|
+
15
|
44
|
+
49
|
45
|
+
4
|
46
|
+
0
|
47
|
+
15
|
48
|
+
2
|
49
|
+
11
|
50
|
+
I
|
51
|
+
6
|
52
|
+
I
|
53
|
+
0
|
54
|
+
I
|
55
|
+
0
|
56
|
+
I
|
57
|
+
0
|
58
|
+
n
|
59
|
+
p
|
60
|
+
7
|
61
|
+
s
|
62
|
+
11
|
63
|
+
spec_helper
|
64
|
+
x
|
65
|
+
7
|
66
|
+
require
|
67
|
+
x
|
68
|
+
3
|
69
|
+
Alf
|
70
|
+
x
|
71
|
+
11
|
72
|
+
open_module
|
73
|
+
x
|
74
|
+
15
|
75
|
+
__module_init__
|
76
|
+
M
|
77
|
+
1
|
78
|
+
n
|
79
|
+
n
|
80
|
+
x
|
81
|
+
3
|
82
|
+
Alf
|
83
|
+
i
|
84
|
+
30
|
85
|
+
5
|
86
|
+
66
|
87
|
+
99
|
88
|
+
7
|
89
|
+
0
|
90
|
+
45
|
91
|
+
1
|
92
|
+
2
|
93
|
+
49
|
94
|
+
3
|
95
|
+
2
|
96
|
+
13
|
97
|
+
99
|
98
|
+
12
|
99
|
+
7
|
100
|
+
4
|
101
|
+
12
|
102
|
+
7
|
103
|
+
5
|
104
|
+
12
|
105
|
+
65
|
106
|
+
12
|
107
|
+
49
|
108
|
+
6
|
109
|
+
4
|
110
|
+
15
|
111
|
+
49
|
112
|
+
4
|
113
|
+
0
|
114
|
+
11
|
115
|
+
I
|
116
|
+
6
|
117
|
+
I
|
118
|
+
0
|
119
|
+
I
|
120
|
+
0
|
121
|
+
I
|
122
|
+
0
|
123
|
+
n
|
124
|
+
p
|
125
|
+
7
|
126
|
+
x
|
127
|
+
10
|
128
|
+
Relational
|
129
|
+
x
|
130
|
+
8
|
131
|
+
Operator
|
132
|
+
n
|
133
|
+
x
|
134
|
+
17
|
135
|
+
open_module_under
|
136
|
+
x
|
137
|
+
15
|
138
|
+
__module_init__
|
139
|
+
M
|
140
|
+
1
|
141
|
+
n
|
142
|
+
n
|
143
|
+
x
|
144
|
+
10
|
145
|
+
Relational
|
146
|
+
i
|
147
|
+
13
|
148
|
+
5
|
149
|
+
66
|
150
|
+
5
|
151
|
+
45
|
152
|
+
0
|
153
|
+
1
|
154
|
+
56
|
155
|
+
2
|
156
|
+
47
|
157
|
+
50
|
158
|
+
3
|
159
|
+
1
|
160
|
+
11
|
161
|
+
I
|
162
|
+
3
|
163
|
+
I
|
164
|
+
0
|
165
|
+
I
|
166
|
+
0
|
167
|
+
I
|
168
|
+
0
|
169
|
+
n
|
170
|
+
p
|
171
|
+
4
|
172
|
+
x
|
173
|
+
9
|
174
|
+
Intersect
|
175
|
+
n
|
176
|
+
M
|
177
|
+
1
|
178
|
+
p
|
179
|
+
2
|
180
|
+
x
|
181
|
+
9
|
182
|
+
for_block
|
183
|
+
t
|
184
|
+
n
|
185
|
+
x
|
186
|
+
10
|
187
|
+
Relational
|
188
|
+
i
|
189
|
+
111
|
190
|
+
5
|
191
|
+
7
|
192
|
+
0
|
193
|
+
56
|
194
|
+
1
|
195
|
+
47
|
196
|
+
50
|
197
|
+
2
|
198
|
+
1
|
199
|
+
15
|
200
|
+
5
|
201
|
+
7
|
202
|
+
3
|
203
|
+
64
|
204
|
+
47
|
205
|
+
49
|
206
|
+
4
|
207
|
+
1
|
208
|
+
15
|
209
|
+
5
|
210
|
+
7
|
211
|
+
5
|
212
|
+
56
|
213
|
+
6
|
214
|
+
47
|
215
|
+
50
|
216
|
+
2
|
217
|
+
1
|
218
|
+
15
|
219
|
+
5
|
220
|
+
7
|
221
|
+
7
|
222
|
+
56
|
223
|
+
8
|
224
|
+
47
|
225
|
+
50
|
226
|
+
2
|
227
|
+
1
|
228
|
+
15
|
229
|
+
5
|
230
|
+
7
|
231
|
+
9
|
232
|
+
56
|
233
|
+
10
|
234
|
+
47
|
235
|
+
50
|
236
|
+
2
|
237
|
+
1
|
238
|
+
15
|
239
|
+
5
|
240
|
+
7
|
241
|
+
11
|
242
|
+
56
|
243
|
+
12
|
244
|
+
47
|
245
|
+
50
|
246
|
+
2
|
247
|
+
1
|
248
|
+
15
|
249
|
+
5
|
250
|
+
56
|
251
|
+
13
|
252
|
+
47
|
253
|
+
50
|
254
|
+
14
|
255
|
+
0
|
256
|
+
15
|
257
|
+
5
|
258
|
+
7
|
259
|
+
15
|
260
|
+
64
|
261
|
+
56
|
262
|
+
16
|
263
|
+
47
|
264
|
+
50
|
265
|
+
17
|
266
|
+
1
|
267
|
+
15
|
268
|
+
5
|
269
|
+
7
|
270
|
+
18
|
271
|
+
64
|
272
|
+
56
|
273
|
+
19
|
274
|
+
47
|
275
|
+
50
|
276
|
+
17
|
277
|
+
1
|
278
|
+
15
|
279
|
+
5
|
280
|
+
7
|
281
|
+
20
|
282
|
+
64
|
283
|
+
56
|
284
|
+
21
|
285
|
+
47
|
286
|
+
50
|
287
|
+
17
|
288
|
+
1
|
289
|
+
15
|
290
|
+
5
|
291
|
+
7
|
292
|
+
22
|
293
|
+
64
|
294
|
+
56
|
295
|
+
23
|
296
|
+
47
|
297
|
+
50
|
298
|
+
17
|
299
|
+
1
|
300
|
+
11
|
301
|
+
I
|
302
|
+
4
|
303
|
+
I
|
304
|
+
0
|
305
|
+
I
|
306
|
+
0
|
307
|
+
I
|
308
|
+
0
|
309
|
+
I
|
310
|
+
-2
|
311
|
+
p
|
312
|
+
24
|
313
|
+
x
|
314
|
+
14
|
315
|
+
operator_class
|
316
|
+
M
|
317
|
+
1
|
318
|
+
p
|
319
|
+
2
|
320
|
+
x
|
321
|
+
9
|
322
|
+
for_block
|
323
|
+
t
|
324
|
+
n
|
325
|
+
x
|
326
|
+
10
|
327
|
+
Relational
|
328
|
+
i
|
329
|
+
4
|
330
|
+
45
|
331
|
+
0
|
332
|
+
1
|
333
|
+
11
|
334
|
+
I
|
335
|
+
2
|
336
|
+
I
|
337
|
+
0
|
338
|
+
I
|
339
|
+
0
|
340
|
+
I
|
341
|
+
0
|
342
|
+
I
|
343
|
+
-2
|
344
|
+
p
|
345
|
+
2
|
346
|
+
x
|
347
|
+
9
|
348
|
+
Intersect
|
349
|
+
n
|
350
|
+
p
|
351
|
+
3
|
352
|
+
I
|
353
|
+
0
|
354
|
+
I
|
355
|
+
6
|
356
|
+
I
|
357
|
+
4
|
358
|
+
x
|
359
|
+
77
|
360
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
361
|
+
p
|
362
|
+
0
|
363
|
+
x
|
364
|
+
3
|
365
|
+
let
|
366
|
+
s
|
367
|
+
17
|
368
|
+
An operator class
|
369
|
+
x
|
370
|
+
21
|
371
|
+
it_should_behave_like
|
372
|
+
x
|
373
|
+
4
|
374
|
+
left
|
375
|
+
M
|
376
|
+
1
|
377
|
+
p
|
378
|
+
2
|
379
|
+
x
|
380
|
+
9
|
381
|
+
for_block
|
382
|
+
t
|
383
|
+
n
|
384
|
+
x
|
385
|
+
10
|
386
|
+
Relational
|
387
|
+
i
|
388
|
+
84
|
389
|
+
44
|
390
|
+
43
|
391
|
+
0
|
392
|
+
80
|
393
|
+
49
|
394
|
+
1
|
395
|
+
1
|
396
|
+
13
|
397
|
+
7
|
398
|
+
2
|
399
|
+
7
|
400
|
+
3
|
401
|
+
64
|
402
|
+
49
|
403
|
+
4
|
404
|
+
2
|
405
|
+
15
|
406
|
+
13
|
407
|
+
7
|
408
|
+
5
|
409
|
+
7
|
410
|
+
6
|
411
|
+
64
|
412
|
+
49
|
413
|
+
4
|
414
|
+
2
|
415
|
+
15
|
416
|
+
44
|
417
|
+
43
|
418
|
+
0
|
419
|
+
80
|
420
|
+
49
|
421
|
+
1
|
422
|
+
1
|
423
|
+
13
|
424
|
+
7
|
425
|
+
2
|
426
|
+
7
|
427
|
+
7
|
428
|
+
64
|
429
|
+
49
|
430
|
+
4
|
431
|
+
2
|
432
|
+
15
|
433
|
+
13
|
434
|
+
7
|
435
|
+
5
|
436
|
+
7
|
437
|
+
8
|
438
|
+
64
|
439
|
+
49
|
440
|
+
4
|
441
|
+
2
|
442
|
+
15
|
443
|
+
44
|
444
|
+
43
|
445
|
+
0
|
446
|
+
80
|
447
|
+
49
|
448
|
+
1
|
449
|
+
1
|
450
|
+
13
|
451
|
+
7
|
452
|
+
2
|
453
|
+
7
|
454
|
+
9
|
455
|
+
64
|
456
|
+
49
|
457
|
+
4
|
458
|
+
2
|
459
|
+
15
|
460
|
+
13
|
461
|
+
7
|
462
|
+
5
|
463
|
+
7
|
464
|
+
8
|
465
|
+
64
|
466
|
+
49
|
467
|
+
4
|
468
|
+
2
|
469
|
+
15
|
470
|
+
35
|
471
|
+
3
|
472
|
+
11
|
473
|
+
I
|
474
|
+
7
|
475
|
+
I
|
476
|
+
0
|
477
|
+
I
|
478
|
+
0
|
479
|
+
I
|
480
|
+
0
|
481
|
+
I
|
482
|
+
-2
|
483
|
+
p
|
484
|
+
10
|
485
|
+
x
|
486
|
+
4
|
487
|
+
Hash
|
488
|
+
x
|
489
|
+
16
|
490
|
+
new_from_literal
|
491
|
+
x
|
492
|
+
3
|
493
|
+
sid
|
494
|
+
s
|
495
|
+
2
|
496
|
+
S1
|
497
|
+
x
|
498
|
+
3
|
499
|
+
[]=
|
500
|
+
x
|
501
|
+
4
|
502
|
+
city
|
503
|
+
s
|
504
|
+
6
|
505
|
+
London
|
506
|
+
s
|
507
|
+
2
|
508
|
+
S2
|
509
|
+
s
|
510
|
+
5
|
511
|
+
Paris
|
512
|
+
s
|
513
|
+
2
|
514
|
+
S3
|
515
|
+
p
|
516
|
+
7
|
517
|
+
I
|
518
|
+
0
|
519
|
+
I
|
520
|
+
a
|
521
|
+
I
|
522
|
+
1b
|
523
|
+
I
|
524
|
+
b
|
525
|
+
I
|
526
|
+
36
|
527
|
+
I
|
528
|
+
c
|
529
|
+
I
|
530
|
+
54
|
531
|
+
x
|
532
|
+
77
|
533
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
534
|
+
p
|
535
|
+
0
|
536
|
+
x
|
537
|
+
5
|
538
|
+
right
|
539
|
+
M
|
540
|
+
1
|
541
|
+
p
|
542
|
+
2
|
543
|
+
x
|
544
|
+
9
|
545
|
+
for_block
|
546
|
+
t
|
547
|
+
n
|
548
|
+
x
|
549
|
+
10
|
550
|
+
Relational
|
551
|
+
i
|
552
|
+
57
|
553
|
+
44
|
554
|
+
43
|
555
|
+
0
|
556
|
+
80
|
557
|
+
49
|
558
|
+
1
|
559
|
+
1
|
560
|
+
13
|
561
|
+
7
|
562
|
+
2
|
563
|
+
7
|
564
|
+
3
|
565
|
+
64
|
566
|
+
49
|
567
|
+
4
|
568
|
+
2
|
569
|
+
15
|
570
|
+
13
|
571
|
+
7
|
572
|
+
5
|
573
|
+
7
|
574
|
+
6
|
575
|
+
64
|
576
|
+
49
|
577
|
+
4
|
578
|
+
2
|
579
|
+
15
|
580
|
+
44
|
581
|
+
43
|
582
|
+
0
|
583
|
+
80
|
584
|
+
49
|
585
|
+
1
|
586
|
+
1
|
587
|
+
13
|
588
|
+
7
|
589
|
+
2
|
590
|
+
7
|
591
|
+
7
|
592
|
+
64
|
593
|
+
49
|
594
|
+
4
|
595
|
+
2
|
596
|
+
15
|
597
|
+
13
|
598
|
+
7
|
599
|
+
5
|
600
|
+
7
|
601
|
+
8
|
602
|
+
64
|
603
|
+
49
|
604
|
+
4
|
605
|
+
2
|
606
|
+
15
|
607
|
+
35
|
608
|
+
2
|
609
|
+
11
|
610
|
+
I
|
611
|
+
6
|
612
|
+
I
|
613
|
+
0
|
614
|
+
I
|
615
|
+
0
|
616
|
+
I
|
617
|
+
0
|
618
|
+
I
|
619
|
+
-2
|
620
|
+
p
|
621
|
+
9
|
622
|
+
x
|
623
|
+
4
|
624
|
+
Hash
|
625
|
+
x
|
626
|
+
16
|
627
|
+
new_from_literal
|
628
|
+
x
|
629
|
+
3
|
630
|
+
sid
|
631
|
+
s
|
632
|
+
2
|
633
|
+
S2
|
634
|
+
x
|
635
|
+
3
|
636
|
+
[]=
|
637
|
+
x
|
638
|
+
4
|
639
|
+
city
|
640
|
+
s
|
641
|
+
5
|
642
|
+
Paris
|
643
|
+
s
|
644
|
+
2
|
645
|
+
S1
|
646
|
+
s
|
647
|
+
6
|
648
|
+
London
|
649
|
+
p
|
650
|
+
5
|
651
|
+
I
|
652
|
+
0
|
653
|
+
I
|
654
|
+
10
|
655
|
+
I
|
656
|
+
1b
|
657
|
+
I
|
658
|
+
11
|
659
|
+
I
|
660
|
+
39
|
661
|
+
x
|
662
|
+
77
|
663
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
664
|
+
p
|
665
|
+
0
|
666
|
+
x
|
667
|
+
8
|
668
|
+
disjoint
|
669
|
+
M
|
670
|
+
1
|
671
|
+
p
|
672
|
+
2
|
673
|
+
x
|
674
|
+
9
|
675
|
+
for_block
|
676
|
+
t
|
677
|
+
n
|
678
|
+
x
|
679
|
+
10
|
680
|
+
Relational
|
681
|
+
i
|
682
|
+
57
|
683
|
+
44
|
684
|
+
43
|
685
|
+
0
|
686
|
+
80
|
687
|
+
49
|
688
|
+
1
|
689
|
+
1
|
690
|
+
13
|
691
|
+
7
|
692
|
+
2
|
693
|
+
7
|
694
|
+
3
|
695
|
+
64
|
696
|
+
49
|
697
|
+
4
|
698
|
+
2
|
699
|
+
15
|
700
|
+
13
|
701
|
+
7
|
702
|
+
5
|
703
|
+
7
|
704
|
+
6
|
705
|
+
64
|
706
|
+
49
|
707
|
+
4
|
708
|
+
2
|
709
|
+
15
|
710
|
+
44
|
711
|
+
43
|
712
|
+
0
|
713
|
+
80
|
714
|
+
49
|
715
|
+
1
|
716
|
+
1
|
717
|
+
13
|
718
|
+
7
|
719
|
+
2
|
720
|
+
7
|
721
|
+
7
|
722
|
+
64
|
723
|
+
49
|
724
|
+
4
|
725
|
+
2
|
726
|
+
15
|
727
|
+
13
|
728
|
+
7
|
729
|
+
5
|
730
|
+
7
|
731
|
+
8
|
732
|
+
64
|
733
|
+
49
|
734
|
+
4
|
735
|
+
2
|
736
|
+
15
|
737
|
+
35
|
738
|
+
2
|
739
|
+
11
|
740
|
+
I
|
741
|
+
6
|
742
|
+
I
|
743
|
+
0
|
744
|
+
I
|
745
|
+
0
|
746
|
+
I
|
747
|
+
0
|
748
|
+
I
|
749
|
+
-2
|
750
|
+
p
|
751
|
+
9
|
752
|
+
x
|
753
|
+
4
|
754
|
+
Hash
|
755
|
+
x
|
756
|
+
16
|
757
|
+
new_from_literal
|
758
|
+
x
|
759
|
+
3
|
760
|
+
sid
|
761
|
+
s
|
762
|
+
2
|
763
|
+
S4
|
764
|
+
x
|
765
|
+
3
|
766
|
+
[]=
|
767
|
+
x
|
768
|
+
4
|
769
|
+
city
|
770
|
+
s
|
771
|
+
4
|
772
|
+
Oslo
|
773
|
+
s
|
774
|
+
2
|
775
|
+
S5
|
776
|
+
s
|
777
|
+
9
|
778
|
+
Bruxelles
|
779
|
+
p
|
780
|
+
5
|
781
|
+
I
|
782
|
+
0
|
783
|
+
I
|
784
|
+
15
|
785
|
+
I
|
786
|
+
1b
|
787
|
+
I
|
788
|
+
16
|
789
|
+
I
|
790
|
+
39
|
791
|
+
x
|
792
|
+
77
|
793
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
794
|
+
p
|
795
|
+
0
|
796
|
+
x
|
797
|
+
8
|
798
|
+
operator
|
799
|
+
M
|
800
|
+
1
|
801
|
+
p
|
802
|
+
2
|
803
|
+
x
|
804
|
+
9
|
805
|
+
for_block
|
806
|
+
t
|
807
|
+
n
|
808
|
+
x
|
809
|
+
10
|
810
|
+
Relational
|
811
|
+
i
|
812
|
+
9
|
813
|
+
45
|
814
|
+
0
|
815
|
+
1
|
816
|
+
35
|
817
|
+
0
|
818
|
+
49
|
819
|
+
2
|
820
|
+
1
|
821
|
+
11
|
822
|
+
I
|
823
|
+
3
|
824
|
+
I
|
825
|
+
0
|
826
|
+
I
|
827
|
+
0
|
828
|
+
I
|
829
|
+
0
|
830
|
+
I
|
831
|
+
-2
|
832
|
+
p
|
833
|
+
3
|
834
|
+
x
|
835
|
+
9
|
836
|
+
Intersect
|
837
|
+
n
|
838
|
+
x
|
839
|
+
3
|
840
|
+
run
|
841
|
+
p
|
842
|
+
3
|
843
|
+
I
|
844
|
+
0
|
845
|
+
I
|
846
|
+
19
|
847
|
+
I
|
848
|
+
9
|
849
|
+
x
|
850
|
+
77
|
851
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
852
|
+
p
|
853
|
+
0
|
854
|
+
M
|
855
|
+
1
|
856
|
+
p
|
857
|
+
2
|
858
|
+
x
|
859
|
+
9
|
860
|
+
for_block
|
861
|
+
t
|
862
|
+
n
|
863
|
+
x
|
864
|
+
10
|
865
|
+
Relational
|
866
|
+
i
|
867
|
+
7
|
868
|
+
5
|
869
|
+
48
|
870
|
+
0
|
871
|
+
49
|
872
|
+
1
|
873
|
+
0
|
874
|
+
11
|
875
|
+
I
|
876
|
+
2
|
877
|
+
I
|
878
|
+
0
|
879
|
+
I
|
880
|
+
0
|
881
|
+
I
|
882
|
+
0
|
883
|
+
I
|
884
|
+
-2
|
885
|
+
p
|
886
|
+
2
|
887
|
+
x
|
888
|
+
8
|
889
|
+
operator
|
890
|
+
x
|
891
|
+
4
|
892
|
+
to_a
|
893
|
+
p
|
894
|
+
3
|
895
|
+
I
|
896
|
+
0
|
897
|
+
I
|
898
|
+
1a
|
899
|
+
I
|
900
|
+
7
|
901
|
+
x
|
902
|
+
77
|
903
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
904
|
+
p
|
905
|
+
0
|
906
|
+
x
|
907
|
+
7
|
908
|
+
subject
|
909
|
+
s
|
910
|
+
38
|
911
|
+
when applied on the same operand twice
|
912
|
+
M
|
913
|
+
1
|
914
|
+
p
|
915
|
+
2
|
916
|
+
x
|
917
|
+
9
|
918
|
+
for_block
|
919
|
+
t
|
920
|
+
n
|
921
|
+
x
|
922
|
+
10
|
923
|
+
Relational
|
924
|
+
i
|
925
|
+
16
|
926
|
+
5
|
927
|
+
56
|
928
|
+
0
|
929
|
+
47
|
930
|
+
50
|
931
|
+
1
|
932
|
+
0
|
933
|
+
15
|
934
|
+
5
|
935
|
+
56
|
936
|
+
2
|
937
|
+
47
|
938
|
+
50
|
939
|
+
3
|
940
|
+
0
|
941
|
+
11
|
942
|
+
I
|
943
|
+
3
|
944
|
+
I
|
945
|
+
0
|
946
|
+
I
|
947
|
+
0
|
948
|
+
I
|
949
|
+
0
|
950
|
+
I
|
951
|
+
-2
|
952
|
+
p
|
953
|
+
4
|
954
|
+
M
|
955
|
+
1
|
956
|
+
p
|
957
|
+
2
|
958
|
+
x
|
959
|
+
9
|
960
|
+
for_block
|
961
|
+
t
|
962
|
+
n
|
963
|
+
x
|
964
|
+
10
|
965
|
+
Relational
|
966
|
+
i
|
967
|
+
15
|
968
|
+
5
|
969
|
+
48
|
970
|
+
0
|
971
|
+
5
|
972
|
+
48
|
973
|
+
1
|
974
|
+
5
|
975
|
+
48
|
976
|
+
1
|
977
|
+
35
|
978
|
+
2
|
979
|
+
49
|
980
|
+
2
|
981
|
+
1
|
982
|
+
11
|
983
|
+
I
|
984
|
+
4
|
985
|
+
I
|
986
|
+
0
|
987
|
+
I
|
988
|
+
0
|
989
|
+
I
|
990
|
+
0
|
991
|
+
I
|
992
|
+
-2
|
993
|
+
p
|
994
|
+
3
|
995
|
+
x
|
996
|
+
8
|
997
|
+
operator
|
998
|
+
x
|
999
|
+
4
|
1000
|
+
left
|
1001
|
+
x
|
1002
|
+
4
|
1003
|
+
pipe
|
1004
|
+
p
|
1005
|
+
3
|
1006
|
+
I
|
1007
|
+
0
|
1008
|
+
I
|
1009
|
+
1d
|
1010
|
+
I
|
1011
|
+
f
|
1012
|
+
x
|
1013
|
+
77
|
1014
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1015
|
+
p
|
1016
|
+
0
|
1017
|
+
x
|
1018
|
+
6
|
1019
|
+
before
|
1020
|
+
M
|
1021
|
+
1
|
1022
|
+
p
|
1023
|
+
2
|
1024
|
+
x
|
1025
|
+
9
|
1026
|
+
for_block
|
1027
|
+
t
|
1028
|
+
n
|
1029
|
+
x
|
1030
|
+
10
|
1031
|
+
Relational
|
1032
|
+
i
|
1033
|
+
9
|
1034
|
+
5
|
1035
|
+
48
|
1036
|
+
0
|
1037
|
+
5
|
1038
|
+
48
|
1039
|
+
1
|
1040
|
+
83
|
1041
|
+
2
|
1042
|
+
11
|
1043
|
+
I
|
1044
|
+
3
|
1045
|
+
I
|
1046
|
+
0
|
1047
|
+
I
|
1048
|
+
0
|
1049
|
+
I
|
1050
|
+
0
|
1051
|
+
I
|
1052
|
+
-2
|
1053
|
+
p
|
1054
|
+
3
|
1055
|
+
x
|
1056
|
+
6
|
1057
|
+
should
|
1058
|
+
x
|
1059
|
+
4
|
1060
|
+
left
|
1061
|
+
x
|
1062
|
+
2
|
1063
|
+
==
|
1064
|
+
p
|
1065
|
+
3
|
1066
|
+
I
|
1067
|
+
0
|
1068
|
+
I
|
1069
|
+
1e
|
1070
|
+
I
|
1071
|
+
9
|
1072
|
+
x
|
1073
|
+
77
|
1074
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1075
|
+
p
|
1076
|
+
0
|
1077
|
+
x
|
1078
|
+
2
|
1079
|
+
it
|
1080
|
+
p
|
1081
|
+
5
|
1082
|
+
I
|
1083
|
+
0
|
1084
|
+
I
|
1085
|
+
1d
|
1086
|
+
I
|
1087
|
+
8
|
1088
|
+
I
|
1089
|
+
1e
|
1090
|
+
I
|
1091
|
+
10
|
1092
|
+
x
|
1093
|
+
77
|
1094
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1095
|
+
p
|
1096
|
+
0
|
1097
|
+
x
|
1098
|
+
8
|
1099
|
+
describe
|
1100
|
+
s
|
1101
|
+
39
|
1102
|
+
when applied on operands sharing tuples
|
1103
|
+
M
|
1104
|
+
1
|
1105
|
+
p
|
1106
|
+
2
|
1107
|
+
x
|
1108
|
+
9
|
1109
|
+
for_block
|
1110
|
+
t
|
1111
|
+
n
|
1112
|
+
x
|
1113
|
+
10
|
1114
|
+
Relational
|
1115
|
+
i
|
1116
|
+
26
|
1117
|
+
5
|
1118
|
+
56
|
1119
|
+
0
|
1120
|
+
47
|
1121
|
+
50
|
1122
|
+
1
|
1123
|
+
0
|
1124
|
+
15
|
1125
|
+
5
|
1126
|
+
7
|
1127
|
+
2
|
1128
|
+
56
|
1129
|
+
3
|
1130
|
+
47
|
1131
|
+
50
|
1132
|
+
4
|
1133
|
+
1
|
1134
|
+
15
|
1135
|
+
5
|
1136
|
+
56
|
1137
|
+
5
|
1138
|
+
47
|
1139
|
+
50
|
1140
|
+
6
|
1141
|
+
0
|
1142
|
+
11
|
1143
|
+
I
|
1144
|
+
4
|
1145
|
+
I
|
1146
|
+
0
|
1147
|
+
I
|
1148
|
+
0
|
1149
|
+
I
|
1150
|
+
0
|
1151
|
+
I
|
1152
|
+
-2
|
1153
|
+
p
|
1154
|
+
7
|
1155
|
+
M
|
1156
|
+
1
|
1157
|
+
p
|
1158
|
+
2
|
1159
|
+
x
|
1160
|
+
9
|
1161
|
+
for_block
|
1162
|
+
t
|
1163
|
+
n
|
1164
|
+
x
|
1165
|
+
10
|
1166
|
+
Relational
|
1167
|
+
i
|
1168
|
+
15
|
1169
|
+
5
|
1170
|
+
48
|
1171
|
+
0
|
1172
|
+
5
|
1173
|
+
48
|
1174
|
+
1
|
1175
|
+
5
|
1176
|
+
48
|
1177
|
+
2
|
1178
|
+
35
|
1179
|
+
2
|
1180
|
+
49
|
1181
|
+
3
|
1182
|
+
1
|
1183
|
+
11
|
1184
|
+
I
|
1185
|
+
4
|
1186
|
+
I
|
1187
|
+
0
|
1188
|
+
I
|
1189
|
+
0
|
1190
|
+
I
|
1191
|
+
0
|
1192
|
+
I
|
1193
|
+
-2
|
1194
|
+
p
|
1195
|
+
4
|
1196
|
+
x
|
1197
|
+
8
|
1198
|
+
operator
|
1199
|
+
x
|
1200
|
+
4
|
1201
|
+
left
|
1202
|
+
x
|
1203
|
+
5
|
1204
|
+
right
|
1205
|
+
x
|
1206
|
+
4
|
1207
|
+
pipe
|
1208
|
+
p
|
1209
|
+
3
|
1210
|
+
I
|
1211
|
+
0
|
1212
|
+
I
|
1213
|
+
22
|
1214
|
+
I
|
1215
|
+
f
|
1216
|
+
x
|
1217
|
+
77
|
1218
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1219
|
+
p
|
1220
|
+
0
|
1221
|
+
x
|
1222
|
+
6
|
1223
|
+
before
|
1224
|
+
x
|
1225
|
+
8
|
1226
|
+
expected
|
1227
|
+
M
|
1228
|
+
1
|
1229
|
+
p
|
1230
|
+
2
|
1231
|
+
x
|
1232
|
+
9
|
1233
|
+
for_block
|
1234
|
+
t
|
1235
|
+
n
|
1236
|
+
x
|
1237
|
+
10
|
1238
|
+
Relational
|
1239
|
+
i
|
1240
|
+
57
|
1241
|
+
44
|
1242
|
+
43
|
1243
|
+
0
|
1244
|
+
80
|
1245
|
+
49
|
1246
|
+
1
|
1247
|
+
1
|
1248
|
+
13
|
1249
|
+
7
|
1250
|
+
2
|
1251
|
+
7
|
1252
|
+
3
|
1253
|
+
64
|
1254
|
+
49
|
1255
|
+
4
|
1256
|
+
2
|
1257
|
+
15
|
1258
|
+
13
|
1259
|
+
7
|
1260
|
+
5
|
1261
|
+
7
|
1262
|
+
6
|
1263
|
+
64
|
1264
|
+
49
|
1265
|
+
4
|
1266
|
+
2
|
1267
|
+
15
|
1268
|
+
44
|
1269
|
+
43
|
1270
|
+
0
|
1271
|
+
80
|
1272
|
+
49
|
1273
|
+
1
|
1274
|
+
1
|
1275
|
+
13
|
1276
|
+
7
|
1277
|
+
2
|
1278
|
+
7
|
1279
|
+
7
|
1280
|
+
64
|
1281
|
+
49
|
1282
|
+
4
|
1283
|
+
2
|
1284
|
+
15
|
1285
|
+
13
|
1286
|
+
7
|
1287
|
+
5
|
1288
|
+
7
|
1289
|
+
8
|
1290
|
+
64
|
1291
|
+
49
|
1292
|
+
4
|
1293
|
+
2
|
1294
|
+
15
|
1295
|
+
35
|
1296
|
+
2
|
1297
|
+
11
|
1298
|
+
I
|
1299
|
+
6
|
1300
|
+
I
|
1301
|
+
0
|
1302
|
+
I
|
1303
|
+
0
|
1304
|
+
I
|
1305
|
+
0
|
1306
|
+
I
|
1307
|
+
-2
|
1308
|
+
p
|
1309
|
+
9
|
1310
|
+
x
|
1311
|
+
4
|
1312
|
+
Hash
|
1313
|
+
x
|
1314
|
+
16
|
1315
|
+
new_from_literal
|
1316
|
+
x
|
1317
|
+
3
|
1318
|
+
sid
|
1319
|
+
s
|
1320
|
+
2
|
1321
|
+
S1
|
1322
|
+
x
|
1323
|
+
3
|
1324
|
+
[]=
|
1325
|
+
x
|
1326
|
+
4
|
1327
|
+
city
|
1328
|
+
s
|
1329
|
+
6
|
1330
|
+
London
|
1331
|
+
s
|
1332
|
+
2
|
1333
|
+
S2
|
1334
|
+
s
|
1335
|
+
5
|
1336
|
+
Paris
|
1337
|
+
p
|
1338
|
+
5
|
1339
|
+
I
|
1340
|
+
0
|
1341
|
+
I
|
1342
|
+
24
|
1343
|
+
I
|
1344
|
+
1b
|
1345
|
+
I
|
1346
|
+
25
|
1347
|
+
I
|
1348
|
+
39
|
1349
|
+
x
|
1350
|
+
77
|
1351
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1352
|
+
p
|
1353
|
+
0
|
1354
|
+
x
|
1355
|
+
3
|
1356
|
+
let
|
1357
|
+
M
|
1358
|
+
1
|
1359
|
+
p
|
1360
|
+
2
|
1361
|
+
x
|
1362
|
+
9
|
1363
|
+
for_block
|
1364
|
+
t
|
1365
|
+
n
|
1366
|
+
x
|
1367
|
+
10
|
1368
|
+
Relational
|
1369
|
+
i
|
1370
|
+
9
|
1371
|
+
5
|
1372
|
+
48
|
1373
|
+
0
|
1374
|
+
5
|
1375
|
+
48
|
1376
|
+
1
|
1377
|
+
83
|
1378
|
+
2
|
1379
|
+
11
|
1380
|
+
I
|
1381
|
+
3
|
1382
|
+
I
|
1383
|
+
0
|
1384
|
+
I
|
1385
|
+
0
|
1386
|
+
I
|
1387
|
+
0
|
1388
|
+
I
|
1389
|
+
-2
|
1390
|
+
p
|
1391
|
+
3
|
1392
|
+
x
|
1393
|
+
6
|
1394
|
+
should
|
1395
|
+
x
|
1396
|
+
8
|
1397
|
+
expected
|
1398
|
+
x
|
1399
|
+
2
|
1400
|
+
==
|
1401
|
+
p
|
1402
|
+
3
|
1403
|
+
I
|
1404
|
+
0
|
1405
|
+
I
|
1406
|
+
27
|
1407
|
+
I
|
1408
|
+
9
|
1409
|
+
x
|
1410
|
+
77
|
1411
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1412
|
+
p
|
1413
|
+
0
|
1414
|
+
x
|
1415
|
+
2
|
1416
|
+
it
|
1417
|
+
p
|
1418
|
+
7
|
1419
|
+
I
|
1420
|
+
0
|
1421
|
+
I
|
1422
|
+
22
|
1423
|
+
I
|
1424
|
+
8
|
1425
|
+
I
|
1426
|
+
23
|
1427
|
+
I
|
1428
|
+
12
|
1429
|
+
I
|
1430
|
+
27
|
1431
|
+
I
|
1432
|
+
1a
|
1433
|
+
x
|
1434
|
+
77
|
1435
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1436
|
+
p
|
1437
|
+
0
|
1438
|
+
s
|
1439
|
+
33
|
1440
|
+
when applied on disjoint operands
|
1441
|
+
M
|
1442
|
+
1
|
1443
|
+
p
|
1444
|
+
2
|
1445
|
+
x
|
1446
|
+
9
|
1447
|
+
for_block
|
1448
|
+
t
|
1449
|
+
n
|
1450
|
+
x
|
1451
|
+
10
|
1452
|
+
Relational
|
1453
|
+
i
|
1454
|
+
16
|
1455
|
+
5
|
1456
|
+
56
|
1457
|
+
0
|
1458
|
+
47
|
1459
|
+
50
|
1460
|
+
1
|
1461
|
+
0
|
1462
|
+
15
|
1463
|
+
5
|
1464
|
+
56
|
1465
|
+
2
|
1466
|
+
47
|
1467
|
+
50
|
1468
|
+
3
|
1469
|
+
0
|
1470
|
+
11
|
1471
|
+
I
|
1472
|
+
3
|
1473
|
+
I
|
1474
|
+
0
|
1475
|
+
I
|
1476
|
+
0
|
1477
|
+
I
|
1478
|
+
0
|
1479
|
+
I
|
1480
|
+
-2
|
1481
|
+
p
|
1482
|
+
4
|
1483
|
+
M
|
1484
|
+
1
|
1485
|
+
p
|
1486
|
+
2
|
1487
|
+
x
|
1488
|
+
9
|
1489
|
+
for_block
|
1490
|
+
t
|
1491
|
+
n
|
1492
|
+
x
|
1493
|
+
10
|
1494
|
+
Relational
|
1495
|
+
i
|
1496
|
+
15
|
1497
|
+
5
|
1498
|
+
48
|
1499
|
+
0
|
1500
|
+
5
|
1501
|
+
48
|
1502
|
+
1
|
1503
|
+
5
|
1504
|
+
48
|
1505
|
+
2
|
1506
|
+
35
|
1507
|
+
2
|
1508
|
+
49
|
1509
|
+
3
|
1510
|
+
1
|
1511
|
+
11
|
1512
|
+
I
|
1513
|
+
4
|
1514
|
+
I
|
1515
|
+
0
|
1516
|
+
I
|
1517
|
+
0
|
1518
|
+
I
|
1519
|
+
0
|
1520
|
+
I
|
1521
|
+
-2
|
1522
|
+
p
|
1523
|
+
4
|
1524
|
+
x
|
1525
|
+
8
|
1526
|
+
operator
|
1527
|
+
x
|
1528
|
+
4
|
1529
|
+
left
|
1530
|
+
x
|
1531
|
+
8
|
1532
|
+
disjoint
|
1533
|
+
x
|
1534
|
+
4
|
1535
|
+
pipe
|
1536
|
+
p
|
1537
|
+
3
|
1538
|
+
I
|
1539
|
+
0
|
1540
|
+
I
|
1541
|
+
2b
|
1542
|
+
I
|
1543
|
+
f
|
1544
|
+
x
|
1545
|
+
77
|
1546
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1547
|
+
p
|
1548
|
+
0
|
1549
|
+
x
|
1550
|
+
6
|
1551
|
+
before
|
1552
|
+
M
|
1553
|
+
1
|
1554
|
+
p
|
1555
|
+
2
|
1556
|
+
x
|
1557
|
+
9
|
1558
|
+
for_block
|
1559
|
+
t
|
1560
|
+
n
|
1561
|
+
x
|
1562
|
+
10
|
1563
|
+
Relational
|
1564
|
+
i
|
1565
|
+
9
|
1566
|
+
5
|
1567
|
+
5
|
1568
|
+
48
|
1569
|
+
0
|
1570
|
+
47
|
1571
|
+
49
|
1572
|
+
1
|
1573
|
+
1
|
1574
|
+
11
|
1575
|
+
I
|
1576
|
+
3
|
1577
|
+
I
|
1578
|
+
0
|
1579
|
+
I
|
1580
|
+
0
|
1581
|
+
I
|
1582
|
+
0
|
1583
|
+
I
|
1584
|
+
-2
|
1585
|
+
p
|
1586
|
+
2
|
1587
|
+
x
|
1588
|
+
8
|
1589
|
+
be_empty
|
1590
|
+
x
|
1591
|
+
6
|
1592
|
+
should
|
1593
|
+
p
|
1594
|
+
3
|
1595
|
+
I
|
1596
|
+
0
|
1597
|
+
I
|
1598
|
+
2c
|
1599
|
+
I
|
1600
|
+
9
|
1601
|
+
x
|
1602
|
+
77
|
1603
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1604
|
+
p
|
1605
|
+
0
|
1606
|
+
x
|
1607
|
+
2
|
1608
|
+
it
|
1609
|
+
p
|
1610
|
+
5
|
1611
|
+
I
|
1612
|
+
0
|
1613
|
+
I
|
1614
|
+
2b
|
1615
|
+
I
|
1616
|
+
8
|
1617
|
+
I
|
1618
|
+
2c
|
1619
|
+
I
|
1620
|
+
10
|
1621
|
+
x
|
1622
|
+
77
|
1623
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1624
|
+
p
|
1625
|
+
0
|
1626
|
+
s
|
1627
|
+
24
|
1628
|
+
when factored with Lispy
|
1629
|
+
M
|
1630
|
+
1
|
1631
|
+
p
|
1632
|
+
2
|
1633
|
+
x
|
1634
|
+
9
|
1635
|
+
for_block
|
1636
|
+
t
|
1637
|
+
n
|
1638
|
+
x
|
1639
|
+
10
|
1640
|
+
Relational
|
1641
|
+
i
|
1642
|
+
28
|
1643
|
+
5
|
1644
|
+
7
|
1645
|
+
0
|
1646
|
+
56
|
1647
|
+
1
|
1648
|
+
47
|
1649
|
+
50
|
1650
|
+
2
|
1651
|
+
1
|
1652
|
+
15
|
1653
|
+
5
|
1654
|
+
7
|
1655
|
+
3
|
1656
|
+
56
|
1657
|
+
4
|
1658
|
+
47
|
1659
|
+
50
|
1660
|
+
2
|
1661
|
+
1
|
1662
|
+
15
|
1663
|
+
5
|
1664
|
+
56
|
1665
|
+
5
|
1666
|
+
47
|
1667
|
+
50
|
1668
|
+
6
|
1669
|
+
0
|
1670
|
+
11
|
1671
|
+
I
|
1672
|
+
4
|
1673
|
+
I
|
1674
|
+
0
|
1675
|
+
I
|
1676
|
+
0
|
1677
|
+
I
|
1678
|
+
0
|
1679
|
+
I
|
1680
|
+
-2
|
1681
|
+
p
|
1682
|
+
7
|
1683
|
+
x
|
1684
|
+
8
|
1685
|
+
operator
|
1686
|
+
M
|
1687
|
+
1
|
1688
|
+
p
|
1689
|
+
2
|
1690
|
+
x
|
1691
|
+
9
|
1692
|
+
for_block
|
1693
|
+
t
|
1694
|
+
n
|
1695
|
+
x
|
1696
|
+
10
|
1697
|
+
Relational
|
1698
|
+
i
|
1699
|
+
13
|
1700
|
+
45
|
1701
|
+
0
|
1702
|
+
1
|
1703
|
+
5
|
1704
|
+
48
|
1705
|
+
2
|
1706
|
+
5
|
1707
|
+
48
|
1708
|
+
3
|
1709
|
+
49
|
1710
|
+
4
|
1711
|
+
2
|
1712
|
+
11
|
1713
|
+
I
|
1714
|
+
4
|
1715
|
+
I
|
1716
|
+
0
|
1717
|
+
I
|
1718
|
+
0
|
1719
|
+
I
|
1720
|
+
0
|
1721
|
+
I
|
1722
|
+
-2
|
1723
|
+
p
|
1724
|
+
5
|
1725
|
+
x
|
1726
|
+
5
|
1727
|
+
Lispy
|
1728
|
+
n
|
1729
|
+
x
|
1730
|
+
4
|
1731
|
+
left
|
1732
|
+
x
|
1733
|
+
5
|
1734
|
+
right
|
1735
|
+
x
|
1736
|
+
9
|
1737
|
+
intersect
|
1738
|
+
p
|
1739
|
+
3
|
1740
|
+
I
|
1741
|
+
0
|
1742
|
+
I
|
1743
|
+
30
|
1744
|
+
I
|
1745
|
+
d
|
1746
|
+
x
|
1747
|
+
77
|
1748
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1749
|
+
p
|
1750
|
+
0
|
1751
|
+
x
|
1752
|
+
3
|
1753
|
+
let
|
1754
|
+
x
|
1755
|
+
8
|
1756
|
+
expected
|
1757
|
+
M
|
1758
|
+
1
|
1759
|
+
p
|
1760
|
+
2
|
1761
|
+
x
|
1762
|
+
9
|
1763
|
+
for_block
|
1764
|
+
t
|
1765
|
+
n
|
1766
|
+
x
|
1767
|
+
10
|
1768
|
+
Relational
|
1769
|
+
i
|
1770
|
+
57
|
1771
|
+
44
|
1772
|
+
43
|
1773
|
+
0
|
1774
|
+
80
|
1775
|
+
49
|
1776
|
+
1
|
1777
|
+
1
|
1778
|
+
13
|
1779
|
+
7
|
1780
|
+
2
|
1781
|
+
7
|
1782
|
+
3
|
1783
|
+
64
|
1784
|
+
49
|
1785
|
+
4
|
1786
|
+
2
|
1787
|
+
15
|
1788
|
+
13
|
1789
|
+
7
|
1790
|
+
5
|
1791
|
+
7
|
1792
|
+
6
|
1793
|
+
64
|
1794
|
+
49
|
1795
|
+
4
|
1796
|
+
2
|
1797
|
+
15
|
1798
|
+
44
|
1799
|
+
43
|
1800
|
+
0
|
1801
|
+
80
|
1802
|
+
49
|
1803
|
+
1
|
1804
|
+
1
|
1805
|
+
13
|
1806
|
+
7
|
1807
|
+
2
|
1808
|
+
7
|
1809
|
+
7
|
1810
|
+
64
|
1811
|
+
49
|
1812
|
+
4
|
1813
|
+
2
|
1814
|
+
15
|
1815
|
+
13
|
1816
|
+
7
|
1817
|
+
5
|
1818
|
+
7
|
1819
|
+
8
|
1820
|
+
64
|
1821
|
+
49
|
1822
|
+
4
|
1823
|
+
2
|
1824
|
+
15
|
1825
|
+
35
|
1826
|
+
2
|
1827
|
+
11
|
1828
|
+
I
|
1829
|
+
6
|
1830
|
+
I
|
1831
|
+
0
|
1832
|
+
I
|
1833
|
+
0
|
1834
|
+
I
|
1835
|
+
0
|
1836
|
+
I
|
1837
|
+
-2
|
1838
|
+
p
|
1839
|
+
9
|
1840
|
+
x
|
1841
|
+
4
|
1842
|
+
Hash
|
1843
|
+
x
|
1844
|
+
16
|
1845
|
+
new_from_literal
|
1846
|
+
x
|
1847
|
+
3
|
1848
|
+
sid
|
1849
|
+
s
|
1850
|
+
2
|
1851
|
+
S1
|
1852
|
+
x
|
1853
|
+
3
|
1854
|
+
[]=
|
1855
|
+
x
|
1856
|
+
4
|
1857
|
+
city
|
1858
|
+
s
|
1859
|
+
6
|
1860
|
+
London
|
1861
|
+
s
|
1862
|
+
2
|
1863
|
+
S2
|
1864
|
+
s
|
1865
|
+
5
|
1866
|
+
Paris
|
1867
|
+
p
|
1868
|
+
5
|
1869
|
+
I
|
1870
|
+
0
|
1871
|
+
I
|
1872
|
+
32
|
1873
|
+
I
|
1874
|
+
1b
|
1875
|
+
I
|
1876
|
+
33
|
1877
|
+
I
|
1878
|
+
39
|
1879
|
+
x
|
1880
|
+
77
|
1881
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1882
|
+
p
|
1883
|
+
0
|
1884
|
+
M
|
1885
|
+
1
|
1886
|
+
p
|
1887
|
+
2
|
1888
|
+
x
|
1889
|
+
9
|
1890
|
+
for_block
|
1891
|
+
t
|
1892
|
+
n
|
1893
|
+
x
|
1894
|
+
10
|
1895
|
+
Relational
|
1896
|
+
i
|
1897
|
+
9
|
1898
|
+
5
|
1899
|
+
48
|
1900
|
+
0
|
1901
|
+
5
|
1902
|
+
48
|
1903
|
+
1
|
1904
|
+
83
|
1905
|
+
2
|
1906
|
+
11
|
1907
|
+
I
|
1908
|
+
3
|
1909
|
+
I
|
1910
|
+
0
|
1911
|
+
I
|
1912
|
+
0
|
1913
|
+
I
|
1914
|
+
0
|
1915
|
+
I
|
1916
|
+
-2
|
1917
|
+
p
|
1918
|
+
3
|
1919
|
+
x
|
1920
|
+
6
|
1921
|
+
should
|
1922
|
+
x
|
1923
|
+
8
|
1924
|
+
expected
|
1925
|
+
x
|
1926
|
+
2
|
1927
|
+
==
|
1928
|
+
p
|
1929
|
+
3
|
1930
|
+
I
|
1931
|
+
0
|
1932
|
+
I
|
1933
|
+
35
|
1934
|
+
I
|
1935
|
+
9
|
1936
|
+
x
|
1937
|
+
77
|
1938
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1939
|
+
p
|
1940
|
+
0
|
1941
|
+
x
|
1942
|
+
2
|
1943
|
+
it
|
1944
|
+
p
|
1945
|
+
7
|
1946
|
+
I
|
1947
|
+
0
|
1948
|
+
I
|
1949
|
+
30
|
1950
|
+
I
|
1951
|
+
a
|
1952
|
+
I
|
1953
|
+
31
|
1954
|
+
I
|
1955
|
+
14
|
1956
|
+
I
|
1957
|
+
35
|
1958
|
+
I
|
1959
|
+
1c
|
1960
|
+
x
|
1961
|
+
77
|
1962
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
1963
|
+
p
|
1964
|
+
0
|
1965
|
+
p
|
1966
|
+
23
|
1967
|
+
I
|
1968
|
+
0
|
1969
|
+
I
|
1970
|
+
6
|
1971
|
+
I
|
1972
|
+
a
|
1973
|
+
I
|
1974
|
+
7
|
1975
|
+
I
|
1976
|
+
13
|
1977
|
+
I
|
1978
|
+
9
|
1979
|
+
I
|
1980
|
+
1d
|
1981
|
+
I
|
1982
|
+
f
|
1983
|
+
I
|
1984
|
+
27
|
1985
|
+
I
|
1986
|
+
14
|
1987
|
+
I
|
1988
|
+
31
|
1989
|
+
I
|
1990
|
+
19
|
1991
|
+
I
|
1992
|
+
3b
|
1993
|
+
I
|
1994
|
+
1a
|
1995
|
+
I
|
1996
|
+
43
|
1997
|
+
I
|
1998
|
+
1c
|
1999
|
+
I
|
2000
|
+
4e
|
2001
|
+
I
|
2002
|
+
21
|
2003
|
+
I
|
2004
|
+
59
|
2005
|
+
I
|
2006
|
+
2a
|
2007
|
+
I
|
2008
|
+
64
|
2009
|
+
I
|
2010
|
+
2f
|
2011
|
+
I
|
2012
|
+
6f
|
2013
|
+
x
|
2014
|
+
77
|
2015
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
2016
|
+
p
|
2017
|
+
0
|
2018
|
+
x
|
2019
|
+
8
|
2020
|
+
describe
|
2021
|
+
p
|
2022
|
+
3
|
2023
|
+
I
|
2024
|
+
2
|
2025
|
+
I
|
2026
|
+
4
|
2027
|
+
I
|
2028
|
+
d
|
2029
|
+
x
|
2030
|
+
77
|
2031
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
2032
|
+
p
|
2033
|
+
0
|
2034
|
+
x
|
2035
|
+
13
|
2036
|
+
attach_method
|
2037
|
+
p
|
2038
|
+
3
|
2039
|
+
I
|
2040
|
+
2
|
2041
|
+
I
|
2042
|
+
3
|
2043
|
+
I
|
2044
|
+
1e
|
2045
|
+
x
|
2046
|
+
77
|
2047
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
2048
|
+
p
|
2049
|
+
0
|
2050
|
+
x
|
2051
|
+
13
|
2052
|
+
attach_method
|
2053
|
+
p
|
2054
|
+
5
|
2055
|
+
I
|
2056
|
+
0
|
2057
|
+
I
|
2058
|
+
1
|
2059
|
+
I
|
2060
|
+
9
|
2061
|
+
I
|
2062
|
+
2
|
2063
|
+
I
|
2064
|
+
25
|
2065
|
+
x
|
2066
|
+
77
|
2067
|
+
/home/blambeau/work/devel/alf/spec/unit/operator/relational/test_intersect.rb
|
2068
|
+
p
|
2069
|
+
0
|