forked from praseedm/Reinforcement_Learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0.txt
1838 lines (1225 loc) · 46.2 KB
/
0.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
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Initialize
Goal! : 16.3 move : 106 time : 4.82699990273 seconds ---
Iteration = 1
Goal! : 14.7 move : 116 time : 8.6970000267 seconds ---
Iteration = 2
Goal! : 24.0 move : 54 time : 10.379999876 seconds ---
Iteration = 3
Goal! : 14.4 move : 120 time : 14.3009998798 seconds ---
Iteration = 4
Goal! : 25.6 move : 40 time : 15.628000021 seconds ---
Iteration = 5
Goal! : 26.6 move : 28 time : 16.7139999866 seconds ---
Iteration = 6
Goal! : 26.7 move : 32 time : 17.7630000114 seconds ---
Iteration = 7
Goal! : 29.2 move : 16 time : 18.2239999771 seconds ---
Iteration = 8
Goal! : 25.4 move : 46 time : 19.5820000172 seconds ---
Iteration = 9
Goal! : 27.3 move : 32 time : 20.4869999886 seconds ---
Iteration = 10
Goal! : 28.5 move : 18 time : 21.1209998131 seconds ---
Iteration = 11
Goal! : 29.3 move : 16 time : 21.5599999428 seconds ---
Iteration = 12
Goal! : 27.8 move : 26 time : 22.3579998016 seconds ---
Iteration = 13
Goal! : 26.1 move : 38 time : 23.5509998798 seconds ---
Iteration = 14
Goal! : 27.3 move : 30 time : 24.4479999542 seconds ---
Iteration = 15
Goal! : 28.8 move : 16 time : 25.0130000114 seconds ---
Iteration = 16
Goal! : 28.5 move : 22 time : 25.6380000114 seconds ---
Iteration = 17
Goal! : 29.3 move : 16 time : 26.0849997997 seconds ---
Iteration = 18
Goal! : 29.7 move : 14 time : 26.4299998283 seconds ---
Iteration = 19
Goal! : 29.8 move : 12 time : 26.7589998245 seconds ---
Iteration = 20
Goal! : 29.9 move : 12 time : 27.0469999313 seconds ---
Iteration = 21
Goal! : 29.8 move : 12 time : 27.3679997921 seconds ---
Iteration = 22
Goal! : 29.6 move : 14 time : 27.7300000191 seconds ---
Iteration = 23
Goal! : 29.5 move : 14 time : 28.121999979 seconds ---
Iteration = 24
Goal! : 29.9 move : 12 time : 28.4179999828 seconds ---
Iteration = 25
Goal! : 29.9 move : 12 time : 28.7189998627 seconds ---
Iteration = 26
Goal! : 29.9 move : 12 time : 29.0169999599 seconds ---
Iteration = 27
Goal! : 29.9 move : 12 time : 29.3190000057 seconds ---
Iteration = 28
Goal! : 29.9 move : 12 time : 29.618999958 seconds ---
Iteration = 29
Goal! : 29.9 move : 12 time : 29.9189999104 seconds ---
Iteration = 30
Goal! : 29.9 move : 12 time : 30.2149999142 seconds ---
Iteration = 31
Goal! : 29.9 move : 12 time : 30.5269999504 seconds ---
Iteration = 32
Goal! : 29.9 move : 12 time : 30.8329999447 seconds ---
Iteration = 33
Goal! : 29.9 move : 12 time : 31.1380000114 seconds ---
Iteration = 34
Goal! : 29.9 move : 12 time : 31.4359998703 seconds ---
Iteration = 35
Goal! : 29.9 move : 12 time : 31.7479999065 seconds ---
Iteration = 36
Goal! : 29.9 move : 12 time : 32.0490000248 seconds ---
Iteration = 37
Goal! : 29.9 move : 12 time : 32.3489999771 seconds ---
Iteration = 38
Goal! : 29.9 move : 12 time : 32.6569998264 seconds ---
Iteration = 39
Goal! : 29.9 move : 12 time : 32.9579999447 seconds ---
Iteration = 40
Goal! : 29.9 move : 12 time : 33.2630000114 seconds ---
Iteration = 41
Goal! : 29.9 move : 12 time : 33.5590000153 seconds ---
Iteration = 42
Goal! : 29.9 move : 12 time : 33.8619999886 seconds ---
Iteration = 43
Goal! : 29.9 move : 12 time : 34.1610000134 seconds ---
Iteration = 44
Goal! : 29.9 move : 12 time : 34.4670000076 seconds ---
Iteration = 45
Goal! : 29.9 move : 12 time : 34.7699999809 seconds ---
Iteration = 46
Goal! : 29.9 move : 12 time : 35.0709998608 seconds ---
Iteration = 47
Goal! : 29.9 move : 12 time : 35.368999958 seconds ---
Iteration = 48
Goal! : 29.9 move : 12 time : 35.6749999523 seconds ---
Iteration = 49
Goal! : 29.9 move : 12 time : 35.9789998531 seconds ---
Iteration = 50
Goal! : 29.9 move : 12 time : 36.2789998055 seconds ---
Iteration = 51
Goal! : 29.9 move : 12 time : 36.6009998322 seconds ---
Iteration = 52
Goal! : 29.9 move : 12 time : 36.9010000229 seconds ---
Iteration = 53
Goal! : 29.9 move : 12 time : 37.2049999237 seconds ---
Iteration = 54
Goal! : 29.9 move : 12 time : 37.5279998779 seconds ---
Iteration = 55
Goal! : 29.9 move : 12 time : 37.8279998302 seconds ---
Iteration = 56
Goal! : 29.9 move : 12 time : 38.135999918 seconds ---
Iteration = 57
Goal! : 29.9 move : 12 time : 38.4279999733 seconds ---
Iteration = 58
Goal! : 29.9 move : 12 time : 38.7309999466 seconds ---
Iteration = 59
Goal! : 29.9 move : 12 time : 39.0329999924 seconds ---
Iteration = 60
Goal! : 29.9 move : 12 time : 39.3329999447 seconds ---
Iteration = 61
Goal! : 29.9 move : 12 time : 39.628000021 seconds ---
Iteration = 62
Goal! : 29.9 move : 12 time : 39.9309999943 seconds ---
Iteration = 63
Goal! : 29.9 move : 12 time : 40.2309999466 seconds ---
Iteration = 64
Goal! : 29.9 move : 12 time : 40.5319998264 seconds ---
Iteration = 65
Goal! : 29.9 move : 12 time : 40.8299999237 seconds ---
Iteration = 66
Goal! : 29.9 move : 12 time : 41.1419999599 seconds ---
Iteration = 67
Goal! : 29.9 move : 12 time : 41.4409999847 seconds ---
Iteration = 68
Goal! : 29.9 move : 12 time : 41.7459998131 seconds ---
Iteration = 69
Goal! : 29.9 move : 12 time : 42.0539999008 seconds ---
Iteration = 70
Goal! : 29.9 move : 12 time : 42.3509998322 seconds ---
Iteration = 71
Goal! : 29.9 move : 12 time : 42.6499998569 seconds ---
Iteration = 72
Goal! : 29.9 move : 12 time : 42.9449999332 seconds ---
Iteration = 73
Goal! : 29.9 move : 12 time : 43.243999958 seconds ---
Iteration = 74
Goal! : 29.9 move : 12 time : 43.5559999943 seconds ---
Iteration = 75
Goal! : 29.9 move : 12 time : 43.8619999886 seconds ---
Iteration = 76
Goal! : 29.9 move : 12 time : 44.1689999104 seconds ---
Iteration = 77
Goal! : 29.9 move : 12 time : 44.4719998837 seconds ---
Iteration = 78
Goal! : 29.9 move : 12 time : 44.7760000229 seconds ---
Iteration = 79
Goal! : 29.9 move : 12 time : 45.0779998302 seconds ---
Iteration = 80
Goal! : 29.9 move : 12 time : 45.378000021 seconds ---
Iteration = 81
Goal! : 29.9 move : 12 time : 45.6819999218 seconds ---
Iteration = 82
Goal! : 29.9 move : 12 time : 45.9759998322 seconds ---
Iteration = 83
Goal! : 29.9 move : 12 time : 46.2760000229 seconds ---
Iteration = 84
Goal! : 29.9 move : 12 time : 46.5879998207 seconds ---
Iteration = 85
Goal! : 29.9 move : 12 time : 46.8899998665 seconds ---
Iteration = 86
Goal! : 29.9 move : 12 time : 47.1959998608 seconds ---
Iteration = 87
Goal! : 29.9 move : 12 time : 47.5 seconds ---
Iteration = 88
Goal! : 29.9 move : 12 time : 47.8019998074 seconds ---
Iteration = 89
Goal! : 29.9 move : 12 time : 48.1069998741 seconds ---
Iteration = 90
Goal! : 29.9 move : 12 time : 48.4169998169 seconds ---
Iteration = 91
Goal! : 29.9 move : 12 time : 48.7070000172 seconds ---
Iteration = 92
Goal! : 29.9 move : 12 time : 49.0089998245 seconds ---
Iteration = 93
Goal! : 29.9 move : 12 time : 49.3149998188 seconds ---
Iteration = 94
Goal! : 29.9 move : 12 time : 49.632999897 seconds ---
Iteration = 95
Goal! : 29.9 move : 12 time : 49.9379999638 seconds ---
Iteration = 96
Goal! : 29.9 move : 12 time : 50.2400000095 seconds ---
Iteration = 97
Goal! : 29.9 move : 12 time : 50.5299999714 seconds ---
Iteration = 98
Goal! : 29.9 move : 12 time : 50.8569998741 seconds ---
Iteration = 99
Goal! : 29.9 move : 12 time : 51.1559998989 seconds ---
Iteration = 100
Goal! : 29.9 move : 12 time : 51.4519999027 seconds ---
Iteration = 101
Goal! : 29.9 move : 12 time : 51.7679998875 seconds ---
Iteration = 102
Goal! : 29.9 move : 12 time : 52.0649998188 seconds ---
Iteration = 103
Goal! : 29.9 move : 12 time : 52.3609998226 seconds ---
Iteration = 104
Goal! : 29.9 move : 12 time : 52.6710000038 seconds ---
Iteration = 105
Goal! : 29.9 move : 12 time : 52.9709999561 seconds ---
Iteration = 106
Goal! : 29.9 move : 12 time : 53.2679998875 seconds ---
Iteration = 107
Goal! : 29.9 move : 12 time : 53.5669999123 seconds ---
Iteration = 108
Goal! : 29.9 move : 12 time : 53.8739998341 seconds ---
Iteration = 109
Goal! : 29.9 move : 12 time : 54.1789999008 seconds ---
Iteration = 110
Goal! : 29.9 move : 12 time : 54.4700000286 seconds ---
Iteration = 111
Goal! : 29.9 move : 12 time : 54.7849998474 seconds ---
Iteration = 112
Goal! : 29.9 move : 12 time : 55.0889999866 seconds ---
Iteration = 113
Goal! : 29.9 move : 12 time : 55.396999836 seconds ---
Iteration = 114
Goal! : 29.9 move : 12 time : 55.6929998398 seconds ---
Iteration = 115
Goal! : 29.9 move : 12 time : 55.9869999886 seconds ---
Iteration = 116
Goal! : 29.9 move : 12 time : 56.2849998474 seconds ---
Iteration = 117
Goal! : 29.9 move : 12 time : 56.5829999447 seconds ---
Iteration = 118
Goal! : 29.9 move : 12 time : 56.890999794 seconds ---
Iteration = 119
Goal! : 29.9 move : 12 time : 57.1999998093 seconds ---
Iteration = 120
Goal! : 29.9 move : 12 time : 57.507999897 seconds ---
Iteration = 121
Goal! : 29.9 move : 12 time : 57.8099999428 seconds ---
Iteration = 122
Goal! : 29.9 move : 12 time : 58.1159999371 seconds ---
Iteration = 123
Goal! : 29.9 move : 12 time : 58.4069998264 seconds ---
Iteration = 124
Goal! : 29.9 move : 12 time : 58.7059998512 seconds ---
Iteration = 125
Goal! : 29.9 move : 12 time : 59.010999918 seconds ---
Iteration = 126
Goal! : 29.9 move : 12 time : 59.3159999847 seconds ---
Iteration = 127
Goal! : 29.9 move : 12 time : 59.6150000095 seconds ---
Iteration = 128
Goal! : 29.9 move : 12 time : 59.9159998894 seconds ---
Iteration = 129
Goal! : 29.9 move : 12 time : 60.2239999771 seconds ---
Iteration = 130
Goal! : 29.9 move : 12 time : 60.5279998779 seconds ---
Iteration = 131
Goal! : 29.9 move : 12 time : 60.8329999447 seconds ---
Iteration = 132
Goal! : 29.9 move : 12 time : 61.135999918 seconds ---
Iteration = 133
Goal! : 29.9 move : 12 time : 61.4399998188 seconds ---
Iteration = 134
Goal! : 29.9 move : 12 time : 61.7389998436 seconds ---
Iteration = 135
Goal! : 29.9 move : 12 time : 62.0319998264 seconds ---
Iteration = 136
Goal! : 29.9 move : 12 time : 62.3409998417 seconds ---
Iteration = 137
Goal! : 29.9 move : 12 time : 62.6499998569 seconds ---
Iteration = 138
Goal! : 29.9 move : 12 time : 62.9489998817 seconds ---
Iteration = 139
Goal! : 29.9 move : 12 time : 63.253000021 seconds ---
Iteration = 140
Goal! : 29.9 move : 12 time : 63.5549998283 seconds ---
Iteration = 141
Goal! : 29.9 move : 12 time : 63.8599998951 seconds ---
Iteration = 142
Goal! : 29.9 move : 12 time : 64.1569998264 seconds ---
Iteration = 143
Goal! : 29.9 move : 12 time : 64.4599997997 seconds ---
Iteration = 144
Goal! : 29.9 move : 12 time : 64.7479999065 seconds ---
Iteration = 145
Goal! : 29.9 move : 12 time : 65.0529999733 seconds ---
Iteration = 146
Goal! : 29.9 move : 12 time : 65.3539998531 seconds ---
Iteration = 147
Goal! : 29.9 move : 12 time : 65.6499998569 seconds ---
Iteration = 148
Goal! : 29.9 move : 12 time : 65.9499998093 seconds ---
Iteration = 149
Goal! : 29.9 move : 12 time : 66.2369999886 seconds ---
Iteration = 150
Goal! : 29.9 move : 12 time : 66.5409998894 seconds ---
Iteration = 151
Goal! : 29.9 move : 12 time : 66.8439998627 seconds ---
Iteration = 152
Goal! : 29.9 move : 12 time : 67.1519999504 seconds ---
Iteration = 153
Goal! : 29.9 move : 12 time : 67.4609999657 seconds ---
Iteration = 154
Goal! : 29.9 move : 12 time : 67.7899999619 seconds ---
Iteration = 155
Goal! : 29.9 move : 12 time : 68.0989999771 seconds ---
Iteration = 156
Goal! : 29.9 move : 12 time : 68.3959999084 seconds ---
Iteration = 157
Goal! : 29.9 move : 12 time : 68.6849999428 seconds ---
Iteration = 158
Goal! : 29.9 move : 12 time : 68.9869999886 seconds ---
Iteration = 159
Goal! : 29.9 move : 12 time : 69.2919998169 seconds ---
Iteration = 160
Goal! : 29.9 move : 12 time : 69.5929999352 seconds ---
Iteration = 161
Goal! : 29.9 move : 12 time : 69.9029998779 seconds ---
Iteration = 162
Goal! : 29.9 move : 12 time : 70.2059998512 seconds ---
Iteration = 163
Goal! : 29.9 move : 12 time : 70.5099999905 seconds ---
Iteration = 164
Goal! : 29.9 move : 12 time : 70.8129999638 seconds ---
Iteration = 165
Goal! : 29.9 move : 12 time : 71.118999958 seconds ---
Iteration = 166
Goal! : 29.9 move : 12 time : 71.4259998798 seconds ---
Iteration = 167
Goal! : 29.9 move : 12 time : 71.7219998837 seconds ---
Iteration = 168
Goal! : 29.9 move : 12 time : 72.0289998055 seconds ---
Iteration = 169
Goal! : 29.9 move : 12 time : 72.3220000267 seconds ---
Iteration = 170
Goal! : 29.9 move : 12 time : 72.6309998035 seconds ---
Iteration = 171
Goal! : 29.9 move : 12 time : 72.9289999008 seconds ---
Iteration = 172
Goal! : 29.9 move : 12 time : 73.2329998016 seconds ---
Iteration = 173
Goal! : 29.9 move : 12 time : 73.5349998474 seconds ---
Iteration = 174
Goal! : 29.9 move : 12 time : 73.8439998627 seconds ---
Iteration = 175
Goal! : 29.9 move : 12 time : 74.143999815 seconds ---
Iteration = 176
Goal! : 29.9 move : 12 time : 74.4349999428 seconds ---
Iteration = 177
Goal! : 29.9 move : 12 time : 74.7349998951 seconds ---
Iteration = 178
Goal! : 29.9 move : 12 time : 75.0379998684 seconds ---
Iteration = 179
Goal! : 29.9 move : 12 time : 75.3359999657 seconds ---
Iteration = 180
Goal! : 29.9 move : 12 time : 75.6349999905 seconds ---
Iteration = 181
Goal! : 29.9 move : 12 time : 75.9369997978 seconds ---
Iteration = 182
Goal! : 29.9 move : 12 time : 76.2409999371 seconds ---
Iteration = 183
Goal! : 29.9 move : 12 time : 76.5339999199 seconds ---
Iteration = 184
Goal! : 29.9 move : 12 time : 76.8439998627 seconds ---
Iteration = 185
Goal! : 29.9 move : 12 time : 77.1529998779 seconds ---
Iteration = 186
Goal! : 29.9 move : 12 time : 77.4479999542 seconds ---
Iteration = 187
Goal! : 29.9 move : 12 time : 77.75 seconds ---
Iteration = 188
Goal! : 29.9 move : 12 time : 78.0479998589 seconds ---
Iteration = 189
Goal! : 29.9 move : 12 time : 78.3499999046 seconds ---
Iteration = 190
Goal! : 29.9 move : 12 time : 78.6539998055 seconds ---
Iteration = 191
Goal! : 29.9 move : 12 time : 78.9609999657 seconds ---
Iteration = 192
Goal! : 29.9 move : 12 time : 79.263999939 seconds ---
Iteration = 193
Goal! : 29.9 move : 12 time : 79.5629999638 seconds ---
Iteration = 194
Goal! : 29.9 move : 12 time : 79.8699998856 seconds ---
Iteration = 195
/n CHANGE MAZE 1
Iteration = 196
Goal! : 14.4 move : 110 time : 23.879999876 seconds ---
Iteration = 197
Goal! : 17.7 move : 94 time : 27.0810000896 seconds ---
Iteration = 198
Goal! : 25.4 move : 42 time : 28.4479999542 seconds ---
Iteration = 199
Goal! : 22.4 move : 62 time : 30.5090000629 seconds ---
Iteration = 200
Goal! : 25.6 move : 34 time : 31.8280000687 seconds ---
Iteration = 201
Goal! : 23.4 move : 56 time : 33.6619999409 seconds ---
Iteration = 202
Goal! : 27.2 move : 26 time : 34.6010000706 seconds ---
Iteration = 203
Goal! : 24.8 move : 46 time : 36.1019999981 seconds ---
Iteration = 204
Goal! : 27.7 move : 24 time : 36.9249999523 seconds ---
Iteration = 205
Goal! : 26.5 move : 34 time : 38.0390000343 seconds ---
Iteration = 206
Goal! : 26.8 move : 32 time : 39.0629999638 seconds ---
Iteration = 207
Goal! : 27.8 move : 28 time : 39.8559999466 seconds ---
Iteration = 208
Goal! : 27.0 move : 26 time : 40.8339998722 seconds ---
Iteration = 209
Goal! : 28.3 move : 24 time : 41.5099999905 seconds ---
Iteration = 210
Goal! : 29.0 move : 20 time : 42.0179998875 seconds ---
Iteration = 211
Goal! : 27.1 move : 32 time : 42.9719998837 seconds ---
Iteration = 212
Goal! : 29.1 move : 20 time : 43.4619998932 seconds ---
Iteration = 213
Goal! : 29.1 move : 20 time : 43.9530000687 seconds ---
Iteration = 214
Goal! : 28.7 move : 20 time : 44.5220000744 seconds ---
Iteration = 215
Goal! : 29.0 move : 20 time : 45.0390000343 seconds ---
Iteration = 216
Goal! : 29.1 move : 20 time : 45.5230000019 seconds ---
Iteration = 217
Goal! : 29.1 move : 20 time : 46.013999939 seconds ---
Iteration = 218
Goal! : 29.1 move : 20 time : 46.5120000839 seconds ---
Iteration = 219
Goal! : 29.1 move : 20 time : 47.0020000935 seconds ---
Iteration = 220
Goal! : 29.1 move : 20 time : 47.4909999371 seconds ---
Iteration = 221
Goal! : 29.1 move : 20 time : 47.9679999352 seconds ---
Iteration = 222
Goal! : 29.1 move : 20 time : 48.4539999962 seconds ---
Iteration = 223
Goal! : 29.1 move : 20 time : 48.9440000057 seconds ---
Iteration = 224
Goal! : 29.1 move : 20 time : 49.4379999638 seconds ---
Iteration = 225
Goal! : 29.1 move : 20 time : 49.9359998703 seconds ---
Iteration = 226
Goal! : 29.1 move : 20 time : 50.4340000153 seconds ---
Iteration = 227
Goal! : 29.1 move : 20 time : 50.9159998894 seconds ---
Iteration = 228
Goal! : 29.1 move : 20 time : 51.3910000324 seconds ---
Iteration = 229
Goal! : 29.1 move : 20 time : 51.8770000935 seconds ---
Iteration = 230
Goal! : 29.1 move : 20 time : 52.379999876 seconds ---
Iteration = 231
Goal! : 29.1 move : 20 time : 52.864000082 seconds ---
Iteration = 232
Goal! : 29.1 move : 20 time : 53.3659999371 seconds ---
Iteration = 233
Goal! : 29.1 move : 20 time : 53.8580000401 seconds ---
Iteration = 234
Goal! : 29.1 move : 20 time : 54.3469998837 seconds ---
Iteration = 235
Goal! : 29.1 move : 20 time : 54.8299999237 seconds ---
Iteration = 236
Goal! : 29.1 move : 20 time : 55.3410000801 seconds ---
Iteration = 237
Goal! : 29.1 move : 20 time : 55.8399999142 seconds ---
Iteration = 238
Goal! : 29.1 move : 20 time : 56.3440001011 seconds ---
Iteration = 239
Goal! : 29.1 move : 20 time : 56.8220000267 seconds ---
Iteration = 240
Goal! : 29.1 move : 20 time : 57.3159999847 seconds ---
Iteration = 241
Goal! : 29.1 move : 20 time : 57.8099999428 seconds ---
Iteration = 242
Goal! : 29.1 move : 20 time : 58.2969999313 seconds ---
Iteration = 243
Goal! : 29.1 move : 20 time : 58.7829999924 seconds ---
Iteration = 244
Goal! : 29.1 move : 20 time : 59.2739999294 seconds ---
Iteration = 245
Goal! : 29.1 move : 20 time : 59.7599999905 seconds ---
Iteration = 246
Goal! : 29.1 move : 20 time : 60.2739999294 seconds ---
Iteration = 247
Goal! : 29.1 move : 20 time : 60.763999939 seconds ---
Iteration = 248
Goal! : 29.1 move : 20 time : 61.2669999599 seconds ---
Iteration = 249
Goal! : 29.1 move : 20 time : 61.7590000629 seconds ---
Iteration = 250
Goal! : 29.1 move : 20 time : 62.257999897 seconds ---
Iteration = 251
Goal! : 29.1 move : 20 time : 62.7409999371 seconds ---
Iteration = 252
Goal! : 29.1 move : 20 time : 63.2379999161 seconds ---
Iteration = 253
Goal! : 29.1 move : 20 time : 63.7290000916 seconds ---
Iteration = 254
Goal! : 29.1 move : 20 time : 64.2260000706 seconds ---
Iteration = 255
Goal! : 29.1 move : 20 time : 64.7160000801 seconds ---
Iteration = 256
Goal! : 29.1 move : 20 time : 65.2130000591 seconds ---
Iteration = 257
Goal! : 29.1 move : 20 time : 65.7100000381 seconds ---
Iteration = 258
Goal! : 29.1 move : 20 time : 66.2170000076 seconds ---
Iteration = 259
Goal! : 29.1 move : 20 time : 66.7039999962 seconds ---
Iteration = 260
Goal! : 29.1 move : 20 time : 67.1940000057 seconds ---
Iteration = 261
Goal! : 29.1 move : 20 time : 67.6840000153 seconds ---
Iteration = 262
Goal! : 29.1 move : 20 time : 68.1849999428 seconds ---
Iteration = 263
Goal! : 29.1 move : 20 time : 68.6749999523 seconds ---
Iteration = 264
Goal! : 29.1 move : 20 time : 69.1649999619 seconds ---
Iteration = 265
Goal! : 29.1 move : 20 time : 69.6600000858 seconds ---
Iteration = 266
Goal! : 29.1 move : 20 time : 70.1459999084 seconds ---
Iteration = 267
Goal! : 29.1 move : 20 time : 70.6229999065 seconds ---
Iteration = 268
Goal! : 29.1 move : 20 time : 71.1259999275 seconds ---
Iteration = 269
Goal! : 29.1 move : 20 time : 71.6210000515 seconds ---
Iteration = 270
Goal! : 29.1 move : 20 time : 72.1080000401 seconds ---
Iteration = 271
Goal! : 29.1 move : 20 time : 72.6010000706 seconds ---
Iteration = 272
Goal! : 29.1 move : 20 time : 73.0910000801 seconds ---
Iteration = 273
Goal! : 29.1 move : 20 time : 73.5929999352 seconds ---
Iteration = 274
Goal! : 29.1 move : 20 time : 74.0869998932 seconds ---
Iteration = 275
Goal! : 29.1 move : 20 time : 74.5769999027 seconds ---
Iteration = 276
Goal! : 29.1 move : 20 time : 75.0609998703 seconds ---
Iteration = 277
Goal! : 29.1 move : 20 time : 75.5529999733 seconds ---
Iteration = 278
Goal! : 29.1 move : 20 time : 76.0399999619 seconds ---
Iteration = 279
Goal! : 29.1 move : 20 time : 76.5320000648 seconds ---
Iteration = 280
Goal! : 29.1 move : 20 time : 77.0160000324 seconds ---
Iteration = 281
Goal! : 29.1 move : 20 time : 77.5069999695 seconds ---
Iteration = 282
Goal! : 29.1 move : 20 time : 77.9930000305 seconds ---
Iteration = 283
Goal! : 29.1 move : 20 time : 78.4779999256 seconds ---
Iteration = 284
Goal! : 29.1 move : 20 time : 78.9779999256 seconds ---
Iteration = 285
Goal! : 29.1 move : 20 time : 79.4739999771 seconds ---
Iteration = 286
Goal! : 29.1 move : 20 time : 79.9570000172 seconds ---
Iteration = 287
/n CHANGE MAZE 2
Iteration = 288
Goal! : 25.2 move : 42 time : 17.6890001297 seconds ---
Iteration = 289
Goal! : 27.3 move : 28 time : 18.606000185 seconds ---
Iteration = 290
Goal! : 27.6 move : 28 time : 19.4539999962 seconds ---
Iteration = 291
Goal! : 27.8 move : 28 time : 20.2650001049 seconds ---
Iteration = 292
Goal! : 28.8 move : 22 time : 20.8330001831 seconds ---
Iteration = 293
Goal! : 28.5 move : 22 time : 21.4580001831 seconds ---
Iteration = 294
Goal! : 28.9 move : 22 time : 21.984000206 seconds ---
Iteration = 295
Goal! : 28.9 move : 22 time : 22.5160000324 seconds ---
Iteration = 296
Goal! : 28.9 move : 22 time : 23.0460000038 seconds ---
Iteration = 297
Goal! : 28.9 move : 22 time : 23.5780000687 seconds ---
Iteration = 298
Goal! : 28.0 move : 28 time : 24.3200001717 seconds ---
Iteration = 299
Goal! : 28.5 move : 24 time : 24.9490001202 seconds ---
Iteration = 300
Goal! : 28.9 move : 22 time : 25.489000082 seconds ---
Iteration = 301
Goal! : 28.9 move : 22 time : 26.0150001049 seconds ---
Iteration = 302
Goal! : 28.9 move : 22 time : 26.5450000763 seconds ---
Iteration = 303
Goal! : 28.9 move : 22 time : 27.0770001411 seconds ---
Iteration = 304
Goal! : 28.9 move : 22 time : 27.6360001564 seconds ---
Iteration = 305
Goal! : 28.9 move : 22 time : 28.1680002213 seconds ---
Iteration = 306
Goal! : 28.9 move : 22 time : 28.6990001202 seconds ---
Iteration = 307
Goal! : 28.9 move : 22 time : 29.2290000916 seconds ---
Iteration = 308
Goal! : 28.9 move : 22 time : 29.7610001564 seconds ---
Iteration = 309
Goal! : 28.9 move : 22 time : 30.3130002022 seconds ---
Iteration = 310
Goal! : 28.9 move : 22 time : 30.8660001755 seconds ---
Iteration = 311
Goal! : 28.9 move : 22 time : 31.4340000153 seconds ---
Iteration = 312
Goal! : 28.9 move : 22 time : 31.986000061 seconds ---
Iteration = 313
Goal! : 28.9 move : 22 time : 32.5540001392 seconds ---
Iteration = 314
Goal! : 28.9 move : 22 time : 33.0850000381 seconds ---
Iteration = 315
Goal! : 28.9 move : 22 time : 33.6190001965 seconds ---
Iteration = 316
Goal! : 28.9 move : 22 time : 34.1630001068 seconds ---
Iteration = 317
Goal! : 28.9 move : 22 time : 34.7110002041 seconds ---
Iteration = 318
Goal! : 28.9 move : 22 time : 35.253000021 seconds ---
Iteration = 319
Goal! : 28.9 move : 22 time : 35.7980000973 seconds ---
Iteration = 320
Goal! : 28.9 move : 22 time : 36.3380000591 seconds ---
Iteration = 321
Goal! : 28.9 move : 22 time : 36.875 seconds ---
Iteration = 322
Goal! : 28.9 move : 22 time : 37.4170000553 seconds ---
Iteration = 323
Goal! : 28.9 move : 22 time : 37.9550001621 seconds ---
Iteration = 324
Goal! : 28.9 move : 22 time : 38.5110001564 seconds ---
Iteration = 325
Goal! : 28.9 move : 22 time : 39.0530002117 seconds ---
Iteration = 326
Goal! : 28.9 move : 22 time : 39.5800001621 seconds ---
Iteration = 327
Goal! : 28.9 move : 22 time : 40.1130001545 seconds ---
Iteration = 328
Goal! : 28.9 move : 22 time : 40.6490001678 seconds ---
Iteration = 329
Goal! : 28.9 move : 22 time : 41.1870000362 seconds ---
Iteration = 330
Goal! : 28.9 move : 22 time : 41.7380001545 seconds ---
Iteration = 331
Goal! : 28.9 move : 22 time : 42.2730000019 seconds ---
Iteration = 332
Goal! : 28.9 move : 22 time : 42.8240001202 seconds ---