-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathefficiency.csv
We can't make this file beautiful and searchable because it's too large.
11881 lines (11881 loc) · 620 KB
/
efficiency.csv
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
"distribution","p","n","estimator","efficiency"
"Uniform(a=0, b=1)",0.01,5,"hd",1.0303873109623
"Triangular(a=0, b=2, c=1)",0.01,5,"hd",1.02373198730049
"Triangular(a=0, b=2, c=0.2)",0.01,5,"hd",1.02888835178983
"Beta(a=2, b=4)",0.01,5,"hd",1.02818128226417
"Beta(a=2, b=10)",0.01,5,"hd",1.02767806181634
"Normal(m=0, sd=1)",0.01,5,"hd",1.01996427990786
"Weibull(scale=1, shape=2)",0.01,5,"hd",1.02739962383898
"Student(df=3)",0.01,5,"hd",1.00662653499994
"Gumbel(loc=0, scale=1)",0.01,5,"hd",1.02159736605947
"Exp(rate=1)",0.01,5,"hd",1.03706593532333
"Cauchy(x0=0, gamma=1)",0.01,5,"hd",0.95814895480099
"Pareto(loc=1, shape=0.5)",0.01,5,"hd",0.925130127651758
"Pareto(loc=1, shape=2)",0.01,5,"hd",1.04491288304257
"LogNormal(mlog=0, sdlog=1)",0.01,5,"hd",1.03239416001969
"LogNormal(mlog=0, sdlog=2)",0.01,5,"hd",1.07296414661034
"LogNormal(mlog=0, sdlog=3)",0.01,5,"hd",1.13460936859344
"Weibull(shape=0.3)",0.01,5,"hd",1.18289879770942
"Weibull(shape=0.5)",0.01,5,"hd",1.08120870928285
"Frechet(shape=1)",0.01,5,"hd",1.04007327866706
"Frechet(shape=3)",0.01,5,"hd",1.03017749614596
"Uniform(a=0, b=1)",0.02,5,"hd",1.05830786962964
"Triangular(a=0, b=2, c=1)",0.02,5,"hd",1.04206984229264
"Triangular(a=0, b=2, c=0.2)",0.02,5,"hd",1.06035331574489
"Beta(a=2, b=4)",0.02,5,"hd",1.05320049519317
"Beta(a=2, b=10)",0.02,5,"hd",1.05689098726433
"Normal(m=0, sd=1)",0.02,5,"hd",1.03784048006191
"Weibull(scale=1, shape=2)",0.02,5,"hd",1.05705524340397
"Student(df=3)",0.02,5,"hd",1.00501083850546
"Gumbel(loc=0, scale=1)",0.02,5,"hd",1.04848062439668
"Exp(rate=1)",0.02,5,"hd",1.07661024528722
"Cauchy(x0=0, gamma=1)",0.02,5,"hd",0.886064975000643
"Pareto(loc=1, shape=0.5)",0.02,5,"hd",0.640689478145712
"Pareto(loc=1, shape=2)",0.02,5,"hd",1.09968767527802
"LogNormal(mlog=0, sdlog=1)",0.02,5,"hd",1.0734594496434
"LogNormal(mlog=0, sdlog=2)",0.02,5,"hd",1.13059151400994
"LogNormal(mlog=0, sdlog=3)",0.02,5,"hd",1.2213299538034
"Weibull(shape=0.3)",0.02,5,"hd",1.31407957893536
"Weibull(shape=0.5)",0.02,5,"hd",1.12301183911528
"Frechet(shape=1)",0.02,5,"hd",1.08464105434607
"Frechet(shape=3)",0.02,5,"hd",1.06166674378714
"Uniform(a=0, b=1)",0.03,5,"hd",1.09264272547118
"Triangular(a=0, b=2, c=1)",0.03,5,"hd",1.06669456822029
"Triangular(a=0, b=2, c=0.2)",0.03,5,"hd",1.0952158544896
"Beta(a=2, b=4)",0.03,5,"hd",1.0748660953956
"Beta(a=2, b=10)",0.03,5,"hd",1.08278942512978
"Normal(m=0, sd=1)",0.03,5,"hd",1.05017257458722
"Weibull(scale=1, shape=2)",0.03,5,"hd",1.08033436558935
"Student(df=3)",0.03,5,"hd",0.982683436644131
"Gumbel(loc=0, scale=1)",0.03,5,"hd",1.0683148010601
"Exp(rate=1)",0.03,5,"hd",1.11303302621253
"Cauchy(x0=0, gamma=1)",0.03,5,"hd",0.832235267631902
"Pareto(loc=1, shape=0.5)",0.03,5,"hd",0.476957316398827
"Pareto(loc=1, shape=2)",0.03,5,"hd",1.13452898622132
"LogNormal(mlog=0, sdlog=1)",0.03,5,"hd",1.10456300268851
"LogNormal(mlog=0, sdlog=2)",0.03,5,"hd",1.1310543425726
"LogNormal(mlog=0, sdlog=3)",0.03,5,"hd",1.45643843887331
"Weibull(shape=0.3)",0.03,5,"hd",1.47571309673827
"Weibull(shape=0.5)",0.03,5,"hd",1.26833864870398
"Frechet(shape=1)",0.03,5,"hd",1.15729961049464
"Frechet(shape=3)",0.03,5,"hd",1.0943727077856
"Uniform(a=0, b=1)",0.04,5,"hd",1.12468223659757
"Triangular(a=0, b=2, c=1)",0.04,5,"hd",1.0910095129341
"Triangular(a=0, b=2, c=0.2)",0.04,5,"hd",1.12984956888477
"Beta(a=2, b=4)",0.04,5,"hd",1.1102325683043
"Beta(a=2, b=10)",0.04,5,"hd",1.12196313386148
"Normal(m=0, sd=1)",0.04,5,"hd",1.06569717530027
"Weibull(scale=1, shape=2)",0.04,5,"hd",1.10028558378187
"Student(df=3)",0.04,5,"hd",0.961865644779107
"Gumbel(loc=0, scale=1)",0.04,5,"hd",1.08835293683059
"Exp(rate=1)",0.04,5,"hd",1.15220940028238
"Cauchy(x0=0, gamma=1)",0.04,5,"hd",0.777823749598335
"Pareto(loc=1, shape=0.5)",0.04,5,"hd",0.347150857982228
"Pareto(loc=1, shape=2)",0.04,5,"hd",1.17280847024138
"LogNormal(mlog=0, sdlog=1)",0.04,5,"hd",1.14800938420874
"LogNormal(mlog=0, sdlog=2)",0.04,5,"hd",1.3164103473194
"LogNormal(mlog=0, sdlog=3)",0.04,5,"hd",1.55549137538606
"Weibull(shape=0.3)",0.04,5,"hd",1.66115047192781
"Weibull(shape=0.5)",0.04,5,"hd",1.26033807140038
"Frechet(shape=1)",0.04,5,"hd",1.21236325310159
"Frechet(shape=3)",0.04,5,"hd",1.12604825087039
"Uniform(a=0, b=1)",0.05,5,"hd",1.15958924531858
"Triangular(a=0, b=2, c=1)",0.05,5,"hd",1.10896681649446
"Triangular(a=0, b=2, c=0.2)",0.05,5,"hd",1.17031650789826
"Beta(a=2, b=4)",0.05,5,"hd",1.1348664258254
"Beta(a=2, b=10)",0.05,5,"hd",1.15065966334219
"Normal(m=0, sd=1)",0.05,5,"hd",1.07266921054726
"Weibull(scale=1, shape=2)",0.05,5,"hd",1.1292696743068
"Student(df=3)",0.05,5,"hd",0.929541945580601
"Gumbel(loc=0, scale=1)",0.05,5,"hd",1.10650426107381
"Exp(rate=1)",0.05,5,"hd",1.19612488016557
"Cauchy(x0=0, gamma=1)",0.05,5,"hd",0.737432034137788
"Pareto(loc=1, shape=0.5)",0.05,5,"hd",0.334300560625218
"Pareto(loc=1, shape=2)",0.05,5,"hd",1.21863955729988
"LogNormal(mlog=0, sdlog=1)",0.05,5,"hd",1.19314938779229
"LogNormal(mlog=0, sdlog=2)",0.05,5,"hd",1.37788901878828
"LogNormal(mlog=0, sdlog=3)",0.05,5,"hd",1.61944575948573
"Weibull(shape=0.3)",0.05,5,"hd",1.80478883051034
"Weibull(shape=0.5)",0.05,5,"hd",1.34930761547725
"Frechet(shape=1)",0.05,5,"hd",1.2367574268293
"Frechet(shape=3)",0.05,5,"hd",1.15693446049063
"Uniform(a=0, b=1)",0.06,5,"hd",1.18343878881098
"Triangular(a=0, b=2, c=1)",0.06,5,"hd",1.11394379130699
"Triangular(a=0, b=2, c=0.2)",0.06,5,"hd",1.20642117559054
"Beta(a=2, b=4)",0.06,5,"hd",1.18166680607496
"Beta(a=2, b=10)",0.06,5,"hd",1.17349720808852
"Normal(m=0, sd=1)",0.06,5,"hd",1.07407799554658
"Weibull(scale=1, shape=2)",0.06,5,"hd",1.14422590454453
"Student(df=3)",0.06,5,"hd",0.873343577425567
"Gumbel(loc=0, scale=1)",0.06,5,"hd",1.12762822811694
"Exp(rate=1)",0.06,5,"hd",1.24569130671793
"Cauchy(x0=0, gamma=1)",0.06,5,"hd",0.689452290063011
"Pareto(loc=1, shape=0.5)",0.06,5,"hd",0.277275647994788
"Pareto(loc=1, shape=2)",0.06,5,"hd",1.27440336289396
"LogNormal(mlog=0, sdlog=1)",0.06,5,"hd",1.22920030305593
"LogNormal(mlog=0, sdlog=2)",0.06,5,"hd",1.38733640493506
"LogNormal(mlog=0, sdlog=3)",0.06,5,"hd",1.58739626811909
"Weibull(shape=0.3)",0.06,5,"hd",1.66263117932842
"Weibull(shape=0.5)",0.06,5,"hd",1.39878688995506
"Frechet(shape=1)",0.06,5,"hd",1.29674369732834
"Frechet(shape=3)",0.06,5,"hd",1.17183072865848
"Uniform(a=0, b=1)",0.07,5,"hd",1.23223551384455
"Triangular(a=0, b=2, c=1)",0.07,5,"hd",1.13987038430761
"Triangular(a=0, b=2, c=0.2)",0.07,5,"hd",1.24069788115456
"Beta(a=2, b=4)",0.07,5,"hd",1.18807195298568
"Beta(a=2, b=10)",0.07,5,"hd",1.21094439164481
"Normal(m=0, sd=1)",0.07,5,"hd",1.07013725144964
"Weibull(scale=1, shape=2)",0.07,5,"hd",1.1775354700892
"Student(df=3)",0.07,5,"hd",0.863992390383991
"Gumbel(loc=0, scale=1)",0.07,5,"hd",1.14858225979539
"Exp(rate=1)",0.07,5,"hd",1.28420765553491
"Cauchy(x0=0, gamma=1)",0.07,5,"hd",0.638144347935064
"Pareto(loc=1, shape=0.5)",0.07,5,"hd",0.190299085896914
"Pareto(loc=1, shape=2)",0.07,5,"hd",1.32263441952511
"LogNormal(mlog=0, sdlog=1)",0.07,5,"hd",1.25829603128907
"LogNormal(mlog=0, sdlog=2)",0.07,5,"hd",1.48308998659425
"LogNormal(mlog=0, sdlog=3)",0.07,5,"hd",1.44552347534185
"Weibull(shape=0.3)",0.07,5,"hd",1.77775006550787
"Weibull(shape=0.5)",0.07,5,"hd",1.50582792963901
"Frechet(shape=1)",0.07,5,"hd",1.34346293843743
"Frechet(shape=3)",0.07,5,"hd",1.19508274874064
"Uniform(a=0, b=1)",0.08,5,"hd",1.2761026896823
"Triangular(a=0, b=2, c=1)",0.08,5,"hd",1.15495523087578
"Triangular(a=0, b=2, c=0.2)",0.08,5,"hd",1.25796345980727
"Beta(a=2, b=4)",0.08,5,"hd",1.21964991468395
"Beta(a=2, b=10)",0.08,5,"hd",1.23866701932335
"Normal(m=0, sd=1)",0.08,5,"hd",1.06894273486984
"Weibull(scale=1, shape=2)",0.08,5,"hd",1.20339849949077
"Student(df=3)",0.08,5,"hd",0.776798808765651
"Gumbel(loc=0, scale=1)",0.08,5,"hd",1.16865280144048
"Exp(rate=1)",0.08,5,"hd",1.30744409068619
"Cauchy(x0=0, gamma=1)",0.08,5,"hd",0.594962357439585
"Pareto(loc=1, shape=0.5)",0.08,5,"hd",0.0890973023218514
"Pareto(loc=1, shape=2)",0.08,5,"hd",1.35527271358964
"LogNormal(mlog=0, sdlog=1)",0.08,5,"hd",1.34294853881895
"LogNormal(mlog=0, sdlog=2)",0.08,5,"hd",1.53611499713602
"LogNormal(mlog=0, sdlog=3)",0.08,5,"hd",1.40291247724159
"Weibull(shape=0.3)",0.08,5,"hd",1.9975814270528
"Weibull(shape=0.5)",0.08,5,"hd",1.58011433576745
"Frechet(shape=1)",0.08,5,"hd",1.32784646191488
"Frechet(shape=3)",0.08,5,"hd",1.23974489150149
"Uniform(a=0, b=1)",0.09,5,"hd",1.28386350665747
"Triangular(a=0, b=2, c=1)",0.09,5,"hd",1.17636363712176
"Triangular(a=0, b=2, c=0.2)",0.09,5,"hd",1.3039238114735
"Beta(a=2, b=4)",0.09,5,"hd",1.24870461004099
"Beta(a=2, b=10)",0.09,5,"hd",1.26191239928789
"Normal(m=0, sd=1)",0.09,5,"hd",1.06282575713644
"Weibull(scale=1, shape=2)",0.09,5,"hd",1.21068099967899
"Student(df=3)",0.09,5,"hd",0.761256632849587
"Gumbel(loc=0, scale=1)",0.09,5,"hd",1.19117872436416
"Exp(rate=1)",0.09,5,"hd",1.34628408494452
"Cauchy(x0=0, gamma=1)",0.09,5,"hd",0.554228205779366
"Pareto(loc=1, shape=0.5)",0.09,5,"hd",0.0527484212816997
"Pareto(loc=1, shape=2)",0.09,5,"hd",1.41046676976255
"LogNormal(mlog=0, sdlog=1)",0.09,5,"hd",1.35057364080218
"LogNormal(mlog=0, sdlog=2)",0.09,5,"hd",1.53744157519635
"LogNormal(mlog=0, sdlog=3)",0.09,5,"hd",1.56300320519676
"Weibull(shape=0.3)",0.09,5,"hd",2.03975660359628
"Weibull(shape=0.5)",0.09,5,"hd",1.60603752679186
"Frechet(shape=1)",0.09,5,"hd",1.42106399130042
"Frechet(shape=3)",0.09,5,"hd",1.26003059719069
"Uniform(a=0, b=1)",0.1,5,"hd",1.32482082556572
"Triangular(a=0, b=2, c=1)",0.1,5,"hd",1.18358303417063
"Triangular(a=0, b=2, c=0.2)",0.1,5,"hd",1.33944662405445
"Beta(a=2, b=4)",0.1,5,"hd",1.25204285960067
"Beta(a=2, b=10)",0.1,5,"hd",1.28199042284063
"Normal(m=0, sd=1)",0.1,5,"hd",1.06914401606136
"Weibull(scale=1, shape=2)",0.1,5,"hd",1.24814371895323
"Student(df=3)",0.1,5,"hd",0.740321347915617
"Gumbel(loc=0, scale=1)",0.1,5,"hd",1.19759329776419
"Exp(rate=1)",0.1,5,"hd",1.40646660440472
"Cauchy(x0=0, gamma=1)",0.1,5,"hd",0.512761124563712
"Pareto(loc=1, shape=0.5)",0.1,5,"hd",0.0317439048734847
"Pareto(loc=1, shape=2)",0.1,5,"hd",1.44849775659399
"LogNormal(mlog=0, sdlog=1)",0.1,5,"hd",1.39056897055365
"LogNormal(mlog=0, sdlog=2)",0.1,5,"hd",1.67281633498936
"LogNormal(mlog=0, sdlog=3)",0.1,5,"hd",1.30675111925668
"Weibull(shape=0.3)",0.1,5,"hd",1.63276333583955
"Weibull(shape=0.5)",0.1,5,"hd",1.6043812025203
"Frechet(shape=1)",0.1,5,"hd",1.47131592868472
"Frechet(shape=3)",0.1,5,"hd",1.30349497296054
"Uniform(a=0, b=1)",0.11,5,"hd",1.35463600157374
"Triangular(a=0, b=2, c=1)",0.11,5,"hd",1.18161355869484
"Triangular(a=0, b=2, c=0.2)",0.11,5,"hd",1.39493202255984
"Beta(a=2, b=4)",0.11,5,"hd",1.30361273516618
"Beta(a=2, b=10)",0.11,5,"hd",1.31849810468364
"Normal(m=0, sd=1)",0.11,5,"hd",1.05887102791795
"Weibull(scale=1, shape=2)",0.11,5,"hd",1.27549352163837
"Student(df=3)",0.11,5,"hd",0.675298920694696
"Gumbel(loc=0, scale=1)",0.11,5,"hd",1.21031786262245
"Exp(rate=1)",0.11,5,"hd",1.42485292056847
"Cauchy(x0=0, gamma=1)",0.11,5,"hd",0.478155156440648
"Pareto(loc=1, shape=0.5)",0.11,5,"hd",0.0424233174297456
"Pareto(loc=1, shape=2)",0.11,5,"hd",1.48693650461739
"LogNormal(mlog=0, sdlog=1)",0.11,5,"hd",1.42833047073985
"LogNormal(mlog=0, sdlog=2)",0.11,5,"hd",1.5053421731418
"LogNormal(mlog=0, sdlog=3)",0.11,5,"hd",1.03304064120209
"Weibull(shape=0.3)",0.11,5,"hd",1.71799822413963
"Weibull(shape=0.5)",0.11,5,"hd",1.65721901113316
"Frechet(shape=1)",0.11,5,"hd",1.41323366298648
"Frechet(shape=3)",0.11,5,"hd",1.29560492556942
"Uniform(a=0, b=1)",0.12,5,"hd",1.38519192118966
"Triangular(a=0, b=2, c=1)",0.12,5,"hd",1.18706962428141
"Triangular(a=0, b=2, c=0.2)",0.12,5,"hd",1.37766187832264
"Beta(a=2, b=4)",0.12,5,"hd",1.28503881305384
"Beta(a=2, b=10)",0.12,5,"hd",1.34537657718773
"Normal(m=0, sd=1)",0.12,5,"hd",1.04819185337996
"Weibull(scale=1, shape=2)",0.12,5,"hd",1.29619673483018
"Student(df=3)",0.12,5,"hd",0.663800075825393
"Gumbel(loc=0, scale=1)",0.12,5,"hd",1.24077630684827
"Exp(rate=1)",0.12,5,"hd",1.47442988461347
"Cauchy(x0=0, gamma=1)",0.12,5,"hd",0.461557590695384
"Pareto(loc=1, shape=0.5)",0.12,5,"hd",0.0130131847549854
"Pareto(loc=1, shape=2)",0.12,5,"hd",1.51568560680959
"LogNormal(mlog=0, sdlog=1)",0.12,5,"hd",1.441501972055
"LogNormal(mlog=0, sdlog=2)",0.12,5,"hd",1.57336336483583
"LogNormal(mlog=0, sdlog=3)",0.12,5,"hd",1.06672201471478
"Weibull(shape=0.3)",0.12,5,"hd",1.62402308846682
"Weibull(shape=0.5)",0.12,5,"hd",1.54811320952959
"Frechet(shape=1)",0.12,5,"hd",1.56669623292457
"Frechet(shape=3)",0.12,5,"hd",1.34048247720617
"Uniform(a=0, b=1)",0.13,5,"hd",1.40975814827547
"Triangular(a=0, b=2, c=1)",0.13,5,"hd",1.20889819936323
"Triangular(a=0, b=2, c=0.2)",0.13,5,"hd",1.43836951910994
"Beta(a=2, b=4)",0.13,5,"hd",1.33701741305723
"Beta(a=2, b=10)",0.13,5,"hd",1.34846751515954
"Normal(m=0, sd=1)",0.13,5,"hd",1.05587332219488
"Weibull(scale=1, shape=2)",0.13,5,"hd",1.30518443750224
"Student(df=3)",0.13,5,"hd",0.63787573671168
"Gumbel(loc=0, scale=1)",0.13,5,"hd",1.2234427711027
"Exp(rate=1)",0.13,5,"hd",1.50453998340897
"Cauchy(x0=0, gamma=1)",0.13,5,"hd",0.428754580258243
"Pareto(loc=1, shape=0.5)",0.13,5,"hd",0.0157367017122394
"Pareto(loc=1, shape=2)",0.13,5,"hd",1.53861741176292
"LogNormal(mlog=0, sdlog=1)",0.13,5,"hd",1.50301497150457
"LogNormal(mlog=0, sdlog=2)",0.13,5,"hd",1.49560864743663
"LogNormal(mlog=0, sdlog=3)",0.13,5,"hd",0.777694050853363
"Weibull(shape=0.3)",0.13,5,"hd",1.45369988798706
"Weibull(shape=0.5)",0.13,5,"hd",1.60906530850228
"Frechet(shape=1)",0.13,5,"hd",1.36824389985187
"Frechet(shape=3)",0.13,5,"hd",1.3857589040106
"Uniform(a=0, b=1)",0.14,5,"hd",1.44688849801703
"Triangular(a=0, b=2, c=1)",0.14,5,"hd",1.20710395193158
"Triangular(a=0, b=2, c=0.2)",0.14,5,"hd",1.49270047454392
"Beta(a=2, b=4)",0.14,5,"hd",1.36152839365018
"Beta(a=2, b=10)",0.14,5,"hd",1.38419385489307
"Normal(m=0, sd=1)",0.14,5,"hd",1.04169467215814
"Weibull(scale=1, shape=2)",0.14,5,"hd",1.31980993877692
"Student(df=3)",0.14,5,"hd",0.642316677244032
"Gumbel(loc=0, scale=1)",0.14,5,"hd",1.26381897155132
"Exp(rate=1)",0.14,5,"hd",1.56375967737818
"Cauchy(x0=0, gamma=1)",0.14,5,"hd",0.385715466647899
"Pareto(loc=1, shape=0.5)",0.14,5,"hd",0.00382020510565104
"Pareto(loc=1, shape=2)",0.14,5,"hd",1.54686039790785
"LogNormal(mlog=0, sdlog=1)",0.14,5,"hd",1.55058750896258
"LogNormal(mlog=0, sdlog=2)",0.14,5,"hd",1.52634678184018
"LogNormal(mlog=0, sdlog=3)",0.14,5,"hd",0.871547188330375
"Weibull(shape=0.3)",0.14,5,"hd",1.38967102012972
"Weibull(shape=0.5)",0.14,5,"hd",1.58324408868214
"Frechet(shape=1)",0.14,5,"hd",1.4046756744517
"Frechet(shape=3)",0.14,5,"hd",1.41819533701434
"Uniform(a=0, b=1)",0.15,5,"hd",1.46749294634142
"Triangular(a=0, b=2, c=1)",0.15,5,"hd",1.22405366569328
"Triangular(a=0, b=2, c=0.2)",0.15,5,"hd",1.48081616913444
"Beta(a=2, b=4)",0.15,5,"hd",1.38228400386519
"Beta(a=2, b=10)",0.15,5,"hd",1.44225190743572
"Normal(m=0, sd=1)",0.15,5,"hd",1.08467845361896
"Weibull(scale=1, shape=2)",0.15,5,"hd",1.33203927625558
"Student(df=3)",0.15,5,"hd",0.601946924333846
"Gumbel(loc=0, scale=1)",0.15,5,"hd",1.25231683014822
"Exp(rate=1)",0.15,5,"hd",1.506142334832
"Cauchy(x0=0, gamma=1)",0.15,5,"hd",0.353588395178662
"Pareto(loc=1, shape=0.5)",0.15,5,"hd",0.0030915745772173
"Pareto(loc=1, shape=2)",0.15,5,"hd",1.57298048692787
"LogNormal(mlog=0, sdlog=1)",0.15,5,"hd",1.54545888334511
"LogNormal(mlog=0, sdlog=2)",0.15,5,"hd",1.55467899103361
"LogNormal(mlog=0, sdlog=3)",0.15,5,"hd",0.669999231792638
"Weibull(shape=0.3)",0.15,5,"hd",1.20853878902511
"Weibull(shape=0.5)",0.15,5,"hd",1.63547916579833
"Frechet(shape=1)",0.15,5,"hd",1.39127748485722
"Frechet(shape=3)",0.15,5,"hd",1.43251124148743
"Uniform(a=0, b=1)",0.16,5,"hd",1.48993758152635
"Triangular(a=0, b=2, c=1)",0.16,5,"hd",1.25452716950174
"Triangular(a=0, b=2, c=0.2)",0.16,5,"hd",1.53727846485598
"Beta(a=2, b=4)",0.16,5,"hd",1.43285592413332
"Beta(a=2, b=10)",0.16,5,"hd",1.44830673442581
"Normal(m=0, sd=1)",0.16,5,"hd",1.09024675384436
"Weibull(scale=1, shape=2)",0.16,5,"hd",1.37328500364207
"Student(df=3)",0.16,5,"hd",0.570423172161354
"Gumbel(loc=0, scale=1)",0.16,5,"hd",1.27007571200835
"Exp(rate=1)",0.16,5,"hd",1.6039009541699
"Cauchy(x0=0, gamma=1)",0.16,5,"hd",0.272679911963636
"Pareto(loc=1, shape=0.5)",0.16,5,"hd",0.00181375669536364
"Pareto(loc=1, shape=2)",0.16,5,"hd",1.53896163898032
"LogNormal(mlog=0, sdlog=1)",0.16,5,"hd",1.5508871149917
"LogNormal(mlog=0, sdlog=2)",0.16,5,"hd",1.36200902954752
"LogNormal(mlog=0, sdlog=3)",0.16,5,"hd",0.737430801373593
"Weibull(shape=0.3)",0.16,5,"hd",1.16075399295571
"Weibull(shape=0.5)",0.16,5,"hd",1.51970742431084
"Frechet(shape=1)",0.16,5,"hd",1.40829033866875
"Frechet(shape=3)",0.16,5,"hd",1.44931693231926
"Uniform(a=0, b=1)",0.17,5,"hd",1.53675648838532
"Triangular(a=0, b=2, c=1)",0.17,5,"hd",1.2451260607342
"Triangular(a=0, b=2, c=0.2)",0.17,5,"hd",1.5736877660661
"Beta(a=2, b=4)",0.17,5,"hd",1.44686978275941
"Beta(a=2, b=10)",0.17,5,"hd",1.46301051714116
"Normal(m=0, sd=1)",0.17,5,"hd",1.08303266901143
"Weibull(scale=1, shape=2)",0.17,5,"hd",1.39068262363578
"Student(df=3)",0.17,5,"hd",0.551700786185263
"Gumbel(loc=0, scale=1)",0.17,5,"hd",1.29534203742975
"Exp(rate=1)",0.17,5,"hd",1.59359237164225
"Cauchy(x0=0, gamma=1)",0.17,5,"hd",0.239395124753758
"Pareto(loc=1, shape=0.5)",0.17,5,"hd",0.00363475064500412
"Pareto(loc=1, shape=2)",0.17,5,"hd",1.51488469609245
"LogNormal(mlog=0, sdlog=1)",0.17,5,"hd",1.52647495302499
"LogNormal(mlog=0, sdlog=2)",0.17,5,"hd",1.47042789367569
"LogNormal(mlog=0, sdlog=3)",0.17,5,"hd",0.557550949098059
"Weibull(shape=0.3)",0.17,5,"hd",1.07788245455817
"Weibull(shape=0.5)",0.17,5,"hd",1.4671016098062
"Frechet(shape=1)",0.17,5,"hd",1.32233043287108
"Frechet(shape=3)",0.17,5,"hd",1.46398732830546
"Uniform(a=0, b=1)",0.18,5,"hd",1.57725751727402
"Triangular(a=0, b=2, c=1)",0.18,5,"hd",1.27344257950991
"Triangular(a=0, b=2, c=0.2)",0.18,5,"hd",1.5481977577758
"Beta(a=2, b=4)",0.18,5,"hd",1.47212176637298
"Beta(a=2, b=10)",0.18,5,"hd",1.5243067127409
"Normal(m=0, sd=1)",0.18,5,"hd",1.08586452260935
"Weibull(scale=1, shape=2)",0.18,5,"hd",1.44369288889884
"Student(df=3)",0.18,5,"hd",0.573165639101113
"Gumbel(loc=0, scale=1)",0.18,5,"hd",1.33748207840097
"Exp(rate=1)",0.18,5,"hd",1.63599384581611
"Cauchy(x0=0, gamma=1)",0.18,5,"hd",0.210813747724003
"Pareto(loc=1, shape=0.5)",0.18,5,"hd",0.00120299840668793
"Pareto(loc=1, shape=2)",0.18,5,"hd",1.58817229855568
"LogNormal(mlog=0, sdlog=1)",0.18,5,"hd",1.52728938443732
"LogNormal(mlog=0, sdlog=2)",0.18,5,"hd",1.31168247526756
"LogNormal(mlog=0, sdlog=3)",0.18,5,"hd",0.481373766000597
"Weibull(shape=0.3)",0.18,5,"hd",0.914150934006262
"Weibull(shape=0.5)",0.18,5,"hd",1.48463547652602
"Frechet(shape=1)",0.18,5,"hd",1.26189672708357
"Frechet(shape=3)",0.18,5,"hd",1.46263749501941
"Uniform(a=0, b=1)",0.19,5,"hd",1.6074495447993
"Triangular(a=0, b=2, c=1)",0.19,5,"hd",1.28690613618752
"Triangular(a=0, b=2, c=0.2)",0.19,5,"hd",1.60200167172869
"Beta(a=2, b=4)",0.19,5,"hd",1.48306447009379
"Beta(a=2, b=10)",0.19,5,"hd",1.53340912461802
"Normal(m=0, sd=1)",0.19,5,"hd",1.08880353943046
"Weibull(scale=1, shape=2)",0.19,5,"hd",1.45471313084124
"Student(df=3)",0.19,5,"hd",0.521821429340482
"Gumbel(loc=0, scale=1)",0.19,5,"hd",1.35366467194209
"Exp(rate=1)",0.19,5,"hd",1.63762113648493
"Cauchy(x0=0, gamma=1)",0.19,5,"hd",0.179509149351362
"Pareto(loc=1, shape=0.5)",0.19,5,"hd",0.000668955682586414
"Pareto(loc=1, shape=2)",0.19,5,"hd",1.52173076432517
"LogNormal(mlog=0, sdlog=1)",0.19,5,"hd",1.56336400819686
"LogNormal(mlog=0, sdlog=2)",0.19,5,"hd",1.24410312598
"LogNormal(mlog=0, sdlog=3)",0.19,5,"hd",0.40683005537292
"Weibull(shape=0.3)",0.19,5,"hd",0.781093958686803
"Weibull(shape=0.5)",0.19,5,"hd",1.46674524058184
"Frechet(shape=1)",0.19,5,"hd",1.23322984205098
"Frechet(shape=3)",0.19,5,"hd",1.45615425886853
"Uniform(a=0, b=1)",0.2,5,"hd",1.63059308434316
"Triangular(a=0, b=2, c=1)",0.2,5,"hd",1.33748362273755
"Triangular(a=0, b=2, c=0.2)",0.2,5,"hd",1.63258124476622
"Beta(a=2, b=4)",0.2,5,"hd",1.55065231269251
"Beta(a=2, b=10)",0.2,5,"hd",1.5633509850048
"Normal(m=0, sd=1)",0.2,5,"hd",1.12635489693032
"Weibull(scale=1, shape=2)",0.2,5,"hd",1.50270704628503
"Student(df=3)",0.2,5,"hd",0.531108263159074
"Gumbel(loc=0, scale=1)",0.2,5,"hd",1.38470495665492
"Exp(rate=1)",0.2,5,"hd",1.6087451333324
"Cauchy(x0=0, gamma=1)",0.2,5,"hd",0.125876959180377
"Pareto(loc=1, shape=0.5)",0.2,5,"hd",0.000649858742061961
"Pareto(loc=1, shape=2)",0.2,5,"hd",1.48312054371603
"LogNormal(mlog=0, sdlog=1)",0.2,5,"hd",1.56916136347397
"LogNormal(mlog=0, sdlog=2)",0.2,5,"hd",1.23100604115643
"LogNormal(mlog=0, sdlog=3)",0.2,5,"hd",0.341383563145208
"Weibull(shape=0.3)",0.2,5,"hd",0.773525717701329
"Weibull(shape=0.5)",0.2,5,"hd",1.37199491366676
"Frechet(shape=1)",0.2,5,"hd",1.21307757747673
"Frechet(shape=3)",0.2,5,"hd",1.53998544199432
"Uniform(a=0, b=1)",0.21,5,"hd",1.72700245294666
"Triangular(a=0, b=2, c=1)",0.21,5,"hd",1.34066665103505
"Triangular(a=0, b=2, c=0.2)",0.21,5,"hd",1.65725344709016
"Beta(a=2, b=4)",0.21,5,"hd",1.57876005098719
"Beta(a=2, b=10)",0.21,5,"hd",1.57205208456497
"Normal(m=0, sd=1)",0.21,5,"hd",1.15722901892923
"Weibull(scale=1, shape=2)",0.21,5,"hd",1.48363677973623
"Student(df=3)",0.21,5,"hd",0.546532736066093
"Gumbel(loc=0, scale=1)",0.21,5,"hd",1.36608882802674
"Exp(rate=1)",0.21,5,"hd",1.60736341808232
"Cauchy(x0=0, gamma=1)",0.21,5,"hd",0.105859036689638
"Pareto(loc=1, shape=0.5)",0.21,5,"hd",0.000277315811196826
"Pareto(loc=1, shape=2)",0.21,5,"hd",1.42019856449309
"LogNormal(mlog=0, sdlog=1)",0.21,5,"hd",1.57361190996888
"LogNormal(mlog=0, sdlog=2)",0.21,5,"hd",1.11218521705177
"LogNormal(mlog=0, sdlog=3)",0.21,5,"hd",0.285077911276587
"Weibull(shape=0.3)",0.21,5,"hd",0.679102815941782
"Weibull(shape=0.5)",0.21,5,"hd",1.33405453343962
"Frechet(shape=1)",0.21,5,"hd",1.03568770451039
"Frechet(shape=3)",0.21,5,"hd",1.53191366064331
"Uniform(a=0, b=1)",0.22,5,"hd",1.74951163942456
"Triangular(a=0, b=2, c=1)",0.22,5,"hd",1.35868083674712
"Triangular(a=0, b=2, c=0.2)",0.22,5,"hd",1.63958464311726
"Beta(a=2, b=4)",0.22,5,"hd",1.56423767527878
"Beta(a=2, b=10)",0.22,5,"hd",1.58002307894908
"Normal(m=0, sd=1)",0.22,5,"hd",1.16568413580828
"Weibull(scale=1, shape=2)",0.22,5,"hd",1.49995948315173
"Student(df=3)",0.22,5,"hd",0.566961086671299
"Gumbel(loc=0, scale=1)",0.22,5,"hd",1.41605482134715
"Exp(rate=1)",0.22,5,"hd",1.63814871953081
"Cauchy(x0=0, gamma=1)",0.22,5,"hd",0.0861348966931087
"Pareto(loc=1, shape=0.5)",0.22,5,"hd",0.000800516810512027
"Pareto(loc=1, shape=2)",0.22,5,"hd",1.44807598188666
"LogNormal(mlog=0, sdlog=1)",0.22,5,"hd",1.55290637230054
"LogNormal(mlog=0, sdlog=2)",0.22,5,"hd",1.06822614409889
"LogNormal(mlog=0, sdlog=3)",0.22,5,"hd",0.228970313854361
"Weibull(shape=0.3)",0.22,5,"hd",0.664243298856915
"Weibull(shape=0.5)",0.22,5,"hd",1.23811962651301
"Frechet(shape=1)",0.22,5,"hd",0.848776236722432
"Frechet(shape=3)",0.22,5,"hd",1.48396251719009
"Uniform(a=0, b=1)",0.23,5,"hd",1.7530348093822
"Triangular(a=0, b=2, c=1)",0.23,5,"hd",1.40270347418217
"Triangular(a=0, b=2, c=0.2)",0.23,5,"hd",1.67934941890492
"Beta(a=2, b=4)",0.23,5,"hd",1.6011826918283
"Beta(a=2, b=10)",0.23,5,"hd",1.63153281587772
"Normal(m=0, sd=1)",0.23,5,"hd",1.21413849990326
"Weibull(scale=1, shape=2)",0.23,5,"hd",1.54501878562813
"Student(df=3)",0.23,5,"hd",0.554667834628869
"Gumbel(loc=0, scale=1)",0.23,5,"hd",1.47381822229197
"Exp(rate=1)",0.23,5,"hd",1.58650308124742
"Cauchy(x0=0, gamma=1)",0.23,5,"hd",0.0502601628631828
"Pareto(loc=1, shape=0.5)",0.23,5,"hd",0.000455425171109973
"Pareto(loc=1, shape=2)",0.23,5,"hd",1.41929393256175
"LogNormal(mlog=0, sdlog=1)",0.23,5,"hd",1.52289774033615
"LogNormal(mlog=0, sdlog=2)",0.23,5,"hd",0.92134551704995
"LogNormal(mlog=0, sdlog=3)",0.23,5,"hd",0.233962802840039
"Weibull(shape=0.3)",0.23,5,"hd",0.559690824560825
"Weibull(shape=0.5)",0.23,5,"hd",1.22705773152504
"Frechet(shape=1)",0.23,5,"hd",0.954331834724423
"Frechet(shape=3)",0.23,5,"hd",1.50708769204428
"Uniform(a=0, b=1)",0.24,5,"hd",1.75853246548425
"Triangular(a=0, b=2, c=1)",0.24,5,"hd",1.4326403308545
"Triangular(a=0, b=2, c=0.2)",0.24,5,"hd",1.65875030319875
"Beta(a=2, b=4)",0.24,5,"hd",1.66501268063023
"Beta(a=2, b=10)",0.24,5,"hd",1.64581561941652
"Normal(m=0, sd=1)",0.24,5,"hd",1.24913705731489
"Weibull(scale=1, shape=2)",0.24,5,"hd",1.5942714477854
"Student(df=3)",0.24,5,"hd",0.592044534813399
"Gumbel(loc=0, scale=1)",0.24,5,"hd",1.46333473738079
"Exp(rate=1)",0.24,5,"hd",1.64165361810689
"Cauchy(x0=0, gamma=1)",0.24,5,"hd",0.0169649429531026
"Pareto(loc=1, shape=0.5)",0.24,5,"hd",0.000362490238600947
"Pareto(loc=1, shape=2)",0.24,5,"hd",1.41882700629342
"LogNormal(mlog=0, sdlog=1)",0.24,5,"hd",1.50848274894697
"LogNormal(mlog=0, sdlog=2)",0.24,5,"hd",0.930524766395987
"LogNormal(mlog=0, sdlog=3)",0.24,5,"hd",0.191424995085664
"Weibull(shape=0.3)",0.24,5,"hd",0.542427337297767
"Weibull(shape=0.5)",0.24,5,"hd",1.16432495155161
"Frechet(shape=1)",0.24,5,"hd",0.751966200760819
"Frechet(shape=3)",0.24,5,"hd",1.524485812061
"Uniform(a=0, b=1)",0.25,5,"hd",1.80868883604073
"Triangular(a=0, b=2, c=1)",0.25,5,"hd",1.48154552612583
"Triangular(a=0, b=2, c=0.2)",0.25,5,"hd",1.73720869949001
"Beta(a=2, b=4)",0.25,5,"hd",1.70284712866128
"Beta(a=2, b=10)",0.25,5,"hd",1.67034092884642
"Normal(m=0, sd=1)",0.25,5,"hd",1.32506382896323
"Weibull(scale=1, shape=2)",0.25,5,"hd",1.61347504461856
"Student(df=3)",0.25,5,"hd",0.614474563336014
"Gumbel(loc=0, scale=1)",0.25,5,"hd",1.50099058216432
"Exp(rate=1)",0.25,5,"hd",1.64771580572871
"Cauchy(x0=0, gamma=1)",0.25,5,"hd",0.00828249746127317
"Pareto(loc=1, shape=0.5)",0.25,5,"hd",0.000126839534847005
"Pareto(loc=1, shape=2)",0.25,5,"hd",1.36372448401214
"LogNormal(mlog=0, sdlog=1)",0.25,5,"hd",1.46604075808946
"LogNormal(mlog=0, sdlog=2)",0.25,5,"hd",0.841427197175978
"LogNormal(mlog=0, sdlog=3)",0.25,5,"hd",0.132637844704413
"Weibull(shape=0.3)",0.25,5,"hd",0.481850857613967
"Weibull(shape=0.5)",0.25,5,"hd",1.09711719743167
"Frechet(shape=1)",0.25,5,"hd",0.820259893987162
"Frechet(shape=3)",0.25,5,"hd",1.55545249137269
"Uniform(a=0, b=1)",0.26,5,"hd",1.75917548599288
"Triangular(a=0, b=2, c=1)",0.26,5,"hd",1.43591792929077
"Triangular(a=0, b=2, c=0.2)",0.26,5,"hd",1.6894978430435
"Beta(a=2, b=4)",0.26,5,"hd",1.64577294163678
"Beta(a=2, b=10)",0.26,5,"hd",1.56732630354749
"Normal(m=0, sd=1)",0.26,5,"hd",1.28009515491967
"Weibull(scale=1, shape=2)",0.26,5,"hd",1.57830809520537
"Student(df=3)",0.26,5,"hd",0.643912595018867
"Gumbel(loc=0, scale=1)",0.26,5,"hd",1.4790216282518
"Exp(rate=1)",0.26,5,"hd",1.54258882647089
"Cauchy(x0=0, gamma=1)",0.26,5,"hd",0.00973335460088622
"Pareto(loc=1, shape=0.5)",0.26,5,"hd",0.000183892848259127
"Pareto(loc=1, shape=2)",0.26,5,"hd",1.28338349390401
"LogNormal(mlog=0, sdlog=1)",0.26,5,"hd",1.44505702980021
"LogNormal(mlog=0, sdlog=2)",0.26,5,"hd",0.79258280088881
"LogNormal(mlog=0, sdlog=3)",0.26,5,"hd",0.162578871656842
"Weibull(shape=0.3)",0.26,5,"hd",0.431596225449313
"Weibull(shape=0.5)",0.26,5,"hd",1.057344968334
"Frechet(shape=1)",0.26,5,"hd",0.621682373227948
"Frechet(shape=3)",0.26,5,"hd",1.49537947015391
"Uniform(a=0, b=1)",0.27,5,"hd",1.73352643683814
"Triangular(a=0, b=2, c=1)",0.27,5,"hd",1.40330475724661
"Triangular(a=0, b=2, c=0.2)",0.27,5,"hd",1.67321103112279
"Beta(a=2, b=4)",0.27,5,"hd",1.61154454821743
"Beta(a=2, b=10)",0.27,5,"hd",1.58739247324903
"Normal(m=0, sd=1)",0.27,5,"hd",1.25591326635362
"Weibull(scale=1, shape=2)",0.27,5,"hd",1.56403296257963
"Student(df=3)",0.27,5,"hd",0.67444480114806
"Gumbel(loc=0, scale=1)",0.27,5,"hd",1.44494399739641
"Exp(rate=1)",0.27,5,"hd",1.53888534591744
"Cauchy(x0=0, gamma=1)",0.27,5,"hd",0.0118191905442786
"Pareto(loc=1, shape=0.5)",0.27,5,"hd",0.00011279286070973
"Pareto(loc=1, shape=2)",0.27,5,"hd",1.26130742951141
"LogNormal(mlog=0, sdlog=1)",0.27,5,"hd",1.38732177587084
"LogNormal(mlog=0, sdlog=2)",0.27,5,"hd",0.71424370746151
"LogNormal(mlog=0, sdlog=3)",0.27,5,"hd",0.150389728253122
"Weibull(shape=0.3)",0.27,5,"hd",0.455758278019505
"Weibull(shape=0.5)",0.27,5,"hd",1.084694257864
"Frechet(shape=1)",0.27,5,"hd",0.568760491802511
"Frechet(shape=3)",0.27,5,"hd",1.4310917919107
"Uniform(a=0, b=1)",0.28,5,"hd",1.68535660688849
"Triangular(a=0, b=2, c=1)",0.28,5,"hd",1.36823427244405
"Triangular(a=0, b=2, c=0.2)",0.28,5,"hd",1.58512007946836
"Beta(a=2, b=4)",0.28,5,"hd",1.52761755543639
"Beta(a=2, b=10)",0.28,5,"hd",1.55472809432077
"Normal(m=0, sd=1)",0.28,5,"hd",1.25028496846641
"Weibull(scale=1, shape=2)",0.28,5,"hd",1.49778178089086
"Student(df=3)",0.28,5,"hd",0.662343315690641
"Gumbel(loc=0, scale=1)",0.28,5,"hd",1.40078366890975
"Exp(rate=1)",0.28,5,"hd",1.45514386825321
"Cauchy(x0=0, gamma=1)",0.28,5,"hd",0.0151498544053199
"Pareto(loc=1, shape=0.5)",0.28,5,"hd",0.000102050233270207
"Pareto(loc=1, shape=2)",0.28,5,"hd",1.18097836131487
"LogNormal(mlog=0, sdlog=1)",0.28,5,"hd",1.34687735256315
"LogNormal(mlog=0, sdlog=2)",0.28,5,"hd",0.694399150721377
"LogNormal(mlog=0, sdlog=3)",0.28,5,"hd",0.119233492883825
"Weibull(shape=0.3)",0.28,5,"hd",0.429971378544709
"Weibull(shape=0.5)",0.28,5,"hd",1.0361870801127
"Frechet(shape=1)",0.28,5,"hd",0.561763205986565
"Frechet(shape=3)",0.28,5,"hd",1.35585793817445
"Uniform(a=0, b=1)",0.29,5,"hd",1.62299349464976
"Triangular(a=0, b=2, c=1)",0.29,5,"hd",1.32772016301687
"Triangular(a=0, b=2, c=0.2)",0.29,5,"hd",1.51774959171673
"Beta(a=2, b=4)",0.29,5,"hd",1.48510587765445
"Beta(a=2, b=10)",0.29,5,"hd",1.48632286799847
"Normal(m=0, sd=1)",0.29,5,"hd",1.19103705165583
"Weibull(scale=1, shape=2)",0.29,5,"hd",1.47103734412646
"Student(df=3)",0.29,5,"hd",0.675894174929276
"Gumbel(loc=0, scale=1)",0.29,5,"hd",1.38992974656778
"Exp(rate=1)",0.29,5,"hd",1.42568999178055
"Cauchy(x0=0, gamma=1)",0.29,5,"hd",0.0129594701900172
"Pareto(loc=1, shape=0.5)",0.29,5,"hd",0.000117793187031197
"Pareto(loc=1, shape=2)",0.29,5,"hd",1.09217549611961
"LogNormal(mlog=0, sdlog=1)",0.29,5,"hd",1.27296683862453
"LogNormal(mlog=0, sdlog=2)",0.29,5,"hd",0.704649869401987
"LogNormal(mlog=0, sdlog=3)",0.29,5,"hd",0.0860246848409599
"Weibull(shape=0.3)",0.29,5,"hd",0.398849458898205
"Weibull(shape=0.5)",0.29,5,"hd",1.0401073925363
"Frechet(shape=1)",0.29,5,"hd",0.58323994699076
"Frechet(shape=3)",0.29,5,"hd",1.31274619857023
"Uniform(a=0, b=1)",0.3,5,"hd",1.57355555696326
"Triangular(a=0, b=2, c=1)",0.3,5,"hd",1.31511077621717
"Triangular(a=0, b=2, c=0.2)",0.3,5,"hd",1.47706837020695
"Beta(a=2, b=4)",0.3,5,"hd",1.46261263383218
"Beta(a=2, b=10)",0.3,5,"hd",1.46192803423478
"Normal(m=0, sd=1)",0.3,5,"hd",1.22048342728952
"Weibull(scale=1, shape=2)",0.3,5,"hd",1.41131962511542
"Student(df=3)",0.3,5,"hd",0.669665154805787
"Gumbel(loc=0, scale=1)",0.3,5,"hd",1.36297085215934
"Exp(rate=1)",0.3,5,"hd",1.38714942543426
"Cauchy(x0=0, gamma=1)",0.3,5,"hd",0.015841365293501
"Pareto(loc=1, shape=0.5)",0.3,5,"hd",0.000217588775117735
"Pareto(loc=1, shape=2)",0.3,5,"hd",1.11275521988548
"LogNormal(mlog=0, sdlog=1)",0.3,5,"hd",1.26650364197679
"LogNormal(mlog=0, sdlog=2)",0.3,5,"hd",0.605975139535378
"LogNormal(mlog=0, sdlog=3)",0.3,5,"hd",0.112616469682124
"Weibull(shape=0.3)",0.3,5,"hd",0.443132423988194
"Weibull(shape=0.5)",0.3,5,"hd",0.988146814220524
"Frechet(shape=1)",0.3,5,"hd",0.490870605388796
"Frechet(shape=3)",0.3,5,"hd",1.32298706381518
"Uniform(a=0, b=1)",0.31,5,"hd",1.53097506693514
"Triangular(a=0, b=2, c=1)",0.31,5,"hd",1.31022774039939
"Triangular(a=0, b=2, c=0.2)",0.31,5,"hd",1.46082851139711
"Beta(a=2, b=4)",0.31,5,"hd",1.43646490492175
"Beta(a=2, b=10)",0.31,5,"hd",1.4394082633474
"Normal(m=0, sd=1)",0.31,5,"hd",1.19923090105905
"Weibull(scale=1, shape=2)",0.31,5,"hd",1.42210382479637
"Student(df=3)",0.31,5,"hd",0.658820793224232
"Gumbel(loc=0, scale=1)",0.31,5,"hd",1.33913250700115
"Exp(rate=1)",0.31,5,"hd",1.3695041757442
"Cauchy(x0=0, gamma=1)",0.31,5,"hd",0.019077362537211
"Pareto(loc=1, shape=0.5)",0.31,5,"hd",8.2433275242234e-05
"Pareto(loc=1, shape=2)",0.31,5,"hd",1.07944835104848
"LogNormal(mlog=0, sdlog=1)",0.31,5,"hd",1.23688546031725
"LogNormal(mlog=0, sdlog=2)",0.31,5,"hd",0.633047896591075
"LogNormal(mlog=0, sdlog=3)",0.31,5,"hd",0.120844418514794
"Weibull(shape=0.3)",0.31,5,"hd",0.395751968320963
"Weibull(shape=0.5)",0.31,5,"hd",0.958379631886694
"Frechet(shape=1)",0.31,5,"hd",0.346014420591057
"Frechet(shape=3)",0.31,5,"hd",1.28920162545118
"Uniform(a=0, b=1)",0.32,5,"hd",1.48090943451207
"Triangular(a=0, b=2, c=1)",0.32,5,"hd",1.25723629987374
"Triangular(a=0, b=2, c=0.2)",0.32,5,"hd",1.45452916541217
"Beta(a=2, b=4)",0.32,5,"hd",1.38926658493259
"Beta(a=2, b=10)",0.32,5,"hd",1.37797362819091
"Normal(m=0, sd=1)",0.32,5,"hd",1.17482717035898
"Weibull(scale=1, shape=2)",0.32,5,"hd",1.37637503048168
"Student(df=3)",0.32,5,"hd",0.683788318464036
"Gumbel(loc=0, scale=1)",0.32,5,"hd",1.30358445872081
"Exp(rate=1)",0.32,5,"hd",1.31750639347777
"Cauchy(x0=0, gamma=1)",0.32,5,"hd",0.0191162075022343
"Pareto(loc=1, shape=0.5)",0.32,5,"hd",7.56479781822452e-05
"Pareto(loc=1, shape=2)",0.32,5,"hd",1.01683461916954
"LogNormal(mlog=0, sdlog=1)",0.32,5,"hd",1.17919586611715
"LogNormal(mlog=0, sdlog=2)",0.32,5,"hd",0.619997065693181
"LogNormal(mlog=0, sdlog=3)",0.32,5,"hd",0.0874601934402436
"Weibull(shape=0.3)",0.32,5,"hd",0.368702697553782
"Weibull(shape=0.5)",0.32,5,"hd",0.920077743482675
"Frechet(shape=1)",0.32,5,"hd",0.420988979888412
"Frechet(shape=3)",0.32,5,"hd",1.25993144543374
"Uniform(a=0, b=1)",0.33,5,"hd",1.45155817016548
"Triangular(a=0, b=2, c=1)",0.33,5,"hd",1.26449637251766
"Triangular(a=0, b=2, c=0.2)",0.33,5,"hd",1.42182096707015
"Beta(a=2, b=4)",0.33,5,"hd",1.35913027586538
"Beta(a=2, b=10)",0.33,5,"hd",1.35251558905544
"Normal(m=0, sd=1)",0.33,5,"hd",1.18137076040883
"Weibull(scale=1, shape=2)",0.33,5,"hd",1.35170033722864
"Student(df=3)",0.33,5,"hd",0.725172954384052
"Gumbel(loc=0, scale=1)",0.33,5,"hd",1.29575518055959
"Exp(rate=1)",0.33,5,"hd",1.30448438853462
"Cauchy(x0=0, gamma=1)",0.33,5,"hd",0.0118813271317853
"Pareto(loc=1, shape=0.5)",0.33,5,"hd",8.39379272862105e-05
"Pareto(loc=1, shape=2)",0.33,5,"hd",1.00767708978432
"LogNormal(mlog=0, sdlog=1)",0.33,5,"hd",1.19685433639803
"LogNormal(mlog=0, sdlog=2)",0.33,5,"hd",0.633991680310394
"LogNormal(mlog=0, sdlog=3)",0.33,5,"hd",0.0938742708816595
"Weibull(shape=0.3)",0.33,5,"hd",0.408795049413182
"Weibull(shape=0.5)",0.33,5,"hd",0.884032869587763
"Frechet(shape=1)",0.33,5,"hd",0.323821721393041
"Frechet(shape=3)",0.33,5,"hd",1.22585008078616
"Uniform(a=0, b=1)",0.34,5,"hd",1.43461469364074
"Triangular(a=0, b=2, c=1)",0.34,5,"hd",1.25066950299999
"Triangular(a=0, b=2, c=0.2)",0.34,5,"hd",1.39393887394923
"Beta(a=2, b=4)",0.34,5,"hd",1.37263902111735
"Beta(a=2, b=10)",0.34,5,"hd",1.32983545160631
"Normal(m=0, sd=1)",0.34,5,"hd",1.16868283384684
"Weibull(scale=1, shape=2)",0.34,5,"hd",1.31728441429729
"Student(df=3)",0.34,5,"hd",0.719499427345525
"Gumbel(loc=0, scale=1)",0.34,5,"hd",1.27329049774631
"Exp(rate=1)",0.34,5,"hd",1.28980956823517
"Cauchy(x0=0, gamma=1)",0.34,5,"hd",0.0172113040509572
"Pareto(loc=1, shape=0.5)",0.34,5,"hd",7.81042289167591e-05
"Pareto(loc=1, shape=2)",0.34,5,"hd",0.965254504769687
"LogNormal(mlog=0, sdlog=1)",0.34,5,"hd",1.12513320086727
"LogNormal(mlog=0, sdlog=2)",0.34,5,"hd",0.576102737889454
"LogNormal(mlog=0, sdlog=3)",0.34,5,"hd",0.0819492215635255
"Weibull(shape=0.3)",0.34,5,"hd",0.389797909078627
"Weibull(shape=0.5)",0.34,5,"hd",0.88890899242507
"Frechet(shape=1)",0.34,5,"hd",0.30643417529203
"Frechet(shape=3)",0.34,5,"hd",1.19530391932747
"Uniform(a=0, b=1)",0.35,5,"hd",1.40901636886182
"Triangular(a=0, b=2, c=1)",0.35,5,"hd",1.23963367205599
"Triangular(a=0, b=2, c=0.2)",0.35,5,"hd",1.3804573978124
"Beta(a=2, b=4)",0.35,5,"hd",1.33228547156039
"Beta(a=2, b=10)",0.35,5,"hd",1.32154653616306
"Normal(m=0, sd=1)",0.35,5,"hd",1.15574703676931
"Weibull(scale=1, shape=2)",0.35,5,"hd",1.29983437937484
"Student(df=3)",0.35,5,"hd",0.763499408810569
"Gumbel(loc=0, scale=1)",0.35,5,"hd",1.25783481871166
"Exp(rate=1)",0.35,5,"hd",1.24130811745256
"Cauchy(x0=0, gamma=1)",0.35,5,"hd",0.0250984763296598
"Pareto(loc=1, shape=0.5)",0.35,5,"hd",1.93732222343847e-05
"Pareto(loc=1, shape=2)",0.35,5,"hd",0.922080896755391
"LogNormal(mlog=0, sdlog=1)",0.35,5,"hd",1.11813051991062
"LogNormal(mlog=0, sdlog=2)",0.35,5,"hd",0.55339391000424
"LogNormal(mlog=0, sdlog=3)",0.35,5,"hd",0.0740372607028992
"Weibull(shape=0.3)",0.35,5,"hd",0.40794724771076
"Weibull(shape=0.5)",0.35,5,"hd",0.829964399599787
"Frechet(shape=1)",0.35,5,"hd",0.29344441992634
"Frechet(shape=3)",0.35,5,"hd",1.17852777362423
"Uniform(a=0, b=1)",0.36,5,"hd",1.40670172182628
"Triangular(a=0, b=2, c=1)",0.36,5,"hd",1.19315247105201
"Triangular(a=0, b=2, c=0.2)",0.36,5,"hd",1.34559815192778
"Beta(a=2, b=4)",0.36,5,"hd",1.32863881231542
"Beta(a=2, b=10)",0.36,5,"hd",1.30009876321615
"Normal(m=0, sd=1)",0.36,5,"hd",1.16526705153295
"Weibull(scale=1, shape=2)",0.36,5,"hd",1.28160376452822
"Student(df=3)",0.36,5,"hd",0.794064344930607
"Gumbel(loc=0, scale=1)",0.36,5,"hd",1.24220912993696
"Exp(rate=1)",0.36,5,"hd",1.23245882789524
"Cauchy(x0=0, gamma=1)",0.36,5,"hd",0.0181493994015186
"Pareto(loc=1, shape=0.5)",0.36,5,"hd",1.83437104418712e-05
"Pareto(loc=1, shape=2)",0.36,5,"hd",0.92346945279404
"LogNormal(mlog=0, sdlog=1)",0.36,5,"hd",1.07161148692179
"LogNormal(mlog=0, sdlog=2)",0.36,5,"hd",0.477511155013944
"LogNormal(mlog=0, sdlog=3)",0.36,5,"hd",0.0611953505500984
"Weibull(shape=0.3)",0.36,5,"hd",0.339717680815273
"Weibull(shape=0.5)",0.36,5,"hd",0.803324825615919
"Frechet(shape=1)",0.36,5,"hd",0.270277299243946
"Frechet(shape=3)",0.36,5,"hd",1.153733946152
"Uniform(a=0, b=1)",0.37,5,"hd",1.38394320039153
"Triangular(a=0, b=2, c=1)",0.37,5,"hd",1.21967798636821
"Triangular(a=0, b=2, c=0.2)",0.37,5,"hd",1.33348587073369
"Beta(a=2, b=4)",0.37,5,"hd",1.29724702035403
"Beta(a=2, b=10)",0.37,5,"hd",1.2706433685236
"Normal(m=0, sd=1)",0.37,5,"hd",1.1482051731111
"Weibull(scale=1, shape=2)",0.37,5,"hd",1.2665935044437
"Student(df=3)",0.37,5,"hd",0.825522874393791
"Gumbel(loc=0, scale=1)",0.37,5,"hd",1.22972746974594
"Exp(rate=1)",0.37,5,"hd",1.16332423855177
"Cauchy(x0=0, gamma=1)",0.37,5,"hd",0.0313858600903279
"Pareto(loc=1, shape=0.5)",0.37,5,"hd",3.75713628132116e-05
"Pareto(loc=1, shape=2)",0.37,5,"hd",0.870623975644571
"LogNormal(mlog=0, sdlog=1)",0.37,5,"hd",1.0281842114184
"LogNormal(mlog=0, sdlog=2)",0.37,5,"hd",0.489213746479713
"LogNormal(mlog=0, sdlog=3)",0.37,5,"hd",0.0608156176776751
"Weibull(shape=0.3)",0.37,5,"hd",0.321153720716843
"Weibull(shape=0.5)",0.37,5,"hd",0.765723572158816
"Frechet(shape=1)",0.37,5,"hd",0.216208569924269
"Frechet(shape=3)",0.37,5,"hd",1.12601016888609
"Uniform(a=0, b=1)",0.38,5,"hd",1.36919396147329
"Triangular(a=0, b=2, c=1)",0.38,5,"hd",1.21654125644306
"Triangular(a=0, b=2, c=0.2)",0.38,5,"hd",1.31432847983788
"Beta(a=2, b=4)",0.38,5,"hd",1.28351407869701
"Beta(a=2, b=10)",0.38,5,"hd",1.27407096420298
"Normal(m=0, sd=1)",0.38,5,"hd",1.14516852097561
"Weibull(scale=1, shape=2)",0.38,5,"hd",1.25435504065739
"Student(df=3)",0.38,5,"hd",0.802696427001907
"Gumbel(loc=0, scale=1)",0.38,5,"hd",1.22175526195087
"Exp(rate=1)",0.38,5,"hd",1.18077530383065
"Cauchy(x0=0, gamma=1)",0.38,5,"hd",0.0219548217755538
"Pareto(loc=1, shape=0.5)",0.38,5,"hd",4.99651916108653e-05
"Pareto(loc=1, shape=2)",0.38,5,"hd",0.85495192986336
"LogNormal(mlog=0, sdlog=1)",0.38,5,"hd",1.02560234463737
"LogNormal(mlog=0, sdlog=2)",0.38,5,"hd",0.473488284354173
"LogNormal(mlog=0, sdlog=3)",0.38,5,"hd",0.0493883329579176
"Weibull(shape=0.3)",0.38,5,"hd",0.325974269194969
"Weibull(shape=0.5)",0.38,5,"hd",0.832259161091287
"Frechet(shape=1)",0.38,5,"hd",0.207308413752302
"Frechet(shape=3)",0.38,5,"hd",1.06687274071876
"Uniform(a=0, b=1)",0.39,5,"hd",1.35141784660464
"Triangular(a=0, b=2, c=1)",0.39,5,"hd",1.21911860931277
"Triangular(a=0, b=2, c=0.2)",0.39,5,"hd",1.30783278589971
"Beta(a=2, b=4)",0.39,5,"hd",1.28762212450512
"Beta(a=2, b=10)",0.39,5,"hd",1.24817589639576
"Normal(m=0, sd=1)",0.39,5,"hd",1.16279964316043
"Weibull(scale=1, shape=2)",0.39,5,"hd",1.251900667202
"Student(df=3)",0.39,5,"hd",0.840386235157938
"Gumbel(loc=0, scale=1)",0.39,5,"hd",1.21696251379563
"Exp(rate=1)",0.39,5,"hd",1.13813211420312
"Cauchy(x0=0, gamma=1)",0.39,5,"hd",0.0293764180641741
"Pareto(loc=1, shape=0.5)",0.39,5,"hd",1.50665931816238e-05
"Pareto(loc=1, shape=2)",0.39,5,"hd",0.804964761812026
"LogNormal(mlog=0, sdlog=1)",0.39,5,"hd",1.01032758633235
"LogNormal(mlog=0, sdlog=2)",0.39,5,"hd",0.390663160655899
"LogNormal(mlog=0, sdlog=3)",0.39,5,"hd",0.0570260206659898
"Weibull(shape=0.3)",0.39,5,"hd",0.314469898848398
"Weibull(shape=0.5)",0.39,5,"hd",0.762595337793465
"Frechet(shape=1)",0.39,5,"hd",0.125040378579278
"Frechet(shape=3)",0.39,5,"hd",1.09169676060578
"Uniform(a=0, b=1)",0.4,5,"hd",1.36242273165798
"Triangular(a=0, b=2, c=1)",0.4,5,"hd",1.19551693855674
"Triangular(a=0, b=2, c=0.2)",0.4,5,"hd",1.30319232830974
"Beta(a=2, b=4)",0.4,5,"hd",1.26354715472852
"Beta(a=2, b=10)",0.4,5,"hd",1.25189899803893
"Normal(m=0, sd=1)",0.4,5,"hd",1.15598446962917
"Weibull(scale=1, shape=2)",0.4,5,"hd",1.26785301560211
"Student(df=3)",0.4,5,"hd",0.839077483460975
"Gumbel(loc=0, scale=1)",0.4,5,"hd",1.20790962924095
"Exp(rate=1)",0.4,5,"hd",1.17144715417876
"Cauchy(x0=0, gamma=1)",0.4,5,"hd",0.0312979903324933
"Pareto(loc=1, shape=0.5)",0.4,5,"hd",2.29578611060702e-05
"Pareto(loc=1, shape=2)",0.4,5,"hd",0.815538250472068
"LogNormal(mlog=0, sdlog=1)",0.4,5,"hd",0.989757223077922
"LogNormal(mlog=0, sdlog=2)",0.4,5,"hd",0.363694007200486
"LogNormal(mlog=0, sdlog=3)",0.4,5,"hd",0.0391207203704488
"Weibull(shape=0.3)",0.4,5,"hd",0.277469934387912
"Weibull(shape=0.5)",0.4,5,"hd",0.743247750808229
"Frechet(shape=1)",0.4,5,"hd",0.131517016774064
"Frechet(shape=3)",0.4,5,"hd",1.04421925619745
"Uniform(a=0, b=1)",0.41,5,"hd",1.35982991434891
"Triangular(a=0, b=2, c=1)",0.41,5,"hd",1.20671899255691
"Triangular(a=0, b=2, c=0.2)",0.41,5,"hd",1.29838568446835
"Beta(a=2, b=4)",0.41,5,"hd",1.26507470991495
"Beta(a=2, b=10)",0.41,5,"hd",1.24440331256205
"Normal(m=0, sd=1)",0.41,5,"hd",1.16361451522496
"Weibull(scale=1, shape=2)",0.41,5,"hd",1.239576633934
"Student(df=3)",0.41,5,"hd",0.875990665677553
"Gumbel(loc=0, scale=1)",0.41,5,"hd",1.2156301353937
"Exp(rate=1)",0.41,5,"hd",1.13224521519728
"Cauchy(x0=0, gamma=1)",0.41,5,"hd",0.0352350763077055
"Pareto(loc=1, shape=0.5)",0.41,5,"hd",2.708043659755e-05
"Pareto(loc=1, shape=2)",0.41,5,"hd",0.750850181751791
"LogNormal(mlog=0, sdlog=1)",0.41,5,"hd",0.989245596260743
"LogNormal(mlog=0, sdlog=2)",0.41,5,"hd",0.324752643905188
"LogNormal(mlog=0, sdlog=3)",0.41,5,"hd",0.0341625946865836
"Weibull(shape=0.3)",0.41,5,"hd",0.247448154593281
"Weibull(shape=0.5)",0.41,5,"hd",0.727432469166413
"Frechet(shape=1)",0.41,5,"hd",0.164249222858413
"Frechet(shape=3)",0.41,5,"hd",0.995280785771281
"Uniform(a=0, b=1)",0.42,5,"hd",1.36868428036939
"Triangular(a=0, b=2, c=1)",0.42,5,"hd",1.21799719434841
"Triangular(a=0, b=2, c=0.2)",0.42,5,"hd",1.29228817493322
"Beta(a=2, b=4)",0.42,5,"hd",1.26693041211564
"Beta(a=2, b=10)",0.42,5,"hd",1.24673234417083
"Normal(m=0, sd=1)",0.42,5,"hd",1.18625997112158
"Weibull(scale=1, shape=2)",0.42,5,"hd",1.25475728077204
"Student(df=3)",0.42,5,"hd",0.911775105258737
"Gumbel(loc=0, scale=1)",0.42,5,"hd",1.18269068372679
"Exp(rate=1)",0.42,5,"hd",1.11751297116344
"Cauchy(x0=0, gamma=1)",0.42,5,"hd",0.0241518213874822
"Pareto(loc=1, shape=0.5)",0.42,5,"hd",1.89866122725393e-05
"Pareto(loc=1, shape=2)",0.42,5,"hd",0.717161678530577
"LogNormal(mlog=0, sdlog=1)",0.42,5,"hd",0.900194719991775
"LogNormal(mlog=0, sdlog=2)",0.42,5,"hd",0.325987603655506
"LogNormal(mlog=0, sdlog=3)",0.42,5,"hd",0.0320500345272368
"Weibull(shape=0.3)",0.42,5,"hd",0.265041692520677
"Weibull(shape=0.5)",0.42,5,"hd",0.725993436864666
"Frechet(shape=1)",0.42,5,"hd",0.136046126820659
"Frechet(shape=3)",0.42,5,"hd",0.9960141466196
"Uniform(a=0, b=1)",0.43,5,"hd",1.37896862571391
"Triangular(a=0, b=2, c=1)",0.43,5,"hd",1.23004368021571
"Triangular(a=0, b=2, c=0.2)",0.43,5,"hd",1.31572484047431
"Beta(a=2, b=4)",0.43,5,"hd",1.29563132103656
"Beta(a=2, b=10)",0.43,5,"hd",1.25960286581426
"Normal(m=0, sd=1)",0.43,5,"hd",1.1853086287369
"Weibull(scale=1, shape=2)",0.43,5,"hd",1.23598964909591
"Student(df=3)",0.43,5,"hd",0.93305981167288
"Gumbel(loc=0, scale=1)",0.43,5,"hd",1.16449508929636
"Exp(rate=1)",0.43,5,"hd",1.07774665023356
"Cauchy(x0=0, gamma=1)",0.43,5,"hd",0.0276075895306679
"Pareto(loc=1, shape=0.5)",0.43,5,"hd",1.12312150476576e-05
"Pareto(loc=1, shape=2)",0.43,5,"hd",0.684122274947423
"LogNormal(mlog=0, sdlog=1)",0.43,5,"hd",0.889619603089906
"LogNormal(mlog=0, sdlog=2)",0.43,5,"hd",0.351278628468714
"LogNormal(mlog=0, sdlog=3)",0.43,5,"hd",0.0273479702672706
"Weibull(shape=0.3)",0.43,5,"hd",0.227989692497611
"Weibull(shape=0.5)",0.43,5,"hd",0.689536581584527
"Frechet(shape=1)",0.43,5,"hd",0.131175465347425
"Frechet(shape=3)",0.43,5,"hd",0.985066896264207
"Uniform(a=0, b=1)",0.44,5,"hd",1.39574994623758
"Triangular(a=0, b=2, c=1)",0.44,5,"hd",1.2309561031036
"Triangular(a=0, b=2, c=0.2)",0.44,5,"hd",1.32334305527299
"Beta(a=2, b=4)",0.44,5,"hd",1.29781007523457
"Beta(a=2, b=10)",0.44,5,"hd",1.23830390191113
"Normal(m=0, sd=1)",0.44,5,"hd",1.21856906766633
"Weibull(scale=1, shape=2)",0.44,5,"hd",1.25139771209817
"Student(df=3)",0.44,5,"hd",0.927596410855436
"Gumbel(loc=0, scale=1)",0.44,5,"hd",1.19536599545326
"Exp(rate=1)",0.44,5,"hd",1.10022146409534
"Cauchy(x0=0, gamma=1)",0.44,5,"hd",0.0307907983238393
"Pareto(loc=1, shape=0.5)",0.44,5,"hd",1.2372438111501e-05
"Pareto(loc=1, shape=2)",0.44,5,"hd",0.666691024426072
"LogNormal(mlog=0, sdlog=1)",0.44,5,"hd",0.893731346783705
"LogNormal(mlog=0, sdlog=2)",0.44,5,"hd",0.279159762702762
"LogNormal(mlog=0, sdlog=3)",0.44,5,"hd",0.0188745318793873
"Weibull(shape=0.3)",0.44,5,"hd",0.208759641781927
"Weibull(shape=0.5)",0.44,5,"hd",0.679403464903682
"Frechet(shape=1)",0.44,5,"hd",0.0890104487154936
"Frechet(shape=3)",0.44,5,"hd",0.943975303074374
"Uniform(a=0, b=1)",0.45,5,"hd",1.4144335109865
"Triangular(a=0, b=2, c=1)",0.45,5,"hd",1.25095425076569
"Triangular(a=0, b=2, c=0.2)",0.45,5,"hd",1.31683032594536
"Beta(a=2, b=4)",0.45,5,"hd",1.29558866043687
"Beta(a=2, b=10)",0.45,5,"hd",1.25543055374279
"Normal(m=0, sd=1)",0.45,5,"hd",1.19991667228078
"Weibull(scale=1, shape=2)",0.45,5,"hd",1.25174237665874
"Student(df=3)",0.45,5,"hd",0.96180778409234
"Gumbel(loc=0, scale=1)",0.45,5,"hd",1.21505116659281
"Exp(rate=1)",0.45,5,"hd",1.09519521883479
"Cauchy(x0=0, gamma=1)",0.45,5,"hd",0.02977140365511
"Pareto(loc=1, shape=0.5)",0.45,5,"hd",6.39432894102392e-06
"Pareto(loc=1, shape=2)",0.45,5,"hd",0.6433683189809
"LogNormal(mlog=0, sdlog=1)",0.45,5,"hd",0.886469025436188
"LogNormal(mlog=0, sdlog=2)",0.45,5,"hd",0.278380509886197
"LogNormal(mlog=0, sdlog=3)",0.45,5,"hd",0.0169728186915967
"Weibull(shape=0.3)",0.45,5,"hd",0.193581949654421
"Weibull(shape=0.5)",0.45,5,"hd",0.639392800463674
"Frechet(shape=1)",0.45,5,"hd",0.0573436717979403
"Frechet(shape=3)",0.45,5,"hd",0.94572660910444
"Uniform(a=0, b=1)",0.46,5,"hd",1.44783592227605
"Triangular(a=0, b=2, c=1)",0.46,5,"hd",1.28485830645666
"Triangular(a=0, b=2, c=0.2)",0.46,5,"hd",1.33995756814258
"Beta(a=2, b=4)",0.46,5,"hd",1.33620758153666
"Beta(a=2, b=10)",0.46,5,"hd",1.23642526483647
"Normal(m=0, sd=1)",0.46,5,"hd",1.24669001751475
"Weibull(scale=1, shape=2)",0.46,5,"hd",1.25560014561255
"Student(df=3)",0.46,5,"hd",0.984849087150631
"Gumbel(loc=0, scale=1)",0.46,5,"hd",1.19247558376678
"Exp(rate=1)",0.46,5,"hd",1.0873099477449
"Cauchy(x0=0, gamma=1)",0.46,5,"hd",0.0394152429083692
"Pareto(loc=1, shape=0.5)",0.46,5,"hd",1.23119145295784e-05
"Pareto(loc=1, shape=2)",0.46,5,"hd",0.600752232260281
"LogNormal(mlog=0, sdlog=1)",0.46,5,"hd",0.870367706622489
"LogNormal(mlog=0, sdlog=2)",0.46,5,"hd",0.209905867454004
"LogNormal(mlog=0, sdlog=3)",0.46,5,"hd",0.0177851741067014
"Weibull(shape=0.3)",0.46,5,"hd",0.177854025927392
"Weibull(shape=0.5)",0.46,5,"hd",0.619919695500455
"Frechet(shape=1)",0.46,5,"hd",0.0784141766410556
"Frechet(shape=3)",0.46,5,"hd",0.906102878431907
"Uniform(a=0, b=1)",0.47,5,"hd",1.47552904588866
"Triangular(a=0, b=2, c=1)",0.47,5,"hd",1.32374583647141
"Triangular(a=0, b=2, c=0.2)",0.47,5,"hd",1.34641730773531
"Beta(a=2, b=4)",0.47,5,"hd",1.31520251689544
"Beta(a=2, b=10)",0.47,5,"hd",1.27504653735911
"Normal(m=0, sd=1)",0.47,5,"hd",1.25346692516198
"Weibull(scale=1, shape=2)",0.47,5,"hd",1.29469717642391
"Student(df=3)",0.47,5,"hd",0.975751441043316
"Gumbel(loc=0, scale=1)",0.47,5,"hd",1.19845887512545
"Exp(rate=1)",0.47,5,"hd",1.08262659618402
"Cauchy(x0=0, gamma=1)",0.47,5,"hd",0.0554090113051382
"Pareto(loc=1, shape=0.5)",0.47,5,"hd",8.96453063182934e-06
"Pareto(loc=1, shape=2)",0.47,5,"hd",0.546333224122043
"LogNormal(mlog=0, sdlog=1)",0.47,5,"hd",0.854847827423614
"LogNormal(mlog=0, sdlog=2)",0.47,5,"hd",0.223816689104664
"LogNormal(mlog=0, sdlog=3)",0.47,5,"hd",0.0151777715706617
"Weibull(shape=0.3)",0.47,5,"hd",0.169565877416745
"Weibull(shape=0.5)",0.47,5,"hd",0.57037612063525
"Frechet(shape=1)",0.47,5,"hd",0.100035293926438
"Frechet(shape=3)",0.47,5,"hd",0.876965617244548
"Uniform(a=0, b=1)",0.48,5,"hd",1.50849637005967
"Triangular(a=0, b=2, c=1)",0.48,5,"hd",1.3221793879518
"Triangular(a=0, b=2, c=0.2)",0.48,5,"hd",1.3753376019658
"Beta(a=2, b=4)",0.48,5,"hd",1.34188650742591
"Beta(a=2, b=10)",0.48,5,"hd",1.25552234626521
"Normal(m=0, sd=1)",0.48,5,"hd",1.27575606754392
"Weibull(scale=1, shape=2)",0.48,5,"hd",1.26873435252355
"Student(df=3)",0.48,5,"hd",1.03074711872233
"Gumbel(loc=0, scale=1)",0.48,5,"hd",1.21508605871419
"Exp(rate=1)",0.48,5,"hd",1.0721076092293
"Cauchy(x0=0, gamma=1)",0.48,5,"hd",0.0216879487733432
"Pareto(loc=1, shape=0.5)",0.48,5,"hd",9.72698098039271e-06
"Pareto(loc=1, shape=2)",0.48,5,"hd",0.504654753256544
"LogNormal(mlog=0, sdlog=1)",0.48,5,"hd",0.814832510105482
"LogNormal(mlog=0, sdlog=2)",0.48,5,"hd",0.184484093490575
"LogNormal(mlog=0, sdlog=3)",0.48,5,"hd",0.0128529076996702
"Weibull(shape=0.3)",0.48,5,"hd",0.146874818790804
"Weibull(shape=0.5)",0.48,5,"hd",0.583042502991395
"Frechet(shape=1)",0.48,5,"hd",0.0472986387111965
"Frechet(shape=3)",0.48,5,"hd",0.837255519287874
"Uniform(a=0, b=1)",0.49,5,"hd",1.51810982990071
"Triangular(a=0, b=2, c=1)",0.49,5,"hd",1.34700406128113
"Triangular(a=0, b=2, c=0.2)",0.49,5,"hd",1.38846779353132
"Beta(a=2, b=4)",0.49,5,"hd",1.37261150790453
"Beta(a=2, b=10)",0.49,5,"hd",1.28341442505094
"Normal(m=0, sd=1)",0.49,5,"hd",1.31347133824354
"Weibull(scale=1, shape=2)",0.49,5,"hd",1.3386531507442
"Student(df=3)",0.49,5,"hd",1.03970017191503
"Gumbel(loc=0, scale=1)",0.49,5,"hd",1.21092943883003
"Exp(rate=1)",0.49,5,"hd",1.06205777447343
"Cauchy(x0=0, gamma=1)",0.49,5,"hd",0.0553367871650784
"Pareto(loc=1, shape=0.5)",0.49,5,"hd",8.12732596893708e-06
"Pareto(loc=1, shape=2)",0.49,5,"hd",0.511101535661943
"LogNormal(mlog=0, sdlog=1)",0.49,5,"hd",0.807480129628036
"LogNormal(mlog=0, sdlog=2)",0.49,5,"hd",0.177368325401354
"LogNormal(mlog=0, sdlog=3)",0.49,5,"hd",0.0166003543478535
"Weibull(shape=0.3)",0.49,5,"hd",0.136601963725505
"Weibull(shape=0.5)",0.49,5,"hd",0.560072608413833
"Frechet(shape=1)",0.49,5,"hd",0.0545205905111887
"Frechet(shape=3)",0.49,5,"hd",0.827994239626031
"Uniform(a=0, b=1)",0.5,5,"hd",1.5557298840228
"Triangular(a=0, b=2, c=1)",0.5,5,"hd",1.35252856578862
"Triangular(a=0, b=2, c=0.2)",0.5,5,"hd",1.39500940588867
"Beta(a=2, b=4)",0.5,5,"hd",1.37772468196956
"Beta(a=2, b=10)",0.5,5,"hd",1.26857267697696
"Normal(m=0, sd=1)",0.5,5,"hd",1.34385400309416
"Weibull(scale=1, shape=2)",0.5,5,"hd",1.32391960285756
"Student(df=3)",0.5,5,"hd",1.07899170494348
"Gumbel(loc=0, scale=1)",0.5,5,"hd",1.21074549743734
"Exp(rate=1)",0.5,5,"hd",1.05262735821524
"Cauchy(x0=0, gamma=1)",0.5,5,"hd",0.0310246124940358
"Pareto(loc=1, shape=0.5)",0.5,5,"hd",7.71279467114099e-06
"Pareto(loc=1, shape=2)",0.5,5,"hd",0.499711821410386
"LogNormal(mlog=0, sdlog=1)",0.5,5,"hd",0.794091932486947
"LogNormal(mlog=0, sdlog=2)",0.5,5,"hd",0.170669036915525
"LogNormal(mlog=0, sdlog=3)",0.5,5,"hd",0.0135256624179309
"Weibull(shape=0.3)",0.5,5,"hd",0.136672047500294
"Weibull(shape=0.5)",0.5,5,"hd",0.510578705713691
"Frechet(shape=1)",0.5,5,"hd",0.0433140311021866