-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.txt
664 lines (561 loc) · 18.9 KB
/
output.txt
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
Initial state:
2 10 3 []
1 6 8 4
5 9 7 12
13 14 11 15
========================
Running unidirectional IDA* using manhattanDistance+linearConflict
--------------------------
Elapsed time: 0.008 s
States explored: 94
Shortest path: 13 moves
Running bidirectional A* using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:8 backward depth: 5
Nodes Generated: 48 (27 open/21 closed)
Path Length: 13
Run time: PT0.003S
Running bidirectional A* using manhattanDistance
--------------------------
Found path: Forward depth:7 backward depth: 6
Nodes Generated: 73 (40 open/33 closed)
Path Length: 13
Run time: PT0.001S
Running bidirectional WA* (W=1.2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:6 backward depth: 7
Nodes Generated: 41 (23 open/18 closed)
Path Length: 13
Run time: PT0.001S
Running bidirectional WA* (W=1.2) using manhattanDistance
--------------------------
Found path: Forward depth:6 backward depth: 7
Nodes Generated: 57 (32 open/25 closed)
Path Length: 13
Run time: PT0.001S
Running bidirectional WA* (W=1.4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:6 backward depth: 7
Nodes Generated: 41 (24 open/17 closed)
Path Length: 13
Run time: PT0.001S
Running bidirectional WA* (W=1.4) using manhattanDistance
--------------------------
Found path: Forward depth:6 backward depth: 7
Nodes Generated: 57 (32 open/25 closed)
Path Length: 13
Run time: PT0.001S
Running bidirectional WA* (W=2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:5 backward depth: 8
Nodes Generated: 39 (23 open/16 closed)
Path Length: 13
Run time: PT0.001S
Running bidirectional WA* (W=2) using manhattanDistance
--------------------------
Found path: Forward depth:5 backward depth: 8
Nodes Generated: 55 (31 open/24 closed)
Path Length: 13
Run time: PT0S
Running bidirectional WA* (W=4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:5 backward depth: 8
Nodes Generated: 41 (24 open/17 closed)
Path Length: 13
Run time: PT0S
Running bidirectional WA* (W=4) using manhattanDistance
--------------------------
Found path: Forward depth:4 backward depth: 9
Nodes Generated: 69 (38 open/31 closed)
Path Length: 13
Run time: PT0.001S
Running MM manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:7 backward depth: 6
Nodes Generated: 50 (29 open/21 closed)
Path length: 13
Run time: PT0.002S
Running MM manhattanDistance
--------------------------
Found path: Forward depth:7 backward depth: 6
Nodes Generated: 75 (42 open/33 closed)
Path length: 13
Run time: PT0.001S
Running MMε manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:7 backward depth: 6
Nodes Generated: 50 (29 open/21 closed)
Path length: 13
Run time: PT0.001S
Running MMε manhattanDistance
--------------------------
Found path: Forward depth:7 backward depth: 6
Nodes Generated: 75 (42 open/33 closed)
Path length: 13
Run time: PT0S
==========================
Initial state:
2 11 3 10
1 9 4 []
6 13 7 8
5 14 15 12
========================
Running unidirectional IDA* using manhattanDistance+linearConflict
--------------------------
Elapsed time: 0.035 s
States explored: 7,962
Shortest path: 30 moves
Running bidirectional A* using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:14 backward depth: 18
Nodes Generated: 1867 (957 open/910 closed)
Path Length: 32
Run time: PT0.013S
Running bidirectional A* using manhattanDistance
--------------------------
Found path: Forward depth:11 backward depth: 21
Nodes Generated: 2881 (1493 open/1388 closed)
Path Length: 32
Run time: PT0.01S
Running bidirectional WA* (W=1.2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:13 backward depth: 19
Nodes Generated: 748 (390 open/358 closed)
Path Length: 32
Run time: PT0.004S
Running bidirectional WA* (W=1.2) using manhattanDistance
--------------------------
Found path: Forward depth:11 backward depth: 21
Nodes Generated: 1389 (723 open/666 closed)
Path Length: 32
Run time: PT0.005S
Running bidirectional WA* (W=1.4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:11 backward depth: 21
Nodes Generated: 516 (270 open/246 closed)
Path Length: 32
Run time: PT0.003S
Running bidirectional WA* (W=1.4) using manhattanDistance
--------------------------
Found path: Forward depth:4 backward depth: 26
Nodes Generated: 1786 (934 open/852 closed)
Path Length: 30
Run time: PT0.006S
Running bidirectional WA* (W=2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:4 backward depth: 28
Nodes Generated: 603 (315 open/288 closed)
Path Length: 32
Run time: PT0.004S
Running bidirectional WA* (W=2) using manhattanDistance
--------------------------
Found path: Forward depth:4 backward depth: 28
Nodes Generated: 1212 (638 open/574 closed)
Path Length: 32
Run time: PT0.003S
Running bidirectional WA* (W=4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:4 backward depth: 36
Nodes Generated: 598 (314 open/284 closed)
Path Length: 40
Run time: PT0.003S
Running bidirectional WA* (W=4) using manhattanDistance
--------------------------
Found path: Forward depth:4 backward depth: 36
Nodes Generated: 1909 (1003 open/906 closed)
Path Length: 40
Run time: PT0.004S
Running MM manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:15 backward depth: 15
Nodes Generated: 4808 (2399 open/2409 closed)
Path length: 30
Run time: PT0.025S
Running MM manhattanDistance
--------------------------
Found path: Forward depth:15 backward depth: 15
Nodes Generated: 9450 (4749 open/4701 closed)
Path length: 30
Run time: PT0.028S
Running MMε manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:15 backward depth: 15
Nodes Generated: 4808 (2399 open/2409 closed)
Path length: 30
Run time: PT0.028S
Running MMε manhattanDistance
--------------------------
Found path: Forward depth:15 backward depth: 15
Nodes Generated: 9450 (4749 open/4701 closed)
Path length: 30
Run time: PT0.024S
==========================
Initial state:
5 1 15 2
[] 11 14 7
4 6 3 9
10 13 12 8
========================
Running unidirectional IDA* using manhattanDistance+linearConflict
--------------------------
Elapsed time: 0.104 s
States explored: 87,313
Shortest path: 43 moves
Running bidirectional A* using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:20 backward depth: 25
Nodes Generated: 25183 (12534 open/12649 closed)
Path Length: 45
Run time: PT0.092S
Running bidirectional A* using manhattanDistance
--------------------------
Found path: Forward depth:17 backward depth: 28
Nodes Generated: 34250 (16836 open/17414 closed)
Path Length: 45
Run time: PT0.045S
Running bidirectional WA* (W=1.2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:36 backward depth: 13
Nodes Generated: 8719 (4390 open/4329 closed)
Path Length: 49
Run time: PT0.016S
Running bidirectional WA* (W=1.2) using manhattanDistance
--------------------------
Found path: Forward depth:28 backward depth: 21
Nodes Generated: 22105 (10878 open/11227 closed)
Path Length: 49
Run time: PT0.026S
Running bidirectional WA* (W=1.4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:38 backward depth: 13
Nodes Generated: 4706 (2407 open/2299 closed)
Path Length: 51
Run time: PT0.01S
Running bidirectional WA* (W=1.4) using manhattanDistance
--------------------------
Found path: Forward depth:11 backward depth: 38
Nodes Generated: 21261 (10547 open/10714 closed)
Path Length: 49
Run time: PT0.023S
Running bidirectional WA* (W=2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:1 backward depth: 48
Nodes Generated: 767 (405 open/362 closed)
Path Length: 49
Run time: PT0.001S
Running bidirectional WA* (W=2) using manhattanDistance
--------------------------
Found path: Forward depth:1 backward depth: 52
Nodes Generated: 39468 (19914 open/19554 closed)
Path Length: 53
Run time: PT0.052S
Running bidirectional WA* (W=4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:1 backward depth: 62
Nodes Generated: 1284 (674 open/610 closed)
Path Length: 63
Run time: PT0.002S
Running bidirectional WA* (W=4) using manhattanDistance
--------------------------
Found path: Forward depth:64 backward depth: 1
Nodes Generated: 7769 (3958 open/3811 closed)
Path Length: 65
Run time: PT0.009S
Running MM manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:21 backward depth: 22
Nodes Generated: 100141 (48270 open/51871 closed)
Path length: 43
Run time: PT0.658S
Running MM manhattanDistance
--------------------------
Found path: Forward depth:21 backward depth: 22
Nodes Generated: 369259 (173846 open/195413 closed)
Path length: 43
Run time: PT7.215S
Running MMε manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:22 backward depth: 21
Nodes Generated: 104430 (50224 open/54206 closed)
Path length: 43
Run time: PT0.75S
Running MMε manhattanDistance
--------------------------
Found path: Forward depth:22 backward depth: 21
Nodes Generated: 393231 (184810 open/208421 closed)
Path length: 43
Run time: PT8.542S
==========================
Initial state:
5 1 3 14
10 9 8 4
7 [] 2 12
11 13 6 15
========================
Running unidirectional IDA* using manhattanDistance+linearConflict
--------------------------
Elapsed time: 0.008 s
States explored: 31,570
Shortest path: 35 moves
Running bidirectional A* using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:15 backward depth: 22
Nodes Generated: 2675 (1357 open/1318 closed)
Path Length: 37
Run time: PT0.005S
Running bidirectional A* using manhattanDistance
--------------------------
Found path: Forward depth:12 backward depth: 27
Nodes Generated: 2298 (1196 open/1102 closed)
Path Length: 39
Run time: PT0.002S
Running bidirectional WA* (W=1.2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:12 backward depth: 27
Nodes Generated: 1154 (602 open/552 closed)
Path Length: 39
Run time: PT0.002S
Running bidirectional WA* (W=1.2) using manhattanDistance
--------------------------
Found path: Forward depth:15 backward depth: 22
Nodes Generated: 2332 (1201 open/1131 closed)
Path Length: 37
Run time: PT0.002S
Running bidirectional WA* (W=1.4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:11 backward depth: 30
Nodes Generated: 511 (271 open/240 closed)
Path Length: 41
Run time: PT0.001S
Running bidirectional WA* (W=1.4) using manhattanDistance
--------------------------
Found path: Forward depth:11 backward depth: 28
Nodes Generated: 1250 (644 open/606 closed)
Path Length: 39
Run time: PT0.002S
Running bidirectional WA* (W=2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:35 backward depth: 6
Nodes Generated: 673 (356 open/317 closed)
Path Length: 41
Run time: PT0.001S
Running bidirectional WA* (W=2) using manhattanDistance
--------------------------
Found path: Forward depth:2 backward depth: 35
Nodes Generated: 1949 (1017 open/932 closed)
Path Length: 37
Run time: PT0.002S
Running bidirectional WA* (W=4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:1 backward depth: 44
Nodes Generated: 559 (297 open/262 closed)
Path Length: 45
Run time: PT0.001S
Running bidirectional WA* (W=4) using manhattanDistance
--------------------------
Found path: Forward depth:48 backward depth: 1
Nodes Generated: 3428 (1787 open/1641 closed)
Path Length: 49
Run time: PT0.004S
Running MM manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:18 backward depth: 17
Found path: Forward depth:18 backward depth: 17
Nodes Generated: 9595 (4786 open/4809 closed)
Path length: 35
Run time: PT0.016S
Running MM manhattanDistance
--------------------------
Found path: Forward depth:18 backward depth: 17
Found path: Forward depth:18 backward depth: 17
Nodes Generated: 18604 (9287 open/9317 closed)
Path length: 35
Run time: PT0.03S
Running MMε manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:18 backward depth: 17
Nodes Generated: 19192 (9511 open/9681 closed)
Path length: 35
Run time: PT0.044S
Running MMε manhattanDistance
--------------------------
Found path: Forward depth:18 backward depth: 17
Nodes Generated: 35419 (17414 open/18005 closed)
Path length: 35
Run time: PT0.093S
==========================
Initial state:
15 12 [] 8
9 4 3 10
5 1 6 11
7 2 13 14
========================
Running unidirectional IDA* using manhattanDistance+linearConflict
--------------------------
Elapsed time: 0.355 s
States explored: 3,565,946
Shortest path: 50 moves
Running bidirectional A* using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:18 backward depth: 34
Nodes Generated: 44910 (21250 open/23660 closed)
Path Length: 52
Run time: PT0.084S
Running bidirectional A* using manhattanDistance
--------------------------
Found path: Forward depth:26 backward depth: 28
Nodes Generated: 182376 (88620 open/93756 closed)
Path Length: 54
Run time: PT0.278S
Running bidirectional WA* (W=1.2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:14 backward depth: 38
Nodes Generated: 15458 (7478 open/7980 closed)
Path Length: 52
Run time: PT0.027S
Running bidirectional WA* (W=1.2) using manhattanDistance
--------------------------
Found path: Forward depth:28 backward depth: 26
Nodes Generated: 88470 (43404 open/45066 closed)
Path Length: 54
Run time: PT0.116S
Running bidirectional WA* (W=1.4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:16 backward depth: 38
Nodes Generated: 7871 (3927 open/3944 closed)
Path Length: 54
Run time: PT0.013S
Running bidirectional WA* (W=1.4) using manhattanDistance
--------------------------
Found path: Forward depth:13 backward depth: 45
Nodes Generated: 56171 (27991 open/28180 closed)
Path Length: 58
Run time: PT0.071S
Running bidirectional WA* (W=2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:10 backward depth: 48
Nodes Generated: 3542 (1822 open/1720 closed)
Path Length: 58
Run time: PT0.006S
Running bidirectional WA* (W=2) using manhattanDistance
--------------------------
Found path: Forward depth:59 backward depth: 1
Nodes Generated: 21709 (11100 open/10609 closed)
Path Length: 60
Run time: PT0.025S
Running bidirectional WA* (W=4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:68 backward depth: 2
Nodes Generated: 642 (335 open/307 closed)
Path Length: 70
Run time: PT0.001S
Running bidirectional WA* (W=4) using manhattanDistance
--------------------------
Found path: Forward depth:74 backward depth: 4
Nodes Generated: 15642 (7915 open/7727 closed)
Path Length: 78
Run time: PT0.019S
Running MM manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:25 backward depth: 25
Found path: Forward depth:25 backward depth: 25
Nodes Generated: 482778 (222234 open/260544 closed)
Path length: 50
Run time: PT11.76S
Running MM manhattanDistance
--------------------------
Found path: Forward depth:25 backward depth: 25
Found path: Forward depth:25 backward depth: 25
Found path: Forward depth:25 backward depth: 25
Nodes Generated: 2398242 (1120004 open/1278238 closed)
Path length: 50
Run time: PT4M51.299S
Running MMε manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:25 backward depth: 25
Found path: Forward depth:25 backward depth: 25
Nodes Generated: 482778 (222234 open/260544 closed)
Path length: 50
Run time: PT12.169S
Running MMε manhattanDistance
--------------------------
Found path: Forward depth:25 backward depth: 25
Found path: Forward depth:25 backward depth: 25
Found path: Forward depth:25 backward depth: 25
Nodes Generated: 2398242 (1120004 open/1278238 closed)
Path length: 50
Run time: PT4M44.449S
==========================
Initial state:
4 3 2 1
8 7 6 5
12 11 10 9
[] 14 15 13
========================
Running unidirectional IDA* using manhattanDistance+linearConflict
--------------------------
Elapsed time: 564.157 s
States explored: 5,574,509,003
Shortest path: 65 moves
Running bidirectional A* using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:36 backward depth: 29
Nodes Generated: 4919381 (2290766 open/2628615 closed)
Path Length: 65
Run time: PT47.612S
Running bidirectional A* using manhattanDistance
--------------------------
Found path: Forward depth:37 backward depth: 36
Nodes Generated: 10066973 (4537389 open/5529584 closed)
Path Length: 73
Run time: PT4M50.04S
Running bidirectional WA* (W=1.2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:18 backward depth: 49
Nodes Generated: 1840232 (864642 open/975590 closed)
Path Length: 67
Run time: PT8.886S
Running bidirectional WA* (W=1.2) using manhattanDistance
--------------------------
Found path: Forward depth:41 backward depth: 26
Nodes Generated: 4220306 (1920839 open/2299467 closed)
Path Length: 67
Run time: PT28.926S
Running bidirectional WA* (W=1.4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:58 backward depth: 11
Nodes Generated: 228125 (109134 open/118991 closed)
Path Length: 69
Run time: PT0.545S
Running bidirectional WA* (W=1.4) using manhattanDistance
--------------------------
Found path: Forward depth:26 backward depth: 41
Nodes Generated: 1373529 (632261 open/741268 closed)
Path Length: 67
Run time: PT5.912S
Running bidirectional WA* (W=2) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:1 backward depth: 80
Nodes Generated: 6040 (3022 open/3018 closed)
Path Length: 81
Run time: PT0.011S
Running bidirectional WA* (W=2) using manhattanDistance
--------------------------
Found path: Forward depth:24 backward depth: 59
Nodes Generated: 329421 (155739 open/173682 closed)
Path Length: 83
Run time: PT0.629S
Running bidirectional WA* (W=4) using manhattanDistance+linearConflict
--------------------------
Found path: Forward depth:120 backward depth: 1
Nodes Generated: 15375 (7630 open/7745 closed)
Path Length: 121
Run time: PT0.029S
Running bidirectional WA* (W=4) using manhattanDistance
--------------------------
Found path: Forward depth:5 backward depth: 92
Nodes Generated: 16083 (8009 open/8074 closed)
Path Length: 97
Run time: PT0.018S
Running MM manhattanDistance+linearConflict
--------------------------