alf 0.10.0 → 0.10.1

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