-
Notifications
You must be signed in to change notification settings - Fork 0
/
slurm-5415834.out
1545 lines (1545 loc) · 71.9 KB
/
slurm-5415834.out
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
--------------------------
Iteration 0. Team 1610612739 Game 21500499, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.023768485885457297
Checking significant subtrajectories...
Iteration 0 running time: 554 seconds
--------------------------
Iteration 1. Team 1610612739 Game 21500499, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.027610283781685736
Checking significant subtrajectories...
Iteration 1 running time: 584 seconds
--------------------------
Iteration 2. Team 1610612739 Game 21500499, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.027610283781685736
Checking significant subtrajectories...
Iteration 2 running time: 571 seconds
--------------------------
Iteration 3. Team 1610612739 Game 21500499, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0018153550498661876
Checking significant subtrajectories...
Iteration 3 running time: 1734 seconds
--------------------------
Iteration 4. Team 1610612739 Game 21500499, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0018153550498661876
Checking significant subtrajectories...
Iteration 4 running time: 1785 seconds
--------------------------
Iteration 5. Team 1610612739 Game 21500499, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.001553611310431119
Checking significant subtrajectories...
Iteration 5 running time: 1828 seconds
--------------------------
Iteration 6. Team 1610612739 Game 21500511, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.023548844940607355
Checking significant subtrajectories...
Iteration 6 running time: 201 seconds
--------------------------
Iteration 7. Team 1610612739 Game 21500511, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.023548844940607355
Checking significant subtrajectories...
Iteration 7 running time: 209 seconds
--------------------------
Iteration 8. Team 1610612739 Game 21500511, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.023548844940607355
Checking significant subtrajectories...
Iteration 8 running time: 223 seconds
--------------------------
Iteration 9. Team 1610612739 Game 21500511, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004273510768122528
Checking significant subtrajectories...
Iteration 9 running time: 504 seconds
--------------------------
Iteration 10. Team 1610612739 Game 21500511, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004832588196404339
Checking significant subtrajectories...
Iteration 10 running time: 540 seconds
--------------------------
Iteration 11. Team 1610612739 Game 21500511, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0076398791669685774
Checking significant subtrajectories...
Iteration 11 running time: 582 seconds
--------------------------
Iteration 12. Team 1610612739 Game 21500527, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.012497276185665979
Checking significant subtrajectories...
Iteration 12 running time: 582 seconds
--------------------------
Iteration 13. Team 1610612739 Game 21500527, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.010950656277045924
Checking significant subtrajectories...
Iteration 13 running time: 610 seconds
--------------------------
Iteration 14. Team 1610612739 Game 21500527, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.022250708192881673
Checking significant subtrajectories...
Iteration 14 running time: 618 seconds
--------------------------
Iteration 15. Team 1610612739 Game 21500527, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0017675730505716972
Checking significant subtrajectories...
Iteration 15 running time: 1872 seconds
--------------------------
Iteration 16. Team 1610612739 Game 21500527, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0017367717160853772
Checking significant subtrajectories...
Iteration 16 running time: 1985 seconds
--------------------------
Iteration 17. Team 1610612739 Game 21500527, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0017675730505716972
Checking significant subtrajectories...
Iteration 17 running time: 2054 seconds
--------------------------
Iteration 18. Team 1610612739 Game 21500543, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.018899501255182125
Checking significant subtrajectories...
Iteration 18 running time: 652 seconds
--------------------------
Iteration 19. Team 1610612739 Game 21500543, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.029665646937705858
Checking significant subtrajectories...
Iteration 19 running time: 700 seconds
--------------------------
Iteration 20. Team 1610612739 Game 21500543, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.029665646937705858
Checking significant subtrajectories...
Iteration 20 running time: 679 seconds
--------------------------
Iteration 21. Team 1610612739 Game 21500543, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0019028463525907592
Checking significant subtrajectories...
Iteration 21 running time: 2218 seconds
--------------------------
Iteration 22. Team 1610612739 Game 21500543, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0018833748950218988
Checking significant subtrajectories...
Iteration 22 running time: 2260 seconds
--------------------------
Iteration 23. Team 1610612739 Game 21500543, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0018833748950218988
Checking significant subtrajectories...
Iteration 23 running time: 2299 seconds
--------------------------
Iteration 24. Team 1610612739 Game 21500559, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.01747986917353633
Checking significant subtrajectories...
Iteration 24 running time: 425 seconds
--------------------------
Iteration 25. Team 1610612739 Game 21500559, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.01747986917353633
Checking significant subtrajectories...
Iteration 25 running time: 440 seconds
--------------------------
Iteration 26. Team 1610612739 Game 21500559, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.01747986917353633
Checking significant subtrajectories...
Iteration 26 running time: 448 seconds
--------------------------
Iteration 27. Team 1610612739 Game 21500559, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0020261304849190052
Checking significant subtrajectories...
Some significant subtrajectories were found.
Iteration 27 running time: 1306 seconds
--------------------------
Iteration 28. Team 1610612739 Game 21500559, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.00266437700101434
Checking significant subtrajectories...
Some significant subtrajectories were found.
Iteration 28 running time: 1347 seconds
--------------------------
Iteration 29. Team 1610612739 Game 21500559, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0019934933423828485
Checking significant subtrajectories...
Some significant subtrajectories were found.
Iteration 29 running time: 1339 seconds
--------------------------
Iteration 30. Team 1610612739 Game 21500575, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.03672871848517537
Checking significant subtrajectories...
Iteration 30 running time: 376 seconds
--------------------------
Iteration 31. Team 1610612739 Game 21500575, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.022713224229144374
Checking significant subtrajectories...
Iteration 31 running time: 390 seconds
--------------------------
Iteration 32. Team 1610612739 Game 21500575, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.022713224229144374
Checking significant subtrajectories...
Iteration 32 running time: 402 seconds
--------------------------
Iteration 33. Team 1610612739 Game 21500575, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003064756074619911
Checking significant subtrajectories...
Iteration 33 running time: 1078 seconds
--------------------------
Iteration 34. Team 1610612739 Game 21500575, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003003515683860471
Checking significant subtrajectories...
Iteration 34 running time: 1132 seconds
--------------------------
Iteration 35. Team 1610612739 Game 21500575, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003003515683860471
Checking significant subtrajectories...
Iteration 35 running time: 1151 seconds
--------------------------
Iteration 36. Team 1610612739 Game 21500601, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.023548844940607355
Checking significant subtrajectories...
Iteration 36 running time: 205 seconds
--------------------------
Iteration 37. Team 1610612739 Game 21500601, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.023548844940607355
Checking significant subtrajectories...
Iteration 37 running time: 209 seconds
--------------------------
Iteration 38. Team 1610612739 Game 21500601, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.023548844940607355
Checking significant subtrajectories...
Iteration 38 running time: 216 seconds
--------------------------
Iteration 39. Team 1610612739 Game 21500601, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004273510768122528
Checking significant subtrajectories...
Iteration 39 running time: 510 seconds
--------------------------
Iteration 40. Team 1610612739 Game 21500601, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0033964680202799072
Checking significant subtrajectories...
Iteration 40 running time: 523 seconds
--------------------------
Iteration 41. Team 1610612739 Game 21500601, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004832588196404339
Checking significant subtrajectories...
Iteration 41 running time: 543 seconds
--------------------------
Iteration 42. Team 1610612739 Game 21500622, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Checking significant subtrajectories...
usage: significant_subtrajectories.py [-h] -d DELTA_S
significant_subtrajectories.py: error: argument -d/--delta: invalid float value: 'FAIL'
Iteration 42 running time: 115 seconds
--------------------------
Iteration 43. Team 1610612739 Game 21500622, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Checking significant subtrajectories...
usage: significant_subtrajectories.py [-h] -d DELTA_S
significant_subtrajectories.py: error: argument -d/--delta: invalid float value: 'FAIL'
Iteration 43 running time: 121 seconds
--------------------------
Iteration 44. Team 1610612739 Game 21500622, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Checking significant subtrajectories...
usage: significant_subtrajectories.py [-h] -d DELTA_S
significant_subtrajectories.py: error: argument -d/--delta: invalid float value: 'FAIL'
Iteration 44 running time: 118 seconds
--------------------------
Iteration 45. Team 1610612739 Game 21500622, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004737647356959232
Checking significant subtrajectories...
Iteration 45 running time: 317 seconds
--------------------------
Iteration 46. Team 1610612739 Game 21500622, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004737647356959232
Checking significant subtrajectories...
Iteration 46 running time: 348 seconds
--------------------------
Iteration 47. Team 1610612739 Game 21500622, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.004737647356959232
Checking significant subtrajectories...
Iteration 47 running time: 363 seconds
--------------------------
Iteration 48. Team 1610612739 Game 21500011, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.01786948858484939
Checking significant subtrajectories...
Iteration 48 running time: 687 seconds
--------------------------
Iteration 49. Team 1610612739 Game 21500011, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.022695988957869388
Checking significant subtrajectories...
Iteration 49 running time: 704 seconds
--------------------------
Iteration 50. Team 1610612739 Game 21500011, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Checking significant subtrajectories...
usage: significant_subtrajectories.py [-h] -d DELTA_S
significant_subtrajectories.py: error: argument -d/--delta: invalid float value: 'FAIL'
Iteration 50 running time: 719 seconds
--------------------------
Iteration 51. Team 1610612739 Game 21500011, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.001761871463649417
Checking significant subtrajectories...
Iteration 51 running time: 2274 seconds
--------------------------
Iteration 52. Team 1610612739 Game 21500011, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0014891240487374493
Checking significant subtrajectories...
Iteration 52 running time: 2366 seconds
--------------------------
Iteration 53. Team 1610612739 Game 21500011, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.001626046838971823
Checking significant subtrajectories...
Iteration 53 running time: 2420 seconds
--------------------------
Iteration 54. Team 1610612739 Game 21500021, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.034655218199522
Checking significant subtrajectories...
Iteration 54 running time: 268 seconds
--------------------------
Iteration 55. Team 1610612739 Game 21500021, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.034655218199522
Checking significant subtrajectories...
Iteration 55 running time: 288 seconds
--------------------------
Iteration 56. Team 1610612739 Game 21500021, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.034655218199522
Checking significant subtrajectories...
Iteration 56 running time: 285 seconds
--------------------------
Iteration 57. Team 1610612739 Game 21500021, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0036426274035184325
Checking significant subtrajectories...
Iteration 57 running time: 735 seconds
--------------------------
Iteration 58. Team 1610612739 Game 21500021, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003951910847313912
Checking significant subtrajectories...
Iteration 58 running time: 797 seconds
--------------------------
Iteration 59. Team 1610612739 Game 21500021, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003951910847313912
Checking significant subtrajectories...
Iteration 59 running time: 780 seconds
--------------------------
Iteration 60. Team 1610612739 Game 21500046, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.02700763593501768
Checking significant subtrajectories...
Iteration 60 running time: 268 seconds
--------------------------
Iteration 61. Team 1610612739 Game 21500046, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.02700763593501768
Checking significant subtrajectories...
Iteration 61 running time: 278 seconds
--------------------------
Iteration 62. Team 1610612739 Game 21500046, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.02700763593501768
Checking significant subtrajectories...
Iteration 62 running time: 287 seconds
--------------------------
Iteration 63. Team 1610612739 Game 21500046, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.002869109831643999
Checking significant subtrajectories...
Iteration 63 running time: 694 seconds
--------------------------
Iteration 64. Team 1610612739 Game 21500046, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0038751321872626428
Checking significant subtrajectories...
Iteration 64 running time: 716 seconds
--------------------------
Iteration 65. Team 1610612739 Game 21500046, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0038751321872626428
Checking significant subtrajectories...
Iteration 65 running time: 748 seconds
--------------------------
Iteration 66. Team 1610612739 Game 21500063, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.015387550520910358
Checking significant subtrajectories...
Iteration 66 running time: 316 seconds
--------------------------
Iteration 67. Team 1610612739 Game 21500063, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.012495153806453524
Checking significant subtrajectories...
Iteration 67 running time: 341 seconds
--------------------------
Iteration 68. Team 1610612739 Game 21500063, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.012495153806453524
Checking significant subtrajectories...
Iteration 68 running time: 346 seconds
--------------------------
Iteration 69. Team 1610612739 Game 21500063, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0032394843201916544
Checking significant subtrajectories...
Iteration 69 running time: 856 seconds
--------------------------
Iteration 70. Team 1610612739 Game 21500063, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.005915549893851594
Checking significant subtrajectories...
Iteration 70 running time: 977 seconds
--------------------------
Iteration 71. Team 1610612739 Game 21500063, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0038273037208101514
Checking significant subtrajectories...
Iteration 71 running time: 994 seconds
--------------------------
Iteration 72. Team 1610612739 Game 21500078, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.01884404018135899
Checking significant subtrajectories...
Iteration 72 running time: 381 seconds
--------------------------
Iteration 73. Team 1610612739 Game 21500078, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.011205698726999667
Checking significant subtrajectories...
Iteration 73 running time: 396 seconds
--------------------------
Iteration 74. Team 1610612739 Game 21500078, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.011205698726999667
Checking significant subtrajectories...
Iteration 74 running time: 414 seconds
--------------------------
Iteration 75. Team 1610612739 Game 21500078, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003735232908999889
Checking significant subtrajectories...
Iteration 75 running time: 1178 seconds
--------------------------
Iteration 76. Team 1610612739 Game 21500078, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0034938764510233844
Checking significant subtrajectories...
Iteration 76 running time: 1204 seconds
--------------------------
Iteration 77. Team 1610612739 Game 21500078, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0034938764510233844
Checking significant subtrajectories...
Iteration 77 running time: 1212 seconds
--------------------------
Iteration 78. Team 1610612739 Game 21500094, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.019241983560986765
Checking significant subtrajectories...
Iteration 78 running time: 542 seconds
--------------------------
Iteration 79. Team 1610612739 Game 21500094, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0062344450129448595
Checking significant subtrajectories...
Iteration 79 running time: 561 seconds
--------------------------
Iteration 80. Team 1610612739 Game 21500094, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.015147526376541584
Checking significant subtrajectories...
Iteration 80 running time: 605 seconds
--------------------------
Iteration 81. Team 1610612739 Game 21500094, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.002151997403048542
Checking significant subtrajectories...
Iteration 81 running time: 2044 seconds
--------------------------
Iteration 82. Team 1610612739 Game 21500094, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.002151997403048542
Checking significant subtrajectories...
Iteration 82 running time: 2108 seconds
--------------------------
Iteration 83. Team 1610612739 Game 21500094, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0018394097861358482
Checking significant subtrajectories...
Iteration 83 running time: 2143 seconds
--------------------------
Iteration 84. Team 1610612739 Game 21500106, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.024273106608956638
Checking significant subtrajectories...
Iteration 84 running time: 491 seconds
--------------------------
Iteration 85. Team 1610612739 Game 21500106, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.024273106608956638
Checking significant subtrajectories...
Iteration 85 running time: 515 seconds
--------------------------
Iteration 86. Team 1610612739 Game 21500106, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Checking significant subtrajectories...
usage: significant_subtrajectories.py [-h] -d DELTA_S
significant_subtrajectories.py: error: argument -d/--delta: invalid float value: 'FAIL'
Iteration 86 running time: 514 seconds
--------------------------
Iteration 87. Team 1610612739 Game 21500106, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0025812821060750947
Checking significant subtrajectories...
Iteration 87 running time: 1561 seconds
--------------------------
Iteration 88. Team 1610612739 Game 21500106, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0020412823791122075
Checking significant subtrajectories...
Iteration 88 running time: 1595 seconds
--------------------------
Iteration 89. Team 1610612739 Game 21500106, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0025812821060750947
Checking significant subtrajectories...
Iteration 89 running time: 1579 seconds
--------------------------
Iteration 90. Team 1610612739 Game 21500130, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.015758391649626516
Checking significant subtrajectories...
Iteration 90 running time: 716 seconds
--------------------------
Iteration 91. Team 1610612739 Game 21500130, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.036438008598471947
Checking significant subtrajectories...
Iteration 91 running time: 718 seconds
--------------------------
Iteration 92. Team 1610612739 Game 21500130, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.02006782936605499
Checking significant subtrajectories...
Iteration 92 running time: 753 seconds
--------------------------
Iteration 93. Team 1610612739 Game 21500130, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.001794438075899112
Checking significant subtrajectories...
Iteration 93 running time: 2397 seconds
--------------------------
Iteration 94. Team 1610612739 Game 21500130, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0011217709978979464
Checking significant subtrajectories...
Iteration 94 running time: 2483 seconds
--------------------------
Iteration 95. Team 1610612739 Game 21500130, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.00189542890103306
Checking significant subtrajectories...
Iteration 95 running time: 2492 seconds
--------------------------
Iteration 96. Team 1610612739 Game 21500141, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.034655218199522
Checking significant subtrajectories...
Iteration 96 running time: 274 seconds
--------------------------
Iteration 97. Team 1610612739 Game 21500141, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.034655218199522
Checking significant subtrajectories...
Iteration 97 running time: 290 seconds
--------------------------
Iteration 98. Team 1610612739 Game 21500141, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.034655218199522
Checking significant subtrajectories...
Iteration 98 running time: 278 seconds
--------------------------
Iteration 99. Team 1610612739 Game 21500141, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003951910847313912
Checking significant subtrajectories...
Iteration 99 running time: 747 seconds
--------------------------
Iteration 100. Team 1610612739 Game 21500141, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003951910847313912
Checking significant subtrajectories...
Iteration 100 running time: 804 seconds
--------------------------
Iteration 101. Team 1610612739 Game 21500141, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003951910847313912
Checking significant subtrajectories...
Iteration 101 running time: 813 seconds
--------------------------
Iteration 102. Team 1610612739 Game 21500160, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.017612738573383066
Checking significant subtrajectories...
Iteration 102 running time: 697 seconds
--------------------------
Iteration 103. Team 1610612739 Game 21500160, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.022695988957869388
Checking significant subtrajectories...
Iteration 103 running time: 726 seconds
--------------------------
Iteration 104. Team 1610612739 Game 21500160, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Checking significant subtrajectories...
usage: significant_subtrajectories.py [-h] -d DELTA_S
significant_subtrajectories.py: error: argument -d/--delta: invalid float value: 'FAIL'
Iteration 104 running time: 712 seconds
--------------------------
Iteration 105. Team 1610612739 Game 21500160, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0014570377731774956
Checking significant subtrajectories...
Iteration 105 running time: 2274 seconds
--------------------------
Iteration 106. Team 1610612739 Game 21500160, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0013429067533957762
Checking significant subtrajectories...
Iteration 106 running time: 2377 seconds
--------------------------
Iteration 107. Team 1610612739 Game 21500160, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0014570377731774956
Checking significant subtrajectories...
Iteration 107 running time: 2440 seconds
--------------------------
Iteration 108. Team 1610612739 Game 21500176, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.034655218199522
Checking significant subtrajectories...
Iteration 108 running time: 263 seconds
--------------------------
Iteration 109. Team 1610612739 Game 21500176, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.034655218199522
Checking significant subtrajectories...
Iteration 109 running time: 279 seconds
--------------------------
Iteration 110. Team 1610612739 Game 21500176, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.034655218199522
Checking significant subtrajectories...
Iteration 110 running time: 276 seconds
--------------------------
Iteration 111. Team 1610612739 Game 21500176, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003642627403518432
Checking significant subtrajectories...
Iteration 111 running time: 717 seconds
--------------------------
Iteration 112. Team 1610612739 Game 21500176, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003642627403518432
Checking significant subtrajectories...
Iteration 112 running time: 762 seconds
--------------------------
Iteration 113. Team 1610612739 Game 21500176, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.003951910847313912
Checking significant subtrajectories...
Iteration 113 running time: 798 seconds
--------------------------
Iteration 114. Team 1610612739 Game 21500191, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.022585640151077977
Checking significant subtrajectories...
Iteration 114 running time: 520 seconds
--------------------------
Iteration 115. Team 1610612739 Game 21500191, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.020605872907365385
Checking significant subtrajectories...
Iteration 115 running time: 552 seconds
--------------------------
Iteration 116. Team 1610612739 Game 21500191, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Checking significant subtrajectories...
usage: significant_subtrajectories.py [-h] -d DELTA_S
significant_subtrajectories.py: error: argument -d/--delta: invalid float value: 'FAIL'
Iteration 116 running time: 574 seconds
--------------------------
Iteration 117. Team 1610612739 Game 21500191, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.002008516670546603
Checking significant subtrajectories...
Iteration 117 running time: 1685 seconds
--------------------------
Iteration 118. Team 1610612739 Game 21500191, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0019542850253306742
Checking significant subtrajectories...
Iteration 118 running time: 1767 seconds
--------------------------
Iteration 119. Team 1610612739 Game 21500191, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.002008516670546603
Checking significant subtrajectories...
Iteration 119 running time: 1773 seconds
--------------------------
Iteration 120. Team 1610612739 Game 21500203, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.012575697484529556
Checking significant subtrajectories...
Iteration 120 running time: 846 seconds
--------------------------
Iteration 121. Team 1610612739 Game 21500203, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.023649448372143306
Checking significant subtrajectories...
Iteration 121 running time: 925 seconds
--------------------------
Iteration 122. Team 1610612739 Game 21500203, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.023649448372143306
Checking significant subtrajectories...
Iteration 122 running time: 886 seconds
--------------------------
Iteration 123. Team 1610612739 Game 21500203, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0014182736141876763
Checking significant subtrajectories...
Iteration 123 running time: 3579 seconds
--------------------------
Iteration 124. Team 1610612739 Game 21500203, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0012211045310271617
Checking significant subtrajectories...
Iteration 124 running time: 3681 seconds
--------------------------
Iteration 125. Team 1610612739 Game 21500203, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0014411086794009192
Checking significant subtrajectories...
Iteration 125 running time: 3678 seconds
--------------------------
Iteration 126. Team 1610612739 Game 21500219, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.01694325720476889
Checking significant subtrajectories...
Iteration 126 running time: 678 seconds
--------------------------
Iteration 127. Team 1610612739 Game 21500219, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.01318073612891412
Checking significant subtrajectories...
Iteration 127 running time: 711 seconds
--------------------------
Iteration 128. Team 1610612739 Game 21500219, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was FAIL
Checking significant subtrajectories...
usage: significant_subtrajectories.py [-h] -d DELTA_S
significant_subtrajectories.py: error: argument -d/--delta: invalid float value: 'FAIL'
Iteration 128 running time: 645 seconds
--------------------------
Iteration 129. Team 1610612739 Game 21500219, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0011666428024822448
Checking significant subtrajectories...
Iteration 129 running time: 2113 seconds
--------------------------
Iteration 130. Team 1610612739 Game 21500219, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0013439410813980987
Checking significant subtrajectories...
Iteration 130 running time: 2333 seconds
--------------------------
Iteration 131. Team 1610612739 Game 21500219, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0011666428024822448
Checking significant subtrajectories...
Iteration 131 running time: 2256 seconds
--------------------------
Iteration 132. Team 1610612739 Game 21500227, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.011008492358610861
Checking significant subtrajectories...
Iteration 132 running time: 1030 seconds
--------------------------
Iteration 133. Team 1610612739 Game 21500227, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.011008492358610861
Checking significant subtrajectories...
Iteration 133 running time: 1059 seconds
--------------------------
Iteration 134. Team 1610612739 Game 21500227, Distance Threshold 1.5, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.011008492358610861
Checking significant subtrajectories...
Iteration 134 running time: 1146 seconds
--------------------------
Iteration 135. Team 1610612739 Game 21500227, Distance Threshold 4, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0007071592868435184
Checking significant subtrajectories...
Iteration 135 running time: 4584 seconds
--------------------------
Iteration 136. Team 1610612739 Game 21500227, Distance Threshold 4, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0015248873174943279
Checking significant subtrajectories...
Iteration 136 running time: 5151 seconds
--------------------------
Iteration 137. Team 1610612739 Game 21500227, Distance Threshold 4, Min Length 10...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.0007298745053895474
Checking significant subtrajectories...
Iteration 137 running time: 4603 seconds
--------------------------
Iteration 138. Team 1610612739 Game 21500262, Distance Threshold 1.5, Min Length 5...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.03736854543306156
Checking significant subtrajectories...
Iteration 138 running time: 183 seconds
--------------------------
Iteration 139. Team 1610612739 Game 21500262, Distance Threshold 1.5, Min Length 8...
Successfully completed data preprocessing
Running MA stat dsm...
Finished running MA stat dsm and the output delta was 0.03736854543306156
Checking significant subtrajectories...
Iteration 139 running time: 185 seconds
--------------------------