aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/hu.bme.mit.inf.dslreasoner.domains.alloyexamples/examples/filesystem.als
blob: 819f124779c84431b402196aac2a003944870e72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
// A file system object in the file system
abstract sig FSObject { }

// File system objects must be either directories or files.
sig File, Dir extends FSObject { }

// A File System
sig FileSystem {
  root: Dir,
  live: set FSObject,
  contents: Dir lone-> FSObject,
  parent: FSObject ->lone Dir
}{
  // root has no parent
  no root.parent
  // live objects are those reachable from the root
  live = root.*contents
  // contents only defined on live objects
  contents in live->live
  // parent is the inverse of contents
  parent = ~contents
}

run xrx1s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run xrx2s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run xrx3s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rxx4s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rxx5s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx6s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx7s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx8s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx9s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx10s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r11s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx12s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx13s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx14s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx15s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx16s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx17s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx18s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx19s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx20s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx21s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx22s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx23s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx24s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx25s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx26s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx27s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx28s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx29s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run rx30s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r1s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r2s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r3s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r4s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r5s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r6s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r7s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r8s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r9s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r10s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r11s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r12s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r13s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r14s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r15s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r16s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r17s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r18s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r19s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r20s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r21s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r22s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r23s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r24s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r25s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r26s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r27s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r28s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r29s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r30s5 {} for exactly 1 FileSystem, exactly 4 FSObject
run r1s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r2s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r3s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r4s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r5s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r6s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r7s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r8s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r9s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r10s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r11s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r12s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r13s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r14s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r15s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r16s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r17s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r18s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r19s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r20s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r21s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r22s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r23s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r24s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r25s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r26s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r27s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r28s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r29s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r30s10 {} for exactly 1 FileSystem, exactly 9 FSObject
run r1s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r2s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r3s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r4s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r5s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r6s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r7s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r8s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r9s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r10s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r11s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r12s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r13s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r14s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r15s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r16s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r17s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r18s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r19s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r20s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r21s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r22s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r23s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r24s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r25s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r26s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r27s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r28s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r29s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r30s15 {} for exactly 1 FileSystem, exactly 14 FSObject
run r1s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r2s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r3s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r4s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r5s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r6s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r7s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r8s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r9s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r10s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r11s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r12s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r13s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r14s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r15s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r16s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r17s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r18s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r19s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r20s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r21s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r22s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r23s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r24s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r25s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r26s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r27s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r28s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r29s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r30s20 {} for exactly 1 FileSystem, exactly 19 FSObject
run r1s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r2s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r3s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r4s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r5s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r6s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r7s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r8s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r9s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r10s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r11s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r12s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r13s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r14s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r15s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r16s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r17s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r18s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r19s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r20s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r21s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r22s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r23s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r24s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r25s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r26s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r27s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r28s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r29s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r30s25 {} for exactly 1 FileSystem, exactly 24 FSObject
run r1s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r2s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r3s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r4s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r5s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r6s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r7s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r8s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r9s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r10s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r11s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r12s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r13s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r14s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r15s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r16s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r17s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r18s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r19s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r20s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r21s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r22s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r23s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r24s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r25s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r26s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r27s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r28s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r29s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r30s30 {} for exactly 1 FileSystem, exactly 29 FSObject
run r1s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r2s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r3s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r4s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r5s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r6s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r7s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r8s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r9s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r10s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r11s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r12s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r13s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r14s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r15s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r16s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r17s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r18s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r19s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r20s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r21s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r22s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r23s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r24s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r25s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r26s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r27s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r28s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r29s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r30s35 {} for exactly 1 FileSystem, exactly 34 FSObject
run r1s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r2s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r3s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r4s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r5s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r6s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r7s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r8s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r9s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r10s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r11s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r12s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r13s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r14s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r15s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r16s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r17s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r18s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r19s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r20s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r21s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r22s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r23s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r24s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r25s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r26s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r27s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r28s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r29s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r30s40 {} for exactly 1 FileSystem, exactly 39 FSObject
run r1s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r2s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r3s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r4s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r5s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r6s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r7s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r8s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r9s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r10s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r11s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r12s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r13s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r14s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r15s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r16s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r17s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r18s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r19s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r20s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r21s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r22s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r23s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r24s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r25s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r26s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r27s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r28s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r29s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r30s45 {} for exactly 1 FileSystem, exactly 44 FSObject
run r1s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r2s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r3s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r4s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r5s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r6s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r7s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r8s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r9s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r10s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r11s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r12s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r13s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r14s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r15s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r16s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r17s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r18s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r19s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r20s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r21s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r22s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r23s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r24s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r25s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r26s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r27s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r28s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r29s50 {} for exactly 1 FileSystem, exactly 49 FSObject
run r30s50 {} for exactly 1 FileSystem, exactly 49 FSObject