-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogfile.txt
1853 lines (1850 loc) · 96 KB
/
logfile.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
TicksPerSecond : 10000000000
0 1 -50.0
0 4 -50.0
0 5 -50.0
1 0 -50.0
1 2 -50.0
1 4 -50.0
1 5 -50.0
1 6 -50.0
2 1 -50.0
2 3 -50.0
2 5 -50.0
2 6 -50.0
2 7 -50.0
3 2 -50.0
3 6 -50.0
3 7 -50.0
4 0 -50.0
4 1 -50.0
4 5 -50.0
4 8 -50.0
4 9 -50.0
5 0 -50.0
5 1 -50.0
5 2 -50.0
5 4 -50.0
5 6 -50.0
5 8 -50.0
5 9 -50.0
5 10 -50.0
6 1 -50.0
6 2 -50.0
6 3 -50.0
6 5 -50.0
6 7 -50.0
6 9 -50.0
6 10 -50.0
6 11 -50.0
7 2 -50.0
7 3 -50.0
7 6 -50.0
7 10 -50.0
7 11 -50.0
8 4 -50.0
8 5 -50.0
8 9 -50.0
8 12 -50.0
8 13 -50.0
9 4 -50.0
9 5 -50.0
9 6 -50.0
9 8 -50.0
9 10 -50.0
9 12 -50.0
9 13 -50.0
9 14 -50.0
10 5 -50.0
10 6 -50.0
10 7 -50.0
10 9 -50.0
10 11 -50.0
10 13 -50.0
10 14 -50.0
10 15 -50.0
11 6 -50.0
11 7 -50.0
11 10 -50.0
11 14 -50.0
11 15 -50.0
12 8 -50.0
12 9 -50.0
12 13 -50.0
13 8 -50.0
13 9 -50.0
13 10 -50.0
13 12 -50.0
13 14 -50.0
14 9 -50.0
14 10 -50.0
14 11 -50.0
14 13 -50.0
14 15 -50.0
15 10 -50.0
15 11 -50.0
15 14 -50.0
0:0:10.000000000 DEBUG (0): curdepth = 0 , parentID= 0
0:0:10.000000000 DEBUG (0):
MODE(extended -> 0, Tina -> 1 ): 0
0:0:10.000000000 DEBUG (1): curdepth = 255 , parentID= 65535
0:0:10.000000000 DEBUG (2): curdepth = 255 , parentID= 65535
0:0:10.000000000 DEBUG (3): curdepth = 255 , parentID= 65535
0:0:10.000000000 DEBUG (4): curdepth = 255 , parentID= 65535
0:0:10.000000000 DEBUG (5): curdepth = 255 , parentID= 65535
0:0:10.000000000 DEBUG (6): curdepth = 255 , parentID= 65535
0:0:10.000000000 DEBUG (7): curdepth = 255 , parentID= 65535
0:0:10.000000000 DEBUG (8): curdepth = 255 , parentID= 65535
0:0:10.000000000 DEBUG (9): curdepth = 255 , parentID= 65535
0:0:10.000000001 DEBUG (10): curdepth = 255 , parentID= 65535
0:0:10.000000001 DEBUG (11): curdepth = 255 , parentID= 65535
0:0:10.000000001 DEBUG (12): curdepth = 255 , parentID= 65535
0:0:10.000000001 DEBUG (13): curdepth = 255 , parentID= 65535
0:0:10.000000001 DEBUG (14): curdepth = 255 , parentID= 65535
0:0:10.000000001 DEBUG (15): curdepth = 255 , parentID= 65535
0:0:10.000000010 DEBUG (0): Radio initialized successfully!!!
0:0:10.000000010 DEBUG (1): Radio initialized successfully!!!
0:0:10.000000010 DEBUG (2): Radio initialized successfully!!!
0:0:10.000000010 DEBUG (3): Radio initialized successfully!!!
0:0:10.000000010 DEBUG (4): Radio initialized successfully!!!
0:0:10.000000010 DEBUG (5): Radio initialized successfully!!!
0:0:10.000000010 DEBUG (6): Radio initialized successfully!!!
0:0:10.000000010 DEBUG (7): Radio initialized successfully!!!
0:0:10.000000010 DEBUG (8): Radio initialized successfully!!!
0:0:10.000000010 DEBUG (9): Radio initialized successfully!!!
0:0:10.000000011 DEBUG (10): Radio initialized successfully!!!
0:0:10.000000011 DEBUG (11): Radio initialized successfully!!!
0:0:10.000000011 DEBUG (12): Radio initialized successfully!!!
0:0:10.000000011 DEBUG (13): Radio initialized successfully!!!
0:0:10.000000011 DEBUG (14): Radio initialized successfully!!!
0:0:10.000000011 DEBUG (15): Radio initialized successfully!!!
0:0:10.250000010 DEBUG (0): We have 1 queries!
0:0:10.250000010 DEBUG (0): Query 1 is: 2
0:0:10.250000010 DEBUG (0): #####################################
0:0:10.250000010 DEBUG (0): ####### ROUND 1 ##############
0:0:10.250000010 DEBUG (0): #####################################
0:0:10.258285504 DEBUG (5): New parent for NodeID= 5 : curdepth= 1 , parentID= 0
0:0:10.258285504 DEBUG (5): ExtendSelect= 2
0:0:10.258285504 DEBUG (4): New parent for NodeID= 4 : curdepth= 1 , parentID= 0
0:0:10.258285504 DEBUG (4): ExtendSelect= 2
0:0:10.258285504 DEBUG (1): New parent for NodeID= 1 : curdepth= 1 , parentID= 0
0:0:10.258285504 DEBUG (1): ExtendSelect= 2
0:0:10.510543837 DEBUG (6): New parent for NodeID= 6 : curdepth= 2 , parentID= 1
0:0:10.510543837 DEBUG (6): ExtendSelect= 2
0:0:10.510543837 DEBUG (2): New parent for NodeID= 2 : curdepth= 2 , parentID= 1
0:0:10.510543837 DEBUG (2): ExtendSelect= 2
0:0:10.516815163 DEBUG (9): New parent for NodeID= 9 : curdepth= 2 , parentID= 4
0:0:10.516815163 DEBUG (9): ExtendSelect= 2
0:0:10.516815163 DEBUG (8): New parent for NodeID= 8 : curdepth= 2 , parentID= 4
0:0:10.516815163 DEBUG (8): ExtendSelect= 2
0:0:10.518264740 DEBUG (10): New parent for NodeID= 10 : curdepth= 2 , parentID= 5
0:0:10.518264740 DEBUG (10): ExtendSelect= 2
0:0:10.763092051 DEBUG (7): New parent for NodeID= 7 : curdepth= 3 , parentID= 2
0:0:10.763092051 DEBUG (7): ExtendSelect= 2
0:0:10.763092051 DEBUG (3): New parent for NodeID= 3 : curdepth= 3 , parentID= 2
0:0:10.763092051 DEBUG (3): ExtendSelect= 2
0:0:10.767562851 DEBUG (11): New parent for NodeID= 11 : curdepth= 3 , parentID= 6
0:0:10.767562851 DEBUG (11): ExtendSelect= 2
0:0:10.773529049 DEBUG (15): New parent for NodeID= 15 : curdepth= 3 , parentID= 10
0:0:10.773529049 DEBUG (15): ExtendSelect= 2
0:0:10.773529049 DEBUG (14): New parent for NodeID= 14 : curdepth= 3 , parentID= 10
0:0:10.773529049 DEBUG (14): ExtendSelect= 2
0:0:10.773879993 DEBUG (12): New parent for NodeID= 12 : curdepth= 3 , parentID= 8
0:0:10.773879993 DEBUG (12): ExtendSelect= 2
0:0:10.774734480 DEBUG (13): New parent for NodeID= 13 : curdepth= 3 , parentID= 9
0:0:10.774734480 DEBUG (13): ExtendSelect= 2
0:0:13.000000010 DEBUG (0): FinishedRouting!
0:0:13.000000010 DEBUG (1): FinishedRouting!
0:0:13.000000010 DEBUG (2): FinishedRouting!
0:0:13.000000010 DEBUG (3): FinishedRouting!
0:0:13.000000010 DEBUG (4): FinishedRouting!
0:0:13.000000010 DEBUG (5): FinishedRouting!
0:0:13.000000010 DEBUG (6): FinishedRouting!
0:0:13.000000010 DEBUG (7): FinishedRouting!
0:0:13.000000010 DEBUG (8): FinishedRouting!
0:0:13.000000010 DEBUG (9): FinishedRouting!
0:0:13.000000011 DEBUG (10): FinishedRouting!
0:0:13.000000011 DEBUG (11): FinishedRouting!
0:0:13.000000011 DEBUG (12): FinishedRouting!
0:0:13.000000011 DEBUG (13): FinishedRouting!
0:0:13.000000011 DEBUG (14): FinishedRouting!
0:0:13.000000011 DEBUG (15): FinishedRouting!
0:0:59.008789072 DEBUG (3): NodeID = 3 curdepth= 3
0:0:59.008789072 DEBUG (3): Starting Data transmission to parent!
0:0:59.008789072 DEBUG (3): measurement is: 4
0:0:59.008789082 DEBUG (3): Node's MAX is: 4
0:0:59.013900747 DEBUG (2): Measurement received from: 3
0:0:59.013900757 DEBUG (2): Received from childID: 3 - max: 4
0:0:59.020507823 DEBUG (7): NodeID = 7 curdepth= 3
0:0:59.020507823 DEBUG (7): Starting Data transmission to parent!
0:0:59.020507823 DEBUG (7): measurement is: 0
0:0:59.020507833 DEBUG (7): Node's MAX is: 0
0:0:59.030517540 DEBUG (2): Measurement received from: 7
0:0:59.030517550 DEBUG (2): Received from childID: 7 - max: 0
0:0:59.032226573 DEBUG (11): NodeID = 11 curdepth= 3
0:0:59.032226573 DEBUG (11): Starting Data transmission to parent!
0:0:59.032226573 DEBUG (11): measurement is: 49
0:0:59.032226583 DEBUG (11): Node's MAX is: 49
0:0:59.035156261 DEBUG (12): NodeID = 12 curdepth= 3
0:0:59.035156261 DEBUG (12): Starting Data transmission to parent!
0:0:59.035156261 DEBUG (12): measurement is: 37
0:0:59.035156271 DEBUG (12): Node's MAX is: 37
0:0:59.038085948 DEBUG (13): NodeID = 13 curdepth= 3
0:0:59.038085948 DEBUG (13): Starting Data transmission to parent!
0:0:59.038085948 DEBUG (13): measurement is: 10
0:0:59.038085958 DEBUG (13): Node's MAX is: 10
0:0:59.041015636 DEBUG (14): NodeID = 14 curdepth= 3
0:0:59.041015636 DEBUG (14): Starting Data transmission to parent!
0:0:59.041015636 DEBUG (14): measurement is: 36
0:0:59.041015646 DEBUG (14): Node's MAX is: 36
0:0:59.041763271 DEBUG (6): Measurement received from: 11
0:0:59.041763281 DEBUG (6): Received from childID: 11 - max: 49
0:0:59.042907690 DEBUG (8): Measurement received from: 12
0:0:59.042907700 DEBUG (8): Received from childID: 12 - max: 37
0:0:59.043838505 DEBUG (10): Measurement received from: 14
0:0:59.043838515 DEBUG (10): Received from childID: 14 - max: 36
0:0:59.043945324 DEBUG (15): NodeID = 15 curdepth= 3
0:0:59.043945324 DEBUG (15): Starting Data transmission to parent!
0:0:59.043945324 DEBUG (15): measurement is: 47
0:0:59.043945334 DEBUG (15): Node's MAX is: 47
0:0:59.045913671 DEBUG (9): Measurement received from: 13
0:0:59.045913681 DEBUG (9): Received from childID: 13 - max: 10
0:0:59.047393800 DEBUG (10): Measurement received from: 15
0:0:59.047393810 DEBUG (10): Received from childID: 15 - max: 47
0:0:59.255859385 DEBUG (2): NodeID = 2 curdepth= 2
0:0:59.255859385 DEBUG (2): Starting Data transmission to parent!
0:0:59.255859385 DEBUG (2): measurement is: 18
0:0:59.255859395 DEBUG (2): ChildID: 3 has max: 4
0:0:59.255859395 DEBUG (2): ChildID: 7 has max: 0
0:0:59.255859395 DEBUG (2): Node's MAX is: 18
0:0:59.257553110 DEBUG (1): Measurement received from: 2
0:0:59.257553120 DEBUG (1): Received from childID: 2 - max: 18
0:0:59.267578135 DEBUG (6): NodeID = 6 curdepth= 2
0:0:59.267578135 DEBUG (6): Starting Data transmission to parent!
0:0:59.267578135 DEBUG (6): measurement is: 22
0:0:59.267578145 DEBUG (6): ChildID: 11 has max: 49
0:0:59.267578145 DEBUG (6): Node's MAX is: 49
0:0:59.269683846 DEBUG (1): Measurement received from: 6
0:0:59.269683856 DEBUG (1): Received from childID: 6 - max: 49
0:0:59.273437510 DEBUG (8): NodeID = 8 curdepth= 2
0:0:59.273437510 DEBUG (8): Starting Data transmission to parent!
0:0:59.273437510 DEBUG (8): measurement is: 20
0:0:59.273437520 DEBUG (8): ChildID: 12 has max: 37
0:0:59.273437520 DEBUG (8): Node's MAX is: 37
0:0:59.276367198 DEBUG (9): NodeID = 9 curdepth= 2
0:0:59.276367198 DEBUG (9): Starting Data transmission to parent!
0:0:59.276367198 DEBUG (9): measurement is: 30
0:0:59.276367208 DEBUG (9): ChildID: 13 has max: 10
0:0:59.276367208 DEBUG (9): Node's MAX is: 30
0:0:59.279296886 DEBUG (10): NodeID = 10 curdepth= 2
0:0:59.279296886 DEBUG (10): Starting Data transmission to parent!
0:0:59.279296886 DEBUG (10): measurement is: 13
0:0:59.279296896 DEBUG (10): ChildID: 14 has max: 36
0:0:59.279296896 DEBUG (10): ChildID: 15 has max: 47
0:0:59.279296896 DEBUG (10): Node's MAX is: 47
0:0:59.283508262 DEBUG (4): Measurement received from: 8
0:0:59.283508272 DEBUG (4): Received from childID: 8 - max: 37
0:0:59.286010706 DEBUG (4): Measurement received from: 9
0:0:59.286010716 DEBUG (4): Received from childID: 9 - max: 30
0:0:59.502929697 DEBUG (1): NodeID = 1 curdepth= 1
0:0:59.502929697 DEBUG (1): Starting Data transmission to parent!
0:0:59.502929697 DEBUG (1): measurement is: 39
0:0:59.502929707 DEBUG (1): ChildID: 2 has max: 18
0:0:59.502929707 DEBUG (1): ChildID: 6 has max: 49
0:0:59.502929707 DEBUG (1): Node's MAX is: 49
0:0:59.507308954 DEBUG (0): Measurement received from: 1
0:0:59.507308964 DEBUG (0): Received from childID: 1 - max: 49
0:0:59.511718760 DEBUG (4): NodeID = 4 curdepth= 1
0:0:59.511718760 DEBUG (4): Starting Data transmission to parent!
0:0:59.511718760 DEBUG (4): measurement is: 5
0:0:59.511718770 DEBUG (4): ChildID: 8 has max: 37
0:0:59.511718770 DEBUG (4): ChildID: 9 has max: 30
0:0:59.511718770 DEBUG (4): Node's MAX is: 37
0:0:59.514648448 DEBUG (5): NodeID = 5 curdepth= 1
0:0:59.514648448 DEBUG (5): Starting Data transmission to parent!
0:0:59.514648448 DEBUG (5): measurement is: 21
0:0:59.514648458 DEBUG (5): Node's MAX is: 21
0:0:59.518417339 DEBUG (0): Measurement received from: 4
0:0:59.518417349 DEBUG (0): Received from childID: 4 - max: 37
0:0:59.523590056 DEBUG (0): Measurement received from: 5
0:0:59.523590066 DEBUG (0): Received from childID: 5 - max: 21
0:0:59.750000010 DEBUG (0): NodeID = 0 curdepth= 0
0:0:59.750000010 DEBUG (0): measurement is: 5
0:0:59.750000020 DEBUG (0): ChildID: 1 has max: 49
0:0:59.750000020 DEBUG (0): ChildID: 4 has max: 37
0:0:59.750000020 DEBUG (0): ChildID: 5 has max: 21
0:0:59.750000020 DEBUG (0): Node's MAX is: 49
0:0:59.750000020 DEBUG (0):
0:0:59.750000020 DEBUG (0): FINAL RESULT: MAX: 49
0:0:59.750000020 DEBUG (0):
0:1:0.000000010 DEBUG (0): #####################################
0:1:0.000000010 DEBUG (0): ####### ROUND 2 ##############
0:1:0.000000010 DEBUG (0): #####################################
0:1:59.008789072 DEBUG (3): NodeID = 3 curdepth= 3
0:1:59.008789072 DEBUG (3): Starting Data transmission to parent!
0:1:59.008789072 DEBUG (3): measurement is: 0
0:1:59.008789082 DEBUG (3): Node's MAX is: 0
0:1:59.012023927 DEBUG (2): Measurement received from: 3
0:1:59.012023937 DEBUG (2): Received from childID: 3 - max: 0
0:1:59.020507823 DEBUG (7): NodeID = 7 curdepth= 3
0:1:59.020507823 DEBUG (7): Starting Data transmission to parent!
0:1:59.020507823 DEBUG (7): measurement is: 8
0:1:59.020507833 DEBUG (7): Node's MAX is: 8
0:1:59.027572611 DEBUG (2): Measurement received from: 7
0:1:59.027572621 DEBUG (2): Received from childID: 7 - max: 8
0:1:59.032226573 DEBUG (11): NodeID = 11 curdepth= 3
0:1:59.032226573 DEBUG (11): Starting Data transmission to parent!
0:1:59.032226573 DEBUG (11): measurement is: 45
0:1:59.032226583 DEBUG (11): Node's MAX is: 45
0:1:59.035156261 DEBUG (12): NodeID = 12 curdepth= 3
0:1:59.035156261 DEBUG (12): Starting Data transmission to parent!
0:1:59.035156261 DEBUG (12): measurement is: 43
0:1:59.035156271 DEBUG (12): Node's MAX is: 43
0:1:59.036621089 DEBUG (6): Measurement received from: 11
0:1:59.036621099 DEBUG (6): Received from childID: 11 - max: 45
0:1:59.038085948 DEBUG (13): NodeID = 13 curdepth= 3
0:1:59.038085948 DEBUG (13): Starting Data transmission to parent!
0:1:59.038085948 DEBUG (13): measurement is: 28
0:1:59.038085958 DEBUG (13): Node's MAX is: 28
0:1:59.041015636 DEBUG (14): NodeID = 14 curdepth= 3
0:1:59.041015636 DEBUG (14): Starting Data transmission to parent!
0:1:59.041015636 DEBUG (14): measurement is: 28
0:1:59.041015646 DEBUG (14): Node's MAX is: 28
0:1:59.043945324 DEBUG (15): NodeID = 15 curdepth= 3
0:1:59.043945324 DEBUG (15): Starting Data transmission to parent!
0:1:59.043945324 DEBUG (15): measurement is: 43
0:1:59.043945334 DEBUG (15): Node's MAX is: 43
0:1:59.044189421 DEBUG (8): Measurement received from: 12
0:1:59.044189431 DEBUG (8): Received from childID: 12 - max: 43
0:1:59.047866785 DEBUG (9): Measurement received from: 13
0:1:59.047866795 DEBUG (9): Received from childID: 13 - max: 28
0:1:59.255859385 DEBUG (2): NodeID = 2 curdepth= 2
0:1:59.255859385 DEBUG (2): Starting Data transmission to parent!
0:1:59.255859385 DEBUG (2): measurement is: 28
0:1:59.255859395 DEBUG (2): ChildID: 3 has max: 0
0:1:59.255859395 DEBUG (2): ChildID: 7 has max: 8
0:1:59.255859395 DEBUG (2): Node's MAX is: 28
0:1:59.261093129 DEBUG (1): Measurement received from: 2
0:1:59.261093139 DEBUG (1): Received from childID: 2 - max: 28
0:1:59.267578135 DEBUG (6): NodeID = 6 curdepth= 2
0:1:59.267578135 DEBUG (6): Starting Data transmission to parent!
0:1:59.267578135 DEBUG (6): measurement is: 40
0:1:59.267578145 DEBUG (6): ChildID: 11 has max: 45
0:1:59.267578145 DEBUG (6): Node's MAX is: 45
0:1:59.270477298 DEBUG (1): Measurement received from: 6
0:1:59.270477308 DEBUG (1): Received from childID: 6 - max: 45
0:1:59.273437510 DEBUG (8): NodeID = 8 curdepth= 2
0:1:59.273437510 DEBUG (8): Starting Data transmission to parent!
0:1:59.273437510 DEBUG (8): measurement is: 36
0:1:59.273437520 DEBUG (8): ChildID: 12 has max: 43
0:1:59.273437520 DEBUG (8): Node's MAX is: 43
0:1:59.276245121 DEBUG (4): Measurement received from: 8
0:1:59.276245131 DEBUG (4): Received from childID: 8 - max: 43
0:1:59.276367198 DEBUG (9): NodeID = 9 curdepth= 2
0:1:59.276367198 DEBUG (9): Starting Data transmission to parent!
0:1:59.276367198 DEBUG (9): measurement is: 9
0:1:59.276367208 DEBUG (9): ChildID: 13 has max: 28
0:1:59.276367208 DEBUG (9): Node's MAX is: 28
0:1:59.279296886 DEBUG (10): NodeID = 10 curdepth= 2
0:1:59.279296886 DEBUG (10): Starting Data transmission to parent!
0:1:59.279296886 DEBUG (10): measurement is: 37
0:1:59.279296896 DEBUG (10): ChildID: 14 has max: 36
0:1:59.279296896 DEBUG (10): ChildID: 15 has max: 47
0:1:59.279296896 DEBUG (10): Node's MAX is: 47
0:1:59.288177442 DEBUG (4): Measurement received from: 9
0:1:59.288177452 DEBUG (4): Received from childID: 9 - max: 28
0:1:59.289535483 DEBUG (5): Measurement received from: 10
0:1:59.289535493 DEBUG (5): Received from childID: 10 - max: 47
0:1:59.502929697 DEBUG (1): NodeID = 1 curdepth= 1
0:1:59.502929697 DEBUG (1): Starting Data transmission to parent!
0:1:59.502929697 DEBUG (1): measurement is: 29
0:1:59.502929707 DEBUG (1): ChildID: 2 has max: 28
0:1:59.502929707 DEBUG (1): ChildID: 6 has max: 45
0:1:59.502929707 DEBUG (1): Node's MAX is: 45
0:1:59.504745492 DEBUG (0): Measurement received from: 1
0:1:59.504745502 DEBUG (0): Received from childID: 1 - max: 45
0:1:59.511718760 DEBUG (4): NodeID = 4 curdepth= 1
0:1:59.511718760 DEBUG (4): Starting Data transmission to parent!
0:1:59.511718760 DEBUG (4): measurement is: 41
0:1:59.511718770 DEBUG (4): ChildID: 8 has max: 43
0:1:59.511718770 DEBUG (4): ChildID: 9 has max: 28
0:1:59.511718770 DEBUG (4): Node's MAX is: 43
0:1:59.514648448 DEBUG (5): NodeID = 5 curdepth= 1
0:1:59.514648448 DEBUG (5): Starting Data transmission to parent!
0:1:59.514648448 DEBUG (5): measurement is: 34
0:1:59.514648458 DEBUG (5): ChildID: 10 has max: 47
0:1:59.514648458 DEBUG (5): Node's MAX is: 47
0:1:59.517593369 DEBUG (0): Measurement received from: 4
0:1:59.517593379 DEBUG (0): Received from childID: 4 - max: 43
0:1:59.525024374 DEBUG (0): Measurement received from: 5
0:1:59.525024384 DEBUG (0): Received from childID: 5 - max: 47
0:1:59.750000010 DEBUG (0): NodeID = 0 curdepth= 0
0:1:59.750000010 DEBUG (0): measurement is: 7
0:1:59.750000020 DEBUG (0): ChildID: 1 has max: 45
0:1:59.750000020 DEBUG (0): ChildID: 4 has max: 43
0:1:59.750000020 DEBUG (0): ChildID: 5 has max: 47
0:1:59.750000020 DEBUG (0): Node's MAX is: 47
0:1:59.750000020 DEBUG (0):
0:1:59.750000020 DEBUG (0): FINAL RESULT: MAX: 47
0:1:59.750000020 DEBUG (0):
0:2:0.000000010 DEBUG (0): #####################################
0:2:0.000000010 DEBUG (0): ####### ROUND 3 ##############
0:2:0.000000010 DEBUG (0): #####################################
0:2:59.008789072 DEBUG (3): NodeID = 3 curdepth= 3
0:2:59.008789072 DEBUG (3): Starting Data transmission to parent!
0:2:59.008789072 DEBUG (3): measurement is: 4
0:2:59.008789082 DEBUG (3): Node's MAX is: 4
0:2:59.017547576 DEBUG (2): Measurement received from: 3
0:2:59.017547586 DEBUG (2): Received from childID: 3 - max: 4
0:2:59.020507823 DEBUG (7): NodeID = 7 curdepth= 3
0:2:59.020507823 DEBUG (7): Starting Data transmission to parent!
0:2:59.020507823 DEBUG (7): measurement is: 21
0:2:59.020507833 DEBUG (7): Node's MAX is: 21
0:2:59.029464690 DEBUG (2): Measurement received from: 7
0:2:59.029464700 DEBUG (2): Received from childID: 7 - max: 21
0:2:59.032226573 DEBUG (11): NodeID = 11 curdepth= 3
0:2:59.032226573 DEBUG (11): Starting Data transmission to parent!
0:2:59.032226573 DEBUG (11): measurement is: 43
0:2:59.032226583 DEBUG (11): Node's MAX is: 43
0:2:59.035156261 DEBUG (12): NodeID = 12 curdepth= 3
0:2:59.035156261 DEBUG (12): Starting Data transmission to parent!
0:2:59.035156261 DEBUG (12): measurement is: 26
0:2:59.035156271 DEBUG (12): Node's MAX is: 26
0:2:59.036163328 DEBUG (6): Measurement received from: 11
0:2:59.036163338 DEBUG (6): Received from childID: 11 - max: 43
0:2:59.038085948 DEBUG (13): NodeID = 13 curdepth= 3
0:2:59.038085948 DEBUG (13): Starting Data transmission to parent!
0:2:59.038085948 DEBUG (13): measurement is: 29
0:2:59.038085958 DEBUG (13): Node's MAX is: 29
0:2:59.041015636 DEBUG (14): NodeID = 14 curdepth= 3
0:2:59.041015636 DEBUG (14): Starting Data transmission to parent!
0:2:59.041015636 DEBUG (14): measurement is: 23
0:2:59.041015646 DEBUG (14): Node's MAX is: 23
0:2:59.043945324 DEBUG (15): NodeID = 15 curdepth= 3
0:2:59.043945324 DEBUG (15): Starting Data transmission to parent!
0:2:59.043945324 DEBUG (15): measurement is: 35
0:2:59.043945334 DEBUG (15): Node's MAX is: 35
0:2:59.044738734 DEBUG (8): Measurement received from: 12
0:2:59.044738744 DEBUG (8): Received from childID: 12 - max: 26
0:2:59.046493502 DEBUG (9): Measurement received from: 13
0:2:59.046493512 DEBUG (9): Received from childID: 13 - max: 29
0:2:59.051818806 DEBUG (10): Measurement received from: 14
0:2:59.051818816 DEBUG (10): Received from childID: 14 - max: 23
0:2:59.053665125 DEBUG (10): Measurement received from: 15
0:2:59.053665135 DEBUG (10): Received from childID: 15 - max: 35
0:2:59.255859385 DEBUG (2): NodeID = 2 curdepth= 2
0:2:59.255859385 DEBUG (2): Starting Data transmission to parent!
0:2:59.255859385 DEBUG (2): measurement is: 5
0:2:59.255859395 DEBUG (2): ChildID: 3 has max: 4
0:2:59.255859395 DEBUG (2): ChildID: 7 has max: 21
0:2:59.255859395 DEBUG (2): Node's MAX is: 21
0:2:59.261383044 DEBUG (1): Measurement received from: 2
0:2:59.261383054 DEBUG (1): Received from childID: 2 - max: 21
0:2:59.267578135 DEBUG (6): NodeID = 6 curdepth= 2
0:2:59.267578135 DEBUG (6): Starting Data transmission to parent!
0:2:59.267578135 DEBUG (6): measurement is: 38
0:2:59.267578145 DEBUG (6): ChildID: 11 has max: 43
0:2:59.267578145 DEBUG (6): Node's MAX is: 43
0:2:59.270080572 DEBUG (1): Measurement received from: 6
0:2:59.270080582 DEBUG (1): Received from childID: 6 - max: 43
0:2:59.273437510 DEBUG (8): NodeID = 8 curdepth= 2
0:2:59.273437510 DEBUG (8): Starting Data transmission to parent!
0:2:59.273437510 DEBUG (8): measurement is: 25
0:2:59.273437520 DEBUG (8): ChildID: 12 has max: 26
0:2:59.273437520 DEBUG (8): Node's MAX is: 26
0:2:59.276367198 DEBUG (9): NodeID = 9 curdepth= 2
0:2:59.276367198 DEBUG (9): Starting Data transmission to parent!
0:2:59.276367198 DEBUG (9): measurement is: 39
0:2:59.276367208 DEBUG (9): ChildID: 13 has max: 29
0:2:59.276367208 DEBUG (9): Node's MAX is: 39
0:2:59.279296886 DEBUG (10): NodeID = 10 curdepth= 2
0:2:59.279296886 DEBUG (10): Starting Data transmission to parent!
0:2:59.279296886 DEBUG (10): measurement is: 34
0:2:59.279296896 DEBUG (10): ChildID: 14 has max: 23
0:2:59.279296896 DEBUG (10): ChildID: 15 has max: 35
0:2:59.279296896 DEBUG (10): Node's MAX is: 35
0:2:59.280303953 DEBUG (4): Measurement received from: 9
0:2:59.280303963 DEBUG (4): Received from childID: 9 - max: 39
0:2:59.283508262 DEBUG (4): Measurement received from: 8
0:2:59.283508272 DEBUG (4): Received from childID: 8 - max: 26
0:2:59.289001429 DEBUG (5): Measurement received from: 10
0:2:59.289001439 DEBUG (5): Received from childID: 10 - max: 35
0:2:59.502929697 DEBUG (1): NodeID = 1 curdepth= 1
0:2:59.502929697 DEBUG (1): Starting Data transmission to parent!
0:2:59.502929697 DEBUG (1): measurement is: 17
0:2:59.502929707 DEBUG (1): ChildID: 2 has max: 21
0:2:59.502929707 DEBUG (1): ChildID: 6 has max: 43
0:2:59.502929707 DEBUG (1): Node's MAX is: 43
0:2:59.508804307 DEBUG (0): Measurement received from: 1
0:2:59.508804317 DEBUG (0): Received from childID: 1 - max: 43
0:2:59.511718760 DEBUG (4): NodeID = 4 curdepth= 1
0:2:59.511718760 DEBUG (4): Starting Data transmission to parent!
0:2:59.511718760 DEBUG (4): measurement is: 16
0:2:59.511718770 DEBUG (4): ChildID: 8 has max: 26
0:2:59.511718770 DEBUG (4): ChildID: 9 has max: 39
0:2:59.511718770 DEBUG (4): Node's MAX is: 39
0:2:59.514648448 DEBUG (5): NodeID = 5 curdepth= 1
0:2:59.514648448 DEBUG (5): Starting Data transmission to parent!
0:2:59.514648448 DEBUG (5): measurement is: 25
0:2:59.514648458 DEBUG (5): ChildID: 10 has max: 35
0:2:59.514648458 DEBUG (5): Node's MAX is: 35
0:2:59.516052241 DEBUG (0): Measurement received from: 4
0:2:59.516052251 DEBUG (0): Received from childID: 4 - max: 39
0:2:59.750000010 DEBUG (0): NodeID = 0 curdepth= 0
0:2:59.750000010 DEBUG (0): measurement is: 24
0:2:59.750000020 DEBUG (0): ChildID: 1 has max: 43
0:2:59.750000020 DEBUG (0): ChildID: 4 has max: 39
0:2:59.750000020 DEBUG (0): ChildID: 5 has max: 47
0:2:59.750000020 DEBUG (0): Node's MAX is: 47
0:2:59.750000020 DEBUG (0):
0:2:59.750000020 DEBUG (0): FINAL RESULT: MAX: 47
0:2:59.750000020 DEBUG (0):
0:3:0.000000010 DEBUG (0): #####################################
0:3:0.000000010 DEBUG (0): ####### ROUND 4 ##############
0:3:0.000000010 DEBUG (0): #####################################
0:3:59.008789072 DEBUG (3): NodeID = 3 curdepth= 3
0:3:59.008789072 DEBUG (3): Starting Data transmission to parent!
0:3:59.008789072 DEBUG (3): measurement is: 40
0:3:59.008789082 DEBUG (3): Node's MAX is: 40
0:3:59.015304547 DEBUG (2): Measurement received from: 3
0:3:59.015304557 DEBUG (2): Received from childID: 3 - max: 40
0:3:59.020507823 DEBUG (7): NodeID = 7 curdepth= 3
0:3:59.020507823 DEBUG (7): Starting Data transmission to parent!
0:3:59.020507823 DEBUG (7): measurement is: 7
0:3:59.020507833 DEBUG (7): Node's MAX is: 7
0:3:59.023391727 DEBUG (2): Measurement received from: 7
0:3:59.023391737 DEBUG (2): Received from childID: 7 - max: 7
0:3:59.032226573 DEBUG (11): NodeID = 11 curdepth= 3
0:3:59.032226573 DEBUG (11): Starting Data transmission to parent!
0:3:59.032226573 DEBUG (11): measurement is: 18
0:3:59.032226583 DEBUG (11): Node's MAX is: 18
0:3:59.035156261 DEBUG (12): NodeID = 12 curdepth= 3
0:3:59.035156261 DEBUG (12): Starting Data transmission to parent!
0:3:59.035156261 DEBUG (12): measurement is: 27
0:3:59.035156271 DEBUG (12): Node's MAX is: 27
0:3:59.038085948 DEBUG (13): NodeID = 13 curdepth= 3
0:3:59.038085948 DEBUG (13): Starting Data transmission to parent!
0:3:59.038085948 DEBUG (13): measurement is: 9
0:3:59.038085958 DEBUG (13): Node's MAX is: 9
0:3:59.040069589 DEBUG (9): Measurement received from: 13
0:3:59.040069599 DEBUG (9): Received from childID: 13 - max: 9
0:3:59.041015636 DEBUG (14): NodeID = 14 curdepth= 3
0:3:59.041015636 DEBUG (14): Starting Data transmission to parent!
0:3:59.041015636 DEBUG (14): measurement is: 48
0:3:59.041015646 DEBUG (14): Node's MAX is: 48
0:3:59.042953449 DEBUG (6): Measurement received from: 11
0:3:59.042953459 DEBUG (6): Received from childID: 11 - max: 18
0:3:59.043945324 DEBUG (15): NodeID = 15 curdepth= 3
0:3:59.043945324 DEBUG (15): Starting Data transmission to parent!
0:3:59.043945324 DEBUG (15): measurement is: 21
0:3:59.043945334 DEBUG (15): Node's MAX is: 21
0:3:59.045120202 DEBUG (8): Measurement received from: 12
0:3:59.045120212 DEBUG (8): Received from childID: 12 - max: 27
0:3:59.048706031 DEBUG (10): Measurement received from: 14
0:3:59.048706041 DEBUG (10): Received from childID: 14 - max: 48
0:3:59.052200290 DEBUG (10): Measurement received from: 15
0:3:59.052200300 DEBUG (10): Received from childID: 15 - max: 21
0:3:59.255859385 DEBUG (2): NodeID = 2 curdepth= 2
0:3:59.255859385 DEBUG (2): Starting Data transmission to parent!
0:3:59.255859385 DEBUG (2): measurement is: 22
0:3:59.255859395 DEBUG (2): ChildID: 3 has max: 40
0:3:59.255859395 DEBUG (2): ChildID: 7 has max: 7
0:3:59.255859395 DEBUG (2): Node's MAX is: 40
0:3:59.262084944 DEBUG (1): Measurement received from: 2
0:3:59.262084954 DEBUG (1): Received from childID: 2 - max: 40
0:3:59.267578135 DEBUG (6): NodeID = 6 curdepth= 2
0:3:59.267578135 DEBUG (6): Starting Data transmission to parent!
0:3:59.267578135 DEBUG (6): measurement is: 46
0:3:59.267578145 DEBUG (6): ChildID: 11 has max: 18
0:3:59.267578145 DEBUG (6): Node's MAX is: 46
0:3:59.273437510 DEBUG (8): NodeID = 8 curdepth= 2
0:3:59.273437510 DEBUG (8): Starting Data transmission to parent!
0:3:59.273437510 DEBUG (8): measurement is: 46
0:3:59.273437520 DEBUG (8): ChildID: 12 has max: 27
0:3:59.273437520 DEBUG (8): Node's MAX is: 46
0:3:59.276367198 DEBUG (9): NodeID = 9 curdepth= 2
0:3:59.276367198 DEBUG (9): Starting Data transmission to parent!
0:3:59.276367198 DEBUG (9): measurement is: 20
0:3:59.276367208 DEBUG (9): ChildID: 13 has max: 9
0:3:59.276367208 DEBUG (9): Node's MAX is: 20
0:3:59.276397708 DEBUG (4): Measurement received from: 8
0:3:59.276397718 DEBUG (4): Received from childID: 8 - max: 46
0:3:59.277450524 DEBUG (1): Measurement received from: 6
0:3:59.277450534 DEBUG (1): Received from childID: 6 - max: 46
0:3:59.279296886 DEBUG (10): NodeID = 10 curdepth= 2
0:3:59.279296886 DEBUG (10): Starting Data transmission to parent!
0:3:59.279296886 DEBUG (10): measurement is: 4
0:3:59.279296896 DEBUG (10): ChildID: 14 has max: 48
0:3:59.279296896 DEBUG (10): ChildID: 15 has max: 21
0:3:59.279296896 DEBUG (10): Node's MAX is: 48
0:3:59.283737160 DEBUG (4): Measurement received from: 9
0:3:59.283737170 DEBUG (4): Received from childID: 9 - max: 20
0:3:59.290283160 DEBUG (5): Measurement received from: 10
0:3:59.290283170 DEBUG (5): Received from childID: 10 - max: 48
0:3:59.502929697 DEBUG (1): NodeID = 1 curdepth= 1
0:3:59.502929697 DEBUG (1): Starting Data transmission to parent!
0:3:59.502929697 DEBUG (1): measurement is: 9
0:3:59.502929707 DEBUG (1): ChildID: 2 has max: 40
0:3:59.502929707 DEBUG (1): ChildID: 6 has max: 46
0:3:59.502929707 DEBUG (1): Node's MAX is: 46
0:3:59.509368879 DEBUG (0): Measurement received from: 1
0:3:59.509368889 DEBUG (0): Received from childID: 1 - max: 46
0:3:59.511718760 DEBUG (4): NodeID = 4 curdepth= 1
0:3:59.511718760 DEBUG (4): Starting Data transmission to parent!
0:3:59.511718760 DEBUG (4): measurement is: 17
0:3:59.511718770 DEBUG (4): ChildID: 8 has max: 46
0:3:59.511718770 DEBUG (4): ChildID: 9 has max: 20
0:3:59.511718770 DEBUG (4): Node's MAX is: 46
0:3:59.514648448 DEBUG (5): NodeID = 5 curdepth= 1
0:3:59.514648448 DEBUG (5): Starting Data transmission to parent!
0:3:59.514648448 DEBUG (5): measurement is: 23
0:3:59.514648458 DEBUG (5): ChildID: 10 has max: 48
0:3:59.514648458 DEBUG (5): Node's MAX is: 48
0:3:59.518051148 DEBUG (0): Measurement received from: 5
0:3:59.518051158 DEBUG (0): Received from childID: 5 - max: 48
0:3:59.522003134 DEBUG (0): Measurement received from: 4
0:3:59.522003144 DEBUG (0): Received from childID: 4 - max: 46
0:3:59.750000010 DEBUG (0): NodeID = 0 curdepth= 0
0:3:59.750000010 DEBUG (0): measurement is: 46
0:3:59.750000020 DEBUG (0): ChildID: 1 has max: 46
0:3:59.750000020 DEBUG (0): ChildID: 4 has max: 46
0:3:59.750000020 DEBUG (0): ChildID: 5 has max: 48
0:3:59.750000020 DEBUG (0): Node's MAX is: 48
0:3:59.750000020 DEBUG (0):
0:3:59.750000020 DEBUG (0): FINAL RESULT: MAX: 48
0:3:59.750000020 DEBUG (0):
0:4:0.000000010 DEBUG (0): #####################################
0:4:0.000000010 DEBUG (0): ####### ROUND 5 ##############
0:4:0.000000010 DEBUG (0): #####################################
0:4:59.008789072 DEBUG (3): NodeID = 3 curdepth= 3
0:4:59.008789072 DEBUG (3): Starting Data transmission to parent!
0:4:59.008789072 DEBUG (3): measurement is: 15
0:4:59.008789082 DEBUG (3): Node's MAX is: 15
0:4:59.015624980 DEBUG (2): Measurement received from: 3
0:4:59.015624990 DEBUG (2): Received from childID: 3 - max: 15
0:4:59.020507823 DEBUG (7): NodeID = 7 curdepth= 3
0:4:59.020507823 DEBUG (7): Starting Data transmission to parent!
0:4:59.020507823 DEBUG (7): measurement is: 19
0:4:59.020507833 DEBUG (7): Node's MAX is: 19
0:4:59.025604239 DEBUG (2): Measurement received from: 7
0:4:59.025604249 DEBUG (2): Received from childID: 7 - max: 19
0:4:59.032226573 DEBUG (11): NodeID = 11 curdepth= 3
0:4:59.032226573 DEBUG (11): Starting Data transmission to parent!
0:4:59.032226573 DEBUG (11): measurement is: 42
0:4:59.032226583 DEBUG (11): Node's MAX is: 42
0:4:59.035156261 DEBUG (12): NodeID = 12 curdepth= 3
0:4:59.035156261 DEBUG (12): Starting Data transmission to parent!
0:4:59.035156261 DEBUG (12): measurement is: 15
0:4:59.035156271 DEBUG (12): Node's MAX is: 15
0:4:59.038085948 DEBUG (13): NodeID = 13 curdepth= 3
0:4:59.038085948 DEBUG (13): Starting Data transmission to parent!
0:4:59.038085948 DEBUG (13): measurement is: 19
0:4:59.038085958 DEBUG (13): Node's MAX is: 19
0:4:59.041015636 DEBUG (14): NodeID = 14 curdepth= 3
0:4:59.041015636 DEBUG (14): Starting Data transmission to parent!
0:4:59.041015636 DEBUG (14): measurement is: 35
0:4:59.041015646 DEBUG (14): Node's MAX is: 35
0:4:59.041976910 DEBUG (8): Measurement received from: 12
0:4:59.041976920 DEBUG (8): Received from childID: 12 - max: 15
0:4:59.043029743 DEBUG (6): Measurement received from: 11
0:4:59.043029753 DEBUG (6): Received from childID: 11 - max: 42
0:4:59.043945324 DEBUG (15): NodeID = 15 curdepth= 3
0:4:59.043945324 DEBUG (15): Starting Data transmission to parent!
0:4:59.043945324 DEBUG (15): measurement is: 10
0:4:59.043945334 DEBUG (15): Node's MAX is: 10
0:4:59.045242306 DEBUG (10): Measurement received from: 14
0:4:59.045242316 DEBUG (10): Received from childID: 14 - max: 35
0:4:59.048034631 DEBUG (9): Measurement received from: 13
0:4:59.048034641 DEBUG (9): Received from childID: 13 - max: 19
0:4:59.255859385 DEBUG (2): NodeID = 2 curdepth= 2
0:4:59.255859385 DEBUG (2): Starting Data transmission to parent!
0:4:59.255859385 DEBUG (2): measurement is: 28
0:4:59.255859395 DEBUG (2): ChildID: 3 has max: 15
0:4:59.255859395 DEBUG (2): ChildID: 7 has max: 19
0:4:59.255859395 DEBUG (2): Node's MAX is: 28
0:4:59.263412451 DEBUG (1): Measurement received from: 2
0:4:59.263412461 DEBUG (1): Received from childID: 2 - max: 28
0:4:59.267578135 DEBUG (6): NodeID = 6 curdepth= 2
0:4:59.267578135 DEBUG (6): Starting Data transmission to parent!
0:4:59.267578135 DEBUG (6): measurement is: 9
0:4:59.267578145 DEBUG (6): ChildID: 11 has max: 42
0:4:59.267578145 DEBUG (6): Node's MAX is: 42
0:4:59.273437510 DEBUG (8): NodeID = 8 curdepth= 2
0:4:59.273437510 DEBUG (8): Starting Data transmission to parent!
0:4:59.273437510 DEBUG (8): measurement is: 7
0:4:59.273437520 DEBUG (8): ChildID: 12 has max: 15
0:4:59.273437520 DEBUG (8): Node's MAX is: 15
0:4:59.276367198 DEBUG (9): NodeID = 9 curdepth= 2
0:4:59.276367198 DEBUG (9): Starting Data transmission to parent!
0:4:59.276367198 DEBUG (9): measurement is: 41
0:4:59.276367208 DEBUG (9): ChildID: 13 has max: 19
0:4:59.276367208 DEBUG (9): Node's MAX is: 41
0:4:59.276519778 DEBUG (4): Measurement received from: 8
0:4:59.276519788 DEBUG (4): Received from childID: 8 - max: 15
0:4:59.276824917 DEBUG (1): Measurement received from: 6
0:4:59.276824927 DEBUG (1): Received from childID: 6 - max: 42
0:4:59.279296886 DEBUG (10): NodeID = 10 curdepth= 2
0:4:59.279296886 DEBUG (10): Starting Data transmission to parent!
0:4:59.279296886 DEBUG (10): measurement is: 48
0:4:59.279296896 DEBUG (10): ChildID: 14 has max: 35
0:4:59.279296896 DEBUG (10): ChildID: 15 has max: 21
0:4:59.279296896 DEBUG (10): Node's MAX is: 48
0:4:59.283432003 DEBUG (5): Measurement received from: 10
0:4:59.283432013 DEBUG (5): Received from childID: 10 - max: 48
0:4:59.284988373 DEBUG (4): Measurement received from: 9
0:4:59.284988383 DEBUG (4): Received from childID: 9 - max: 41
0:4:59.502929697 DEBUG (1): NodeID = 1 curdepth= 1
0:4:59.502929697 DEBUG (1): Starting Data transmission to parent!
0:4:59.502929697 DEBUG (1): measurement is: 9
0:4:59.502929707 DEBUG (1): ChildID: 2 has max: 28
0:4:59.502929707 DEBUG (1): ChildID: 6 has max: 42
0:4:59.502929707 DEBUG (1): Node's MAX is: 42
0:4:59.504791269 DEBUG (0): Measurement received from: 1
0:4:59.504791279 DEBUG (0): Received from childID: 1 - max: 42
0:4:59.511718760 DEBUG (4): NodeID = 4 curdepth= 1
0:4:59.511718760 DEBUG (4): Starting Data transmission to parent!
0:4:59.511718760 DEBUG (4): measurement is: 40
0:4:59.511718770 DEBUG (4): ChildID: 8 has max: 15
0:4:59.511718770 DEBUG (4): ChildID: 9 has max: 41
0:4:59.511718770 DEBUG (4): Node's MAX is: 41
0:4:59.514648448 DEBUG (5): NodeID = 5 curdepth= 1
0:4:59.514648448 DEBUG (5): Starting Data transmission to parent!
0:4:59.514648448 DEBUG (5): measurement is: 7
0:4:59.514648458 DEBUG (5): ChildID: 10 has max: 48
0:4:59.514648458 DEBUG (5): Node's MAX is: 48
0:4:59.516998297 DEBUG (0): Measurement received from: 5
0:4:59.516998307 DEBUG (0): Received from childID: 5 - max: 48
0:4:59.521697960 DEBUG (0): Measurement received from: 4
0:4:59.521697970 DEBUG (0): Received from childID: 4 - max: 41
0:4:59.750000010 DEBUG (0): NodeID = 0 curdepth= 0
0:4:59.750000010 DEBUG (0): measurement is: 31
0:4:59.750000020 DEBUG (0): ChildID: 1 has max: 42
0:4:59.750000020 DEBUG (0): ChildID: 4 has max: 41
0:4:59.750000020 DEBUG (0): ChildID: 5 has max: 48
0:4:59.750000020 DEBUG (0): Node's MAX is: 48
0:4:59.750000020 DEBUG (0):
0:4:59.750000020 DEBUG (0): FINAL RESULT: MAX: 48
0:4:59.750000020 DEBUG (0):
0:5:0.000000010 DEBUG (0): #####################################
0:5:0.000000010 DEBUG (0): ####### ROUND 6 ##############
0:5:0.000000010 DEBUG (0): #####################################
0:5:59.008789072 DEBUG (3): NodeID = 3 curdepth= 3
0:5:59.008789072 DEBUG (3): Starting Data transmission to parent!
0:5:59.008789072 DEBUG (3): measurement is: 49
0:5:59.008789082 DEBUG (3): Node's MAX is: 49
0:5:59.015914895 DEBUG (2): Measurement received from: 3
0:5:59.015914905 DEBUG (2): Received from childID: 3 - max: 49
0:5:59.020507823 DEBUG (7): NodeID = 7 curdepth= 3
0:5:59.020507823 DEBUG (7): Starting Data transmission to parent!
0:5:59.020507823 DEBUG (7): measurement is: 43
0:5:59.020507833 DEBUG (7): Node's MAX is: 43
0:5:59.022689827 DEBUG (2): Measurement received from: 7
0:5:59.022689837 DEBUG (2): Received from childID: 7 - max: 43
0:5:59.032226573 DEBUG (11): NodeID = 11 curdepth= 3
0:5:59.032226573 DEBUG (11): Starting Data transmission to parent!
0:5:59.032226573 DEBUG (11): measurement is: 4
0:5:59.032226583 DEBUG (11): Node's MAX is: 4
0:5:59.035156261 DEBUG (12): NodeID = 12 curdepth= 3
0:5:59.035156261 DEBUG (12): Starting Data transmission to parent!
0:5:59.035156261 DEBUG (12): measurement is: 7
0:5:59.035156271 DEBUG (12): Node's MAX is: 7
0:5:59.035339358 DEBUG (6): Measurement received from: 11
0:5:59.035339368 DEBUG (6): Received from childID: 11 - max: 4
0:5:59.038085948 DEBUG (13): NodeID = 13 curdepth= 3
0:5:59.038085948 DEBUG (13): Starting Data transmission to parent!
0:5:59.038085948 DEBUG (13): measurement is: 24
0:5:59.038085958 DEBUG (13): Node's MAX is: 24
0:5:59.038772583 DEBUG (8): Measurement received from: 12
0:5:59.038772593 DEBUG (8): Received from childID: 12 - max: 7
0:5:59.041015636 DEBUG (14): NodeID = 14 curdepth= 3
0:5:59.041015636 DEBUG (14): Starting Data transmission to parent!
0:5:59.041015636 DEBUG (14): measurement is: 13
0:5:59.041015646 DEBUG (14): Node's MAX is: 13
0:5:59.043945324 DEBUG (15): NodeID = 15 curdepth= 3
0:5:59.043945324 DEBUG (15): Starting Data transmission to parent!
0:5:59.043945324 DEBUG (15): measurement is: 15
0:5:59.043945334 DEBUG (15): Node's MAX is: 15
0:5:59.045501687 DEBUG (9): Measurement received from: 13
0:5:59.045501697 DEBUG (9): Received from childID: 13 - max: 24
0:5:59.047790509 DEBUG (10): Measurement received from: 14
0:5:59.047790519 DEBUG (10): Received from childID: 14 - max: 13
0:5:59.052841156 DEBUG (10): Measurement received from: 15
0:5:59.052841166 DEBUG (10): Received from childID: 15 - max: 15
0:5:59.255859385 DEBUG (2): NodeID = 2 curdepth= 2
0:5:59.255859385 DEBUG (2): Starting Data transmission to parent!
0:5:59.255859385 DEBUG (2): measurement is: 25
0:5:59.255859395 DEBUG (2): ChildID: 3 has max: 49
0:5:59.255859395 DEBUG (2): ChildID: 7 has max: 43
0:5:59.255859395 DEBUG (2): Node's MAX is: 49
0:5:59.257858284 DEBUG (1): Measurement received from: 2
0:5:59.257858294 DEBUG (1): Received from childID: 2 - max: 49
0:5:59.267578135 DEBUG (6): NodeID = 6 curdepth= 2
0:5:59.267578135 DEBUG (6): Starting Data transmission to parent!
0:5:59.267578135 DEBUG (6): measurement is: 21
0:5:59.267578145 DEBUG (6): ChildID: 11 has max: 4
0:5:59.267578145 DEBUG (6): Node's MAX is: 21
0:5:59.273437510 DEBUG (8): NodeID = 8 curdepth= 2
0:5:59.273437510 DEBUG (8): Starting Data transmission to parent!
0:5:59.273437510 DEBUG (8): measurement is: 44
0:5:59.273437520 DEBUG (8): ChildID: 12 has max: 7
0:5:59.273437520 DEBUG (8): Node's MAX is: 44
0:5:59.274505595 DEBUG (1): Measurement received from: 6
0:5:59.274505605 DEBUG (1): Received from childID: 6 - max: 21
0:5:59.276367198 DEBUG (9): NodeID = 9 curdepth= 2
0:5:59.276367198 DEBUG (9): Starting Data transmission to parent!
0:5:59.276367198 DEBUG (9): measurement is: 29
0:5:59.276367208 DEBUG (9): ChildID: 13 has max: 24
0:5:59.276367208 DEBUG (9): Node's MAX is: 29
0:5:59.279296886 DEBUG (10): NodeID = 10 curdepth= 2
0:5:59.279296886 DEBUG (10): Starting Data transmission to parent!
0:5:59.279296886 DEBUG (10): measurement is: 49
0:5:59.279296896 DEBUG (10): ChildID: 14 has max: 13
0:5:59.279296896 DEBUG (10): ChildID: 15 has max: 15
0:5:59.279296896 DEBUG (10): Node's MAX is: 49
0:5:59.283477745 DEBUG (4): Measurement received from: 8
0:5:59.283477755 DEBUG (4): Received from childID: 8 - max: 44
0:5:59.287078815 DEBUG (4): Measurement received from: 9
0:5:59.287078825 DEBUG (4): Received from childID: 9 - max: 29
0:5:59.502929697 DEBUG (1): NodeID = 1 curdepth= 1
0:5:59.502929697 DEBUG (1): Starting Data transmission to parent!
0:5:59.502929697 DEBUG (1): measurement is: 33
0:5:59.502929707 DEBUG (1): ChildID: 2 has max: 49
0:5:59.502929707 DEBUG (1): ChildID: 6 has max: 21
0:5:59.502929707 DEBUG (1): Node's MAX is: 49
0:5:59.506668089 DEBUG (0): Measurement received from: 1
0:5:59.506668099 DEBUG (0): Received from childID: 1 - max: 49
0:5:59.511718760 DEBUG (4): NodeID = 4 curdepth= 1
0:5:59.511718760 DEBUG (4): Starting Data transmission to parent!
0:5:59.511718760 DEBUG (4): measurement is: 46
0:5:59.511718770 DEBUG (4): ChildID: 8 has max: 44
0:5:59.511718770 DEBUG (4): ChildID: 9 has max: 29
0:5:59.511718770 DEBUG (4): Node's MAX is: 46
0:5:59.514648448 DEBUG (5): NodeID = 5 curdepth= 1
0:5:59.514648448 DEBUG (5): Starting Data transmission to parent!
0:5:59.514648448 DEBUG (5): measurement is: 20
0:5:59.514648458 DEBUG (5): ChildID: 10 has max: 48
0:5:59.514648458 DEBUG (5): Node's MAX is: 48
0:5:59.518356304 DEBUG (0): Measurement received from: 4
0:5:59.518356314 DEBUG (0): Received from childID: 4 - max: 46
0:5:59.521438579 DEBUG (0): Measurement received from: 5
0:5:59.521438589 DEBUG (0): Received from childID: 5 - max: 48
0:5:59.750000010 DEBUG (0): NodeID = 0 curdepth= 0
0:5:59.750000010 DEBUG (0): measurement is: 41
0:5:59.750000020 DEBUG (0): ChildID: 1 has max: 49
0:5:59.750000020 DEBUG (0): ChildID: 4 has max: 46
0:5:59.750000020 DEBUG (0): ChildID: 5 has max: 48
0:5:59.750000020 DEBUG (0): Node's MAX is: 49
0:5:59.750000020 DEBUG (0):
0:5:59.750000020 DEBUG (0): FINAL RESULT: MAX: 49
0:5:59.750000020 DEBUG (0):
0:6:0.000000010 DEBUG (0): #####################################
0:6:0.000000010 DEBUG (0): ####### ROUND 7 ##############
0:6:0.000000010 DEBUG (0): #####################################
0:6:59.008789072 DEBUG (3): NodeID = 3 curdepth= 3
0:6:59.008789072 DEBUG (3): Starting Data transmission to parent!
0:6:59.008789072 DEBUG (3): measurement is: 41
0:6:59.008789082 DEBUG (3): Node's MAX is: 41
0:6:59.013092036 DEBUG (2): Measurement received from: 3
0:6:59.013092046 DEBUG (2): Received from childID: 3 - max: 41
0:6:59.020507823 DEBUG (7): NodeID = 7 curdepth= 3
0:6:59.020507823 DEBUG (7): Starting Data transmission to parent!
0:6:59.020507823 DEBUG (7): measurement is: 45
0:6:59.020507833 DEBUG (7): Node's MAX is: 45
0:6:59.028472874 DEBUG (2): Measurement received from: 7
0:6:59.028472884 DEBUG (2): Received from childID: 7 - max: 45
0:6:59.032226573 DEBUG (11): NodeID = 11 curdepth= 3
0:6:59.032226573 DEBUG (11): Starting Data transmission to parent!
0:6:59.032226573 DEBUG (11): measurement is: 11
0:6:59.032226583 DEBUG (11): Node's MAX is: 11
0:6:59.035156261 DEBUG (12): NodeID = 12 curdepth= 3
0:6:59.035156261 DEBUG (12): Starting Data transmission to parent!
0:6:59.035156261 DEBUG (12): measurement is: 20
0:6:59.035156271 DEBUG (12): Node's MAX is: 20
0:6:59.035720825 DEBUG (6): Measurement received from: 11
0:6:59.035720835 DEBUG (6): Received from childID: 11 - max: 11
0:6:59.038085948 DEBUG (13): NodeID = 13 curdepth= 3
0:6:59.038085948 DEBUG (13): Starting Data transmission to parent!
0:6:59.038085948 DEBUG (13): measurement is: 36
0:6:59.038085958 DEBUG (13): Node's MAX is: 36
0:6:59.039398189 DEBUG (8): Measurement received from: 12
0:6:59.039398199 DEBUG (8): Received from childID: 12 - max: 20
0:6:59.040740972 DEBUG (9): Measurement received from: 13
0:6:59.040740982 DEBUG (9): Received from childID: 13 - max: 36
0:6:59.041015636 DEBUG (14): NodeID = 14 curdepth= 3
0:6:59.041015636 DEBUG (14): Starting Data transmission to parent!
0:6:59.041015636 DEBUG (14): measurement is: 48
0:6:59.041015646 DEBUG (14): Node's MAX is: 48
0:6:59.043167123 DEBUG (10): Measurement received from: 14
0:6:59.043167133 DEBUG (10): Received from childID: 14 - max: 48
0:6:59.043945324 DEBUG (15): NodeID = 15 curdepth= 3
0:6:59.043945324 DEBUG (15): Starting Data transmission to parent!
0:6:59.043945324 DEBUG (15): measurement is: 27
0:6:59.043945334 DEBUG (15): Node's MAX is: 27
0:6:59.050369246 DEBUG (10): Measurement received from: 15
0:6:59.050369256 DEBUG (10): Received from childID: 15 - max: 27
0:6:59.255859385 DEBUG (2): NodeID = 2 curdepth= 2
0:6:59.255859385 DEBUG (2): Starting Data transmission to parent!
0:6:59.255859385 DEBUG (2): measurement is: 14
0:6:59.255859395 DEBUG (2): ChildID: 3 has max: 41
0:6:59.255859395 DEBUG (2): ChildID: 7 has max: 45
0:6:59.255859395 DEBUG (2): Node's MAX is: 45
0:6:59.259017946 DEBUG (1): Measurement received from: 2
0:6:59.259017956 DEBUG (1): Received from childID: 2 - max: 45
0:6:59.267578135 DEBUG (6): NodeID = 6 curdepth= 2
0:6:59.267578135 DEBUG (6): Starting Data transmission to parent!
0:6:59.267578135 DEBUG (6): measurement is: 34
0:6:59.267578145 DEBUG (6): ChildID: 11 has max: 11
0:6:59.267578145 DEBUG (6): Node's MAX is: 34
0:6:59.273025501 DEBUG (1): Measurement received from: 6
0:6:59.273025511 DEBUG (1): Received from childID: 6 - max: 34
0:6:59.273437510 DEBUG (8): NodeID = 8 curdepth= 2
0:6:59.273437510 DEBUG (8): Starting Data transmission to parent!
0:6:59.273437510 DEBUG (8): measurement is: 46
0:6:59.273437520 DEBUG (8): ChildID: 12 has max: 20
0:6:59.273437520 DEBUG (8): Node's MAX is: 46
0:6:59.276367198 DEBUG (9): NodeID = 9 curdepth= 2
0:6:59.276367198 DEBUG (9): Starting Data transmission to parent!
0:6:59.276367198 DEBUG (9): measurement is: 26
0:6:59.276367208 DEBUG (9): ChildID: 13 has max: 36
0:6:59.276367208 DEBUG (9): Node's MAX is: 36
0:6:59.278274528 DEBUG (4): Measurement received from: 8
0:6:59.278274538 DEBUG (4): Received from childID: 8 - max: 46
0:6:59.279296886 DEBUG (10): NodeID = 10 curdepth= 2
0:6:59.279296886 DEBUG (10): Starting Data transmission to parent!
0:6:59.279296886 DEBUG (10): measurement is: 34
0:6:59.279296896 DEBUG (10): ChildID: 14 has max: 48
0:6:59.279296896 DEBUG (10): ChildID: 15 has max: 27
0:6:59.279296896 DEBUG (10): Node's MAX is: 48
0:6:59.283996575 DEBUG (5): Measurement received from: 10
0:6:59.283996585 DEBUG (5): Received from childID: 10 - max: 48
0:6:59.286666830 DEBUG (4): Measurement received from: 9
0:6:59.286666840 DEBUG (4): Received from childID: 9 - max: 36
0:6:59.502929697 DEBUG (1): NodeID = 1 curdepth= 1
0:6:59.502929697 DEBUG (1): Starting Data transmission to parent!
0:6:59.502929697 DEBUG (1): measurement is: 1
0:6:59.502929707 DEBUG (1): ChildID: 2 has max: 45
0:6:59.502929707 DEBUG (1): ChildID: 6 has max: 34
0:6:59.502929707 DEBUG (1): Node's MAX is: 45
0:6:59.506454467 DEBUG (0): Measurement received from: 1
0:6:59.506454477 DEBUG (0): Received from childID: 1 - max: 45
0:6:59.511718760 DEBUG (4): NodeID = 4 curdepth= 1
0:6:59.511718760 DEBUG (4): Starting Data transmission to parent!
0:6:59.511718760 DEBUG (4): measurement is: 38
0:6:59.511718770 DEBUG (4): ChildID: 8 has max: 46
0:6:59.511718770 DEBUG (4): ChildID: 9 has max: 36
0:6:59.511718770 DEBUG (4): Node's MAX is: 46
0:6:59.514648448 DEBUG (5): NodeID = 5 curdepth= 1
0:6:59.514648448 DEBUG (5): Starting Data transmission to parent!
0:6:59.514648448 DEBUG (5): measurement is: 13
0:6:59.514648458 DEBUG (5): ChildID: 10 has max: 48
0:6:59.514648458 DEBUG (5): Node's MAX is: 48
0:6:59.519393896 DEBUG (0): Measurement received from: 4
0:6:59.519393906 DEBUG (0): Received from childID: 4 - max: 46
0:6:59.524017299 DEBUG (0): Measurement received from: 5
0:6:59.524017309 DEBUG (0): Received from childID: 5 - max: 48
0:6:59.750000010 DEBUG (0): NodeID = 0 curdepth= 0
0:6:59.750000010 DEBUG (0): measurement is: 36
0:6:59.750000020 DEBUG (0): ChildID: 1 has max: 45
0:6:59.750000020 DEBUG (0): ChildID: 4 has max: 46
0:6:59.750000020 DEBUG (0): ChildID: 5 has max: 48
0:6:59.750000020 DEBUG (0): Node's MAX is: 48
0:6:59.750000020 DEBUG (0):
0:6:59.750000020 DEBUG (0): FINAL RESULT: MAX: 48
0:6:59.750000020 DEBUG (0):
0:7:0.000000010 DEBUG (0): #####################################
0:7:0.000000010 DEBUG (0): ####### ROUND 8 ##############
0:7:0.000000010 DEBUG (0): #####################################
0:7:59.008789072 DEBUG (3): NodeID = 3 curdepth= 3
0:7:59.008789072 DEBUG (3): Starting Data transmission to parent!
0:7:59.008789072 DEBUG (3): measurement is: 12
0:7:59.008789082 DEBUG (3): Node's MAX is: 12
0:7:59.017013522 DEBUG (2): Measurement received from: 3
0:7:59.017013532 DEBUG (2): Received from childID: 3 - max: 12
0:7:59.020507823 DEBUG (7): NodeID = 7 curdepth= 3
0:7:59.020507823 DEBUG (7): Starting Data transmission to parent!
0:7:59.020507823 DEBUG (7): measurement is: 39
0:7:59.020507833 DEBUG (7): Node's MAX is: 39
0:7:59.027389506 DEBUG (2): Measurement received from: 7
0:7:59.027389516 DEBUG (2): Received from childID: 7 - max: 39
0:7:59.032226573 DEBUG (11): NodeID = 11 curdepth= 3
0:7:59.032226573 DEBUG (11): Starting Data transmission to parent!
0:7:59.032226573 DEBUG (11): measurement is: 46
0:7:59.032226583 DEBUG (11): Node's MAX is: 46
0:7:59.035156261 DEBUG (12): NodeID = 12 curdepth= 3
0:7:59.035156261 DEBUG (12): Starting Data transmission to parent!
0:7:59.035156261 DEBUG (12): measurement is: 22
0:7:59.035156271 DEBUG (12): Node's MAX is: 22
0:7:59.037063608 DEBUG (8): Measurement received from: 12
0:7:59.037063618 DEBUG (8): Received from childID: 12 - max: 22
0:7:59.038085948 DEBUG (13): NodeID = 13 curdepth= 3
0:7:59.038085948 DEBUG (13): Starting Data transmission to parent!
0:7:59.038085948 DEBUG (13): measurement is: 45
0:7:59.038085958 DEBUG (13): Node's MAX is: 45
0:7:59.041015636 DEBUG (14): NodeID = 14 curdepth= 3
0:7:59.041015636 DEBUG (14): Starting Data transmission to parent!
0:7:59.041015636 DEBUG (14): measurement is: 36
0:7:59.041015646 DEBUG (14): Node's MAX is: 36
0:7:59.042419395 DEBUG (6): Measurement received from: 11
0:7:59.042419405 DEBUG (6): Received from childID: 11 - max: 46
0:7:59.043945324 DEBUG (15): NodeID = 15 curdepth= 3
0:7:59.043945324 DEBUG (15): Starting Data transmission to parent!
0:7:59.043945324 DEBUG (15): measurement is: 16
0:7:59.043945334 DEBUG (15): Node's MAX is: 16
0:7:59.044204714 DEBUG (10): Measurement received from: 14
0:7:59.044204724 DEBUG (10): Received from childID: 14 - max: 36
0:7:59.046844452 DEBUG (9): Measurement received from: 13
0:7:59.046844462 DEBUG (9): Received from childID: 13 - max: 45
0:7:59.056259104 DEBUG (10): Measurement received from: 15
0:7:59.056259114 DEBUG (10): Received from childID: 15 - max: 16