aboutsummaryrefslogtreecommitdiff
path: root/analysis/current/log
blob: 9f51162fc6b932f7d55cb5a9849343e14fc45474 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
Running with gitlab-runner 15.10.1 (dcfb4b66)
  on gitlab-runner-7ffd5f6dd7-lrns2 YKqbq3bM, system ID: r_O0XImlt13bgP
section_start:1711383054:prepare_executor
Preparing the "kubernetes" executor
Using Kubernetes namespace: gitlab-runner
Using Kubernetes executor with image alpine ...
Using attach strategy to execute scripts...
section_end:1711383054:prepare_executor
section_start:1711383054:prepare_script
Preparing environment
Waiting for pod gitlab-runner/runner-ykqbq3bm-project-42-concurrent-0ps9bk to be running, status is Pending
Waiting for pod gitlab-runner/runner-ykqbq3bm-project-42-concurrent-0ps9bk to be running, status is Pending
	ContainersNotReady: "containers with unready status: [build helper]"
	ContainersNotReady: "containers with unready status: [build helper]"
Running on runner-ykqbq3bm-project-42-concurrent-0ps9bk via gitlab-runner-7ffd5f6dd7-lrns2...

section_end:1711383061:prepare_script
section_start:1711383061:get_sources
Getting source from Git repository
Fetching changes with git depth set to 20...
Initialized empty Git repository in /builds/tcmal/dissertation/.git/
Created fresh repository.
Checking out 11885b43 as detached HEAD (ref is main)...

Skipping Git submodules setup

section_end:1711383063:get_sources
section_start:1711383063:step_script
Executing "step_script" stage of the job script
$ apk update && apk add openssh-client
fetch https://dl-cdn.alpinelinux.org/alpine/v3.19/main/x86_64/APKINDEX.tar.gz
fetch https://dl-cdn.alpinelinux.org/alpine/v3.19/community/x86_64/APKINDEX.tar.gz
v3.19.1-292-g15c1b9cc7ba [https://dl-cdn.alpinelinux.org/alpine/v3.19/main]
v3.19.1-297-g21125fb2bd8 [https://dl-cdn.alpinelinux.org/alpine/v3.19/community]
OK: 22990 distinct packages available
(1/6) Installing openssh-keygen (9.6_p1-r0)
(2/6) Installing ncurses-terminfo-base (6.4_p20231125-r0)
(3/6) Installing libncursesw (6.4_p20231125-r0)
(4/6) Installing libedit (20230828.3.1-r3)
(5/6) Installing openssh-client-common (9.6_p1-r0)
(6/6) Installing openssh-client-default (9.6_p1-r0)
Executing busybox-1.36.1-r15.trigger
OK: 12 MiB in 21 packages
$ eval $(ssh-agent -s)
Agent pid 36
$ chmod 400 "$SSH_PRIVATE_KEY"
$ ssh-add "$SSH_PRIVATE_KEY"
Identity added: /builds/tcmal/dissertation.tmp/SSH_PRIVATE_KEY (candelabra)
$ mkdir -p ~/.ssh
$ chmod 700 ~/.ssh
$ cp "$SSH_KNOWN_HOSTS" ~/.ssh/known_hosts
$ ssh $SSH_LOCATION "bash -lc 'cd /opt/candelabra/src && rm -fr tests/target/criterion && just selections --compare'"
which candelabra-cli 2>/dev/null || cargo build
/run/current-system/sw/bin/candelabra-cli
echo "Candelabra Path: /run/current-system/sw/bin/candelabra-cli"
Candelabra Path: /run/current-system/sw/bin/candelabra-cli
section_start:1711383066:compare-aoc_2021_09
compare-aoc_2021_09
/run/current-system/sw/bin/candelabra-cli -l --manifest-path /opt/candelabra/src/tests/Cargo.toml -p aoc_2021_09 select --compare
[2024-03-25T16:11:06Z INFO  candelabra_cli] Using source dir: "/nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source"
[2024-03-25T16:11:06Z DEBUG candelabra::candidates] Initialised candidate cacher with hash 6543311679163142612
[2024-03-25T16:11:06Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs. Continuing anyway.
[2024-03-25T16:11:06Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs. Continuing anyway.
[2024-03-25T16:11:06Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs. Continuing anyway.
[2024-03-25T16:11:06Z DEBUG candelabra::cost] Initialised benchmark cacher with hash 6543311679163142612
[2024-03-25T16:11:06Z INFO  candelabra_cli::select] Processing project aoc_2021_09
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 2051.0, avg_n: 10000.0, avg_op_counts: {"clear": 0.0, "nth": 0.0, "contains": 39601.0, "remove": 0.0, "first": 0.0, "get": 0.0, "push": 0.0, "last": 0.0, "pop": 0.0, "insert": 10000.0} }]
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashSet", [9210808088.963547]), ("std::collections::BTreeSet", [12847475355.61484])]
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::HashSet", 9210808088.963547)]
┌──────┬────────────────────────────────┬────────────────────┬───────────────────────────────────────────────────────┐
│ name │ implementation                 │ estimated cost     │ file                                                  │
├──────┼────────────────────────────────┼────────────────────┼───────────────────────────────────────────────────────┤
│ Set  │ std::collections::HashSet      │ 9210808088.963547  │ /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs │
│ Set  │ std::collections::BTreeSet     │ 12847475355.61484  │ /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs │
│ Map  │ std::collections::BTreeMap     │ 48723268604.105606 │ /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs │
│ Map  │ primrose_library::VecMap       │ 1177545948376.6836 │ /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs │
│ Map  │ primrose_library::SortedVecMap │ 96058631523.74951  │ /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs │
│ Map  │ std::collections::HashMap      │ 31057756628.24385  │ /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs │
└──────┴────────────────────────────────┴────────────────────┴───────────────────────────────────────────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|}
name & implementation & estimated cost & file \\
\hline
Set & std::collections::HashSet & 9210808088.963547 & /opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs \\
Set & std::collections::BTreeSet & 12847475355.61484 & /opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs \\
Map & std::collections::BTreeMap & 48723268604.105606 & /opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs \\
Map & primrose\_library::VecMap & 1177545948376.6836 & /opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs \\
Map & primrose\_library::SortedVecMap & 96058631523.74951 & /opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs \\
Map & std::collections::HashMap & 31057756628.24385 & /opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs \\
\end{tabular}
\end{center}
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 4852.0, avg_n: 10000.0, avg_op_counts: {"nth": 0.0, "insert": 10000.0, "pop": 0.0, "contains": 0.0, "remove": 0.0, "last": 0.0, "get": 66980.45981038766, "clear": 0.0, "push": 0.0, "first": 0.0} }]
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashMap", [31057756628.24385]), ("primrose_library::VecMap", [1177545948376.6836]), ("primrose_library::SortedVecMap", [96058631523.74951]), ("std::collections::BTreeMap", [48723268604.105606])]
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::HashMap", 31057756628.24385)]
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 4852.0, avg_n: 10000.0, avg_op_counts: {"push": 0.0, "first": 0.0, "nth": 0.0, "get": 66980.45981038766, "contains": 0.0, "pop": 0.0, "remove": 0.0, "insert": 10000.0, "clear": 0.0, "last": 0.0} }]
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Costs by partitions: [("primrose_library::VecMap", [1177545948376.6836]), ("std::collections::HashMap", [31057756628.24385]), ("std::collections::BTreeMap", [48723268604.105606]), ("primrose_library::SortedVecMap", [96058631523.74951])]
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::HashMap", 31057756628.24385)]
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 2051.0, avg_n: 10000.0, avg_op_counts: {"remove": 0.0, "pop": 0.0, "get": 0.0, "nth": 0.0, "insert": 10000.0, "contains": 39601.0, "first": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0} }]
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashSet", [9210808088.963547]), ("std::collections::BTreeSet", [12847475355.61484])]
[2024-03-25T16:11:07Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::HashSet", 9210808088.963547)]
[2024-03-25T16:11:07Z DEBUG candelabra::confirmation] Saving choices for project aoc_2021_09
[2024-03-25T16:11:07Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs
[2024-03-25T16:11:07Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:11:07Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:11:07Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:11:07Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:11:07Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:11:07Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:11:07Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
[2024-03-25T16:11:07Z INFO  candelabra_cli::select] Saved best choices
[2024-03-25T16:11:07Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::HashSet, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): std::collections::BTreeMap}
[2024-03-25T16:11:07Z DEBUG candelabra::confirmation] Saving choices for project aoc_2021_09
[2024-03-25T16:11:07Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs
[2024-03-25T16:11:07Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:11:07Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:11:07Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:11:07Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:11:07Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:11:07Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:11:07Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2021_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2021_09)
    Finished bench [optimized] target(s) in 4.03s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d72ce628475a4edb)
[2024-03-25T16:12:24Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): std::collections::BTreeMap, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::BTreeSet}
[2024-03-25T16:12:24Z DEBUG candelabra::confirmation] Saving choices for project aoc_2021_09
[2024-03-25T16:12:24Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs
[2024-03-25T16:12:24Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:12:24Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:12:24Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:12:24Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:12:24Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:12:24Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:12:24Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2021_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2021_09)
    Finished bench [optimized] target(s) in 3.31s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d72ce628475a4edb)
[2024-03-25T16:14:19Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::HashSet, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): primrose_library::VecMap}
[2024-03-25T16:14:19Z DEBUG candelabra::confirmation] Saving choices for project aoc_2021_09
[2024-03-25T16:14:19Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs
[2024-03-25T16:14:19Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:14:19Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:14:19Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:14:19Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:14:19Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:14:19Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:14:19Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2021_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2021_09)
    Finished bench [optimized] target(s) in 3.25s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d72ce628475a4edb)
[2024-03-25T16:24:32Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): primrose_library::VecMap}
[2024-03-25T16:24:32Z DEBUG candelabra::confirmation] Saving choices for project aoc_2021_09
[2024-03-25T16:24:32Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs
[2024-03-25T16:24:32Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:24:32Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:24:32Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:24:32Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:24:32Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:24:32Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:24:32Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2021_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2021_09)
    Finished bench [optimized] target(s) in 3.33s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d72ce628475a4edb)
[2024-03-25T16:35:45Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): primrose_library::SortedVecMap, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::HashSet}
[2024-03-25T16:35:45Z DEBUG candelabra::confirmation] Saving choices for project aoc_2021_09
[2024-03-25T16:35:45Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs
[2024-03-25T16:35:45Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:35:45Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:35:45Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:35:45Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:35:45Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:35:45Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:35:45Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2021_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2021_09)
    Finished bench [optimized] target(s) in 3.15s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d72ce628475a4edb)
[2024-03-25T16:37:03Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): primrose_library::SortedVecMap, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::BTreeSet}
[2024-03-25T16:37:03Z DEBUG candelabra::confirmation] Saving choices for project aoc_2021_09
[2024-03-25T16:37:03Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs
[2024-03-25T16:37:03Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:37:03Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:37:03Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:37:03Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:37:03Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:37:03Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:37:03Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2021_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2021_09)
    Finished bench [optimized] target(s) in 3.12s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d72ce628475a4edb)
[2024-03-25T16:39:02Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): std::collections::HashMap, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::HashSet}
[2024-03-25T16:39:02Z DEBUG candelabra::confirmation] Saving choices for project aoc_2021_09
[2024-03-25T16:39:02Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs
[2024-03-25T16:39:02Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:39:02Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:39:02Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:39:02Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:39:02Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:39:02Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:39:02Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2021_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2021_09)
    Finished bench [optimized] target(s) in 3.25s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d72ce628475a4edb)
[2024-03-25T16:40:09Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): std::collections::HashMap, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::BTreeSet}
[2024-03-25T16:40:09Z DEBUG candelabra::confirmation] Saving choices for project aoc_2021_09
[2024-03-25T16:40:09Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs
[2024-03-25T16:40:09Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:40:09Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:40:09Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:40:09Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:40:09Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:40:09Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:40:09Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2021_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2021_09)
    Finished bench [optimized] target(s) in 3.26s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d72ce628475a4edb)
┌──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┬───────────────────────┬───────────────────────┬───────────────────┐
│                                                                                                                                                                                                  │ aoc_2021_09-part1/100 │ aoc_2021_09-part2/100 │ total             │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┼───────────────────────┼───────────────────────┼───────────────────┤
│ {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): primrose_library::VecMap}       │ 162180000             │ 59645000000           │ 59807180000       │
│ {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): primrose_library::SortedVecMap, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::BTreeSet} │ 5377700               │ 9454100000            │ 9459477700        │
│ {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): std::collections::BTreeMap, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::BTreeSet}     │ 3636100               │ 8955000000            │ 8958636100        │
│ {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): std::collections::HashMap, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::BTreeSet}      │ 1851500               │ 8052799999.999999     │ 8054651499.999999 │
│ {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): std::collections::HashMap, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::HashSet}       │ 1865100               │ 4598000000            │ 4599865100        │
│ {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::HashSet, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): std::collections::BTreeMap}      │ 3539600               │ 5399800000            │ 5403339600        │
│ {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): primrose_library::SortedVecMap, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::HashSet}  │ 5488000               │ 5788300000            │ 5793788000        │
│ {("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Set"): std::collections::HashSet, ("/opt/candelabra/src/tests/aoc_2021_09/src/types.pr.rs", "Map"): primrose_library::VecMap}        │ 153690000             │ 53994000000           │ 54147690000       │
└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┴───────────────────────┴───────────────────────┴───────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|}
 & aoc\_2021\_09-part1/100 & aoc\_2021\_09-part2/100 & total \\
\hline
\{("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Set"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Map"): primrose\_library::VecMap\} & 162180000 & 59645000000 & 59807180000 \\
\{("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Map"): primrose\_library::SortedVecMap, ("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Set"): std::collections::BTreeSet\} & 5377700 & 9454100000 & 9459477700 \\
\{("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Map"): std::collections::BTreeMap, ("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Set"): std::collections::BTreeSet\} & 3636100 & 8955000000 & 8958636100 \\
\{("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Map"): std::collections::HashMap, ("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Set"): std::collections::BTreeSet\} & 1851500 & 8052799999.999999 & 8054651499.999999 \\
\{("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Map"): std::collections::HashMap, ("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Set"): std::collections::HashSet\} & 1865100 & 4598000000 & 4599865100 \\
\{("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Set"): std::collections::HashSet, ("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Map"): std::collections::BTreeMap\} & 3539600 & 5399800000 & 5403339600 \\
\{("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Map"): primrose\_library::SortedVecMap, ("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Set"): std::collections::HashSet\} & 5488000 & 5788300000 & 5793788000 \\
\{("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Set"): std::collections::HashSet, ("/opt/candelabra/src/tests/aoc\_2021\_09/src/types.pr.rs", "Map"): primrose\_library::VecMap\} & 153690000 & 53994000000 & 54147690000 \\
\end{tabular}
\end{center}
section_end:1711384915:compare-aoc_2021_09

section_start:1711384915:compare-aoc_2022_08
compare-aoc_2022_08
/run/current-system/sw/bin/candelabra-cli -l --manifest-path /opt/candelabra/src/tests/Cargo.toml -p aoc_2022_08 select --compare
[2024-03-25T16:41:55Z INFO  candelabra_cli] Using source dir: "/nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source"
[2024-03-25T16:41:55Z DEBUG candelabra::candidates] Initialised candidate cacher with hash 6543311679163142612
[2024-03-25T16:41:55Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs. Continuing anyway.
[2024-03-25T16:41:55Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs. Continuing anyway.
[2024-03-25T16:41:55Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs. Continuing anyway.
[2024-03-25T16:41:55Z DEBUG candelabra::cost] Initialised benchmark cacher with hash 6543311679163142612
[2024-03-25T16:41:55Z INFO  candelabra_cli::select] Processing project aoc_2022_08
┌──────┬─────────────────────────────────────────────────────────────────────────────┬───────────────────┬───────────────────────────────────────────────────────┐
│ name │ implementation                                                              │ estimated cost    │ file                                                  │
├──────┼─────────────────────────────────────────────────────────────────────────────┼───────────────────┼───────────────────────────────────────────────────────┤
│ Map  │ primrose_library::VecMap                                                    │ 5370239202261.842 │ /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs │
│ Map  │ std::collections::HashMap                                                   │ 58801682552.86513 │ /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs │
│ Map  │ primrose_library::SortedVecMap                                              │ 817568543716.7662 │ /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs │
│ Map  │ std::collections::BTreeMap                                                  │ 97743683189.22581 │ /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs │
│ Map  │ primrose_library::SortedVecMap until n=1664, then std::collections::HashMap │ 58753133105.11505 │ /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs │
└──────┴─────────────────────────────────────────────────────────────────────────────┴───────────────────┴───────────────────────────────────────────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|}
name & implementation & estimated cost & file \\
\hline
Map & primrose\_library::VecMap & 5370239202261.842 & /opt/candelabra/src/tests/aoc\_2022\_08/src/types.pr.rs \\
Map & std::collections::HashMap & 58801682552.86513 & /opt/candelabra/src/tests/aoc\_2022\_08/src/types.pr.rs \\
Map & primrose\_library::SortedVecMap & 817568543716.7662 & /opt/candelabra/src/tests/aoc\_2022\_08/src/types.pr.rs \\
Map & std::collections::BTreeMap & 97743683189.22581 & /opt/candelabra/src/tests/aoc\_2022\_08/src/types.pr.rs \\
Map & primrose\_library::SortedVecMap until n=1664, then std::collections::HashMap & 58753133105.11505 & /opt/candelabra/src/tests/aoc\_2022\_08/src/types.pr.rs \\
\end{tabular}
\end{center}
[2024-03-25T16:41:56Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:41:56Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 3068.0, avg_n: 1109.940677966102, avg_op_counts: {"pop": 0.0, "contains": 0.0, "get": 0.0, "last": 0.0, "clear": 0.0, "nth": 0.0, "push": 0.0, "insert": 1171.8223598435486, "remove": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 843.0, avg_n: 2280.3274021352327, avg_op_counts: {"contains": 0.0, "clear": 0.0, "nth": 0.0, "remove": 0.0, "pop": 0.0, "push": 0.0, "first": 0.0, "get": 0.0, "last": 0.0, "insert": 2342.4306049822058} }, ProfilerPartition { occurences: 6006.0, avg_n: 10000.0, avg_op_counts: {"push": 0.0, "pop": 0.0, "nth": 0.0, "remove": 0.0, "get": 40000.0, "insert": 17337.662337662307, "first": 0.0, "last": 0.0, "contains": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 1459.0, avg_n: 40000.0, avg_op_counts: {"push": 0.0, "nth": 0.0, "first": 0.0, "last": 0.0, "insert": 65332.419465387095, "contains": 0.0, "clear": 0.0, "pop": 0.0, "get": 160000.0, "remove": 0.0} }]
[2024-03-25T16:41:56Z DEBUG candelabra::profiler::info] Costs by partitions: [("primrose_library::VecMap", [441364776.560104, 771010654.5027164, 1030863412703.228, 4338163414127.551]), ("std::collections::HashMap", [155125559.59443495, 85993346.85778749, 26043262882.78633, 32517300763.626575]), ("std::collections::BTreeMap", [243771266.12669298, 144167265.9551254, 41889093973.05683, 55466650684.08716]), ("primrose_library::SortedVecMap", [106503888.78428955, 304002821.766236, 150668569846.44977, 666489467159.7659])]
[2024-03-25T16:41:56Z DEBUG candelabra::profiler::info] Top by partition: [("primrose_library::SortedVecMap", 106503888.78428955), ("std::collections::HashMap", 85993346.85778749), ("std::collections::HashMap", 26043262882.78633), ("std::collections::HashMap", 32517300763.626575)]
[2024-03-25T16:41:56Z DEBUG candelabra::profiler::info] With split index 1, split proper is true
[2024-03-25T16:41:56Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:41:56Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 3068.0, avg_n: 1109.940677966102, avg_op_counts: {"get": 0.0, "pop": 0.0, "first": 0.0, "clear": 0.0, "remove": 0.0, "last": 0.0, "nth": 0.0, "contains": 0.0, "insert": 1171.8223598435486, "push": 0.0} }, ProfilerPartition { occurences: 843.0, avg_n: 2280.3274021352327, avg_op_counts: {"last": 0.0, "get": 0.0, "clear": 0.0, "remove": 0.0, "first": 0.0, "insert": 2342.4306049822058, "nth": 0.0, "push": 0.0, "contains": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 6006.0, avg_n: 10000.0, avg_op_counts: {"clear": 0.0, "contains": 0.0, "pop": 0.0, "get": 40000.0, "last": 0.0, "nth": 0.0, "first": 0.0, "remove": 0.0, "insert": 17337.662337662307, "push": 0.0} }, ProfilerPartition { occurences: 1459.0, avg_n: 40000.0, avg_op_counts: {"insert": 65332.419465387095, "contains": 0.0, "get": 160000.0, "nth": 0.0, "push": 0.0, "remove": 0.0, "last": 0.0, "pop": 0.0, "clear": 0.0, "first": 0.0} }]
[2024-03-25T16:41:56Z DEBUG candelabra::profiler::info] Costs by partitions: [("primrose_library::VecMap", [441364776.560104, 771010654.5027164, 1030863412703.228, 4338163414127.551]), ("std::collections::BTreeMap", [243771266.12669298, 144167265.9551254, 41889093973.05683, 55466650684.08716]), ("std::collections::HashMap", [155125559.59443495, 85993346.85778749, 26043262882.78633, 32517300763.626575]), ("primrose_library::SortedVecMap", [106503888.78428955, 304002821.766236, 150668569846.44977, 666489467159.7659])]
[2024-03-25T16:41:56Z DEBUG candelabra::profiler::info] Top by partition: [("primrose_library::SortedVecMap", 106503888.78428955), ("std::collections::HashMap", 85993346.85778749), ("std::collections::HashMap", 26043262882.78633), ("std::collections::HashMap", 32517300763.626575)]
[2024-03-25T16:41:56Z DEBUG candelabra::profiler::info] With split index 1, split proper is true
[2024-03-25T16:41:56Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_08
[2024-03-25T16:41:56Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs
[2024-03-25T16:41:56Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:41:56Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:41:56Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:41:56Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:41:56Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:41:56Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:41:56Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
[2024-03-25T16:41:56Z INFO  candelabra_cli::select] Saved best choices
[2024-03-25T16:41:56Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs", "Map"): primrose_library::VecMap}
[2024-03-25T16:41:56Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_08
[2024-03-25T16:41:56Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs
[2024-03-25T16:41:56Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:41:56Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:41:56Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:41:56Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:41:56Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:41:56Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:41:56Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_08 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_08)
    Finished bench [optimized] target(s) in 3.16s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d6c2837aae431d80)
[2024-03-25T16:44:56Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs", "Map"): std::collections::HashMap}
[2024-03-25T16:44:56Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_08
[2024-03-25T16:44:56Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs
[2024-03-25T16:44:56Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:44:56Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:44:56Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:44:56Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:44:56Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:44:56Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:44:56Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_08 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_08)
    Finished bench [optimized] target(s) in 3.15s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d6c2837aae431d80)
[2024-03-25T16:45:44Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs", "Map"): primrose_library::SortedVecMap}
[2024-03-25T16:45:44Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_08
[2024-03-25T16:45:44Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs
[2024-03-25T16:45:44Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:45:44Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:45:44Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:45:44Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:45:44Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:45:44Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:45:44Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_08 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_08)
    Finished bench [optimized] target(s) in 3.01s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d6c2837aae431d80)
[2024-03-25T16:46:34Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs", "Map"): std::collections::BTreeMap}
[2024-03-25T16:46:34Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_08
[2024-03-25T16:46:34Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs
[2024-03-25T16:46:34Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:46:34Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:46:34Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:46:34Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:46:34Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:46:34Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:46:34Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_08 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_08)
    Finished bench [optimized] target(s) in 3.11s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d6c2837aae431d80)
[2024-03-25T16:47:22Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs", "Map"): primrose_library::SortedVecMap until n=1664, then std::collections::HashMap}
[2024-03-25T16:47:22Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_08
[2024-03-25T16:47:22Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs
[2024-03-25T16:47:22Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:47:22Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:47:22Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:47:22Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:47:22Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:47:22Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:47:22Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_08 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_08)
    Finished bench [optimized] target(s) in 3.99s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-d6c2837aae431d80)
┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┬───────────────────────┬───────────────────────┬───────────────────────┬───────────────────────┬─────────────┐
│                                                                                                                                                 │ aoc_2022_08-part1/100 │ aoc_2022_08-part1/200 │ aoc_2022_08-part2/100 │ aoc_2022_08-part2/200 │ total       │
├─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┼───────────────────────┼───────────────────────┼───────────────────────┼───────────────────────┼─────────────┤
│ {("/opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs", "Map"): primrose_library::SortedVecMap until n=1664, then std::collections::HashMap} │ 1330500               │ 5939700               │ 4413400               │ 20500000              │ 32183600    │
│ {("/opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs", "Map"): std::collections::HashMap}                                                   │ 1237400               │ 5730100               │ 4241700               │ 20002000              │ 31211200    │
│ {("/opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs", "Map"): std::collections::BTreeMap}                                                  │ 2735300               │ 12569000              │ 8828400               │ 43094000              │ 67226700    │
│ {("/opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs", "Map"): primrose_library::VecMap}                                                    │ 115750000             │ 2283900000            │ 539290000             │ 9254900000            │ 12193840000 │
│ {("/opt/candelabra/src/tests/aoc_2022_08/src/types.pr.rs", "Map"): primrose_library::SortedVecMap}                                              │ 3999100               │ 16559000.000000002    │ 10146000              │ 44444000              │ 75148100    │
└─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┴───────────────────────┴───────────────────────┴───────────────────────┴───────────────────────┴─────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|c|c|}
 & aoc\_2022\_08-part1/100 & aoc\_2022\_08-part1/200 & aoc\_2022\_08-part2/100 & aoc\_2022\_08-part2/200 & total \\
\hline
\{("/opt/candelabra/src/tests/aoc\_2022\_08/src/types.pr.rs", "Map"): primrose\_library::SortedVecMap until n=1664, then std::collections::HashMap\} & 1330500 & 5939700 & 4413400 & 20500000 & 32183600 \\
\{("/opt/candelabra/src/tests/aoc\_2022\_08/src/types.pr.rs", "Map"): std::collections::HashMap\} & 1237400 & 5730100 & 4241700 & 20002000 & 31211200 \\
\{("/opt/candelabra/src/tests/aoc\_2022\_08/src/types.pr.rs", "Map"): std::collections::BTreeMap\} & 2735300 & 12569000 & 8828400 & 43094000 & 67226700 \\
\{("/opt/candelabra/src/tests/aoc\_2022\_08/src/types.pr.rs", "Map"): primrose\_library::VecMap\} & 115750000 & 2283900000 & 539290000 & 9254900000 & 12193840000 \\
\{("/opt/candelabra/src/tests/aoc\_2022\_08/src/types.pr.rs", "Map"): primrose\_library::SortedVecMap\} & 3999100 & 16559000.000000002 & 10146000 & 44444000 & 75148100 \\
\end{tabular}
\end{center}
section_end:1711385292:compare-aoc_2022_08

section_start:1711385292:compare-aoc_2022_09
compare-aoc_2022_09
/run/current-system/sw/bin/candelabra-cli -l --manifest-path /opt/candelabra/src/tests/Cargo.toml -p aoc_2022_09 select --compare
[2024-03-25T16:48:12Z INFO  candelabra_cli] Using source dir: "/nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source"
[2024-03-25T16:48:12Z DEBUG candelabra::candidates] Initialised candidate cacher with hash 6543311679163142612
[2024-03-25T16:48:12Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs. Continuing anyway.
[2024-03-25T16:48:12Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs. Continuing anyway.
[2024-03-25T16:48:12Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs. Continuing anyway.
[2024-03-25T16:48:12Z DEBUG candelabra::cost] Initialised benchmark cacher with hash 6543311679163142612
[2024-03-25T16:48:12Z INFO  candelabra_cli::select] Processing project aoc_2022_09
[2024-03-25T16:48:12Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:48:12Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 2.0, avg_n: 6513.0, avg_op_counts: {"contains": 0.0, "last": 0.0, "get": 0.0, "clear": 0.0, "remove": 0.0, "pop": 0.0, "first": 0.0, "insert": 10423.5, "push": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 6650.5, avg_op_counts: {"nth": 0.0, "insert": 10402.5, "clear": 0.0, "first": 0.0, "contains": 0.0, "push": 0.0, "pop": 0.0, "last": 0.0, "remove": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 6827.0, avg_op_counts: {"get": 0.0, "contains": 0.0, "clear": 0.0, "first": 0.0, "push": 0.0, "insert": 10594.0, "last": 0.0, "remove": 0.0, "pop": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 6929.0, avg_op_counts: {"first": 0.0, "nth": 0.0, "insert": 11279.0, "clear": 0.0, "contains": 0.0, "pop": 0.0, "last": 0.0, "remove": 0.0, "get": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 7060.0, avg_op_counts: {"first": 0.0, "remove": 0.0, "nth": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "get": 0.0, "insert": 11632.666666666668, "contains": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 7213.916666666667, avg_op_counts: {"insert": 11010.666666666666, "first": 0.0, "last": 0.0, "clear": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0, "remove": 0.0, "contains": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 7380.5, avg_op_counts: {"first": 0.0, "clear": 0.0, "insert": 11636.77777777778, "nth": 0.0, "pop": 0.0, "remove": 0.0, "last": 0.0, "get": 0.0, "push": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 7530.041666666666, avg_op_counts: {"pop": 0.0, "nth": 0.0, "insert": 11014.625, "clear": 0.0, "first": 0.0, "get": 0.0, "push": 0.0, "remove": 0.0, "contains": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 46.0, avg_n: 7673.760869565218, avg_op_counts: {"get": 0.0, "last": 0.0, "remove": 0.0, "clear": 0.0, "nth": 0.0, "insert": 11424.913043478262, "push": 0.0, "contains": 0.0, "first": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 123.0, avg_n: 7826.528455284549, avg_op_counts: {"last": 0.0, "remove": 0.0, "insert": 11550.040650406509, "first": 0.0, "pop": 0.0, "clear": 0.0, "get": 0.0, "push": 0.0, "nth": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 154.0, avg_n: 7974.616883116882, avg_op_counts: {"pop": 0.0, "remove": 0.0, "first": 0.0, "push": 0.0, "clear": 0.0, "insert": 11715.168831168829, "last": 0.0, "nth": 0.0, "get": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 205.0, avg_n: 8111.009756097561, avg_op_counts: {"insert": 11728.8243902439, "push": 0.0, "contains": 0.0, "first": 0.0, "get": 0.0, "clear": 0.0, "remove": 0.0, "nth": 0.0, "last": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 323.0, avg_n: 8263.504643962848, avg_op_counts: {"last": 0.0, "clear": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0, "remove": 0.0, "nth": 0.0, "push": 0.0, "get": 0.0, "insert": 11741.582043343651} }, ProfilerPartition { occurences: 562.0, avg_n: 8418.991103202834, avg_op_counts: {"pop": 0.0, "first": 0.0, "insert": 11923.370106761557, "clear": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "last": 0.0, "push": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 749.0, avg_n: 8581.232309746329, avg_op_counts: {"push": 0.0, "contains": 0.0, "clear": 0.0, "insert": 12030.515353805067, "pop": 0.0, "remove": 0.0, "nth": 0.0, "get": 0.0, "last": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 987.0, avg_n: 8732.64032421479, avg_op_counts: {"push": 0.0, "clear": 0.0, "contains": 0.0, "insert": 12066.183383991887, "first": 0.0, "last": 0.0, "pop": 0.0, "remove": 0.0, "get": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 1109.0, avg_n: 8875.040577096477, avg_op_counts: {"remove": 0.0, "first": 0.0, "get": 0.0, "pop": 0.0, "nth": 0.0, "contains": 0.0, "push": 0.0, "clear": 0.0, "last": 0.0, "insert": 12129.497745716852} }, ProfilerPartition { occurences: 1386.0, avg_n: 9011.180375180384, avg_op_counts: {"nth": 0.0, "first": 0.0, "insert": 12234.710678210677, "pop": 0.0, "remove": 0.0, "get": 0.0, "contains": 0.0, "last": 0.0, "push": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 1730.0, avg_n: 9153.336416184971, avg_op_counts: {"contains": 0.0, "clear": 0.0, "get": 0.0, "first": 0.0, "last": 0.0, "nth": 0.0, "pop": 0.0, "insert": 12304.128901734117, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 1997.0, avg_n: 9298.85327991987, avg_op_counts: {"last": 0.0, "first": 0.0, "nth": 0.0, "clear": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0, "insert": 12417.01402103156, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 2230.0, avg_n: 9444.0152466368, avg_op_counts: {"clear": 0.0, "push": 0.0, "first": 0.0, "get": 0.0, "pop": 0.0, "nth": 0.0, "remove": 0.0, "insert": 12495.20224215245, "contains": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 2340.0, avg_n: 9586.564102564113, avg_op_counts: {"nth": 0.0, "clear": 0.0, "insert": 12588.545726495697, "push": 0.0, "remove": 0.0, "first": 0.0, "get": 0.0, "pop": 0.0, "last": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 2674.0, avg_n: 9733.564323111435, avg_op_counts: {"contains": 0.0, "insert": 12671.632385938672, "pop": 0.0, "get": 0.0, "remove": 0.0, "clear": 0.0, "last": 0.0, "nth": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 2775.0, avg_n: 9895.215855855866, avg_op_counts: {"get": 0.0, "last": 0.0, "pop": 0.0, "clear": 0.0, "contains": 0.0, "push": 0.0, "remove": 0.0, "nth": 0.0, "first": 0.0, "insert": 12762.058018018031} }, ProfilerPartition { occurences: 2692.0, avg_n: 10059.015973254063, avg_op_counts: {"nth": 0.0, "clear": 0.0, "push": 0.0, "get": 0.0, "contains": 0.0, "pop": 0.0, "remove": 0.0, "first": 0.0, "insert": 12876.619242199076, "last": 0.0} }, ProfilerPartition { occurences: 2620.0, avg_n: 10227.479007633585, avg_op_counts: {"pop": 0.0, "contains": 0.0, "last": 0.0, "clear": 0.0, "nth": 0.0, "first": 0.0, "remove": 0.0, "push": 0.0, "insert": 12965.701145038189, "get": 0.0} }, ProfilerPartition { occurences: 2100.0, avg_n: 10391.046666666653, avg_op_counts: {"contains": 0.0, "get": 0.0, "push": 0.0, "clear": 0.0, "pop": 0.0, "remove": 0.0, "first": 0.0, "nth": 0.0, "last": 0.0, "insert": 13086.277619047612} }, ProfilerPartition { occurences: 1616.0, avg_n: 10543.473391089108, avg_op_counts: {"remove": 0.0, "first": 0.0, "push": 0.0, "get": 0.0, "clear": 0.0, "last": 0.0, "pop": 0.0, "nth": 0.0, "insert": 13166.605816831692, "contains": 0.0} }, ProfilerPartition { occurences: 1150.0, avg_n: 10677.04260869565, avg_op_counts: {"contains": 0.0, "clear": 0.0, "last": 0.0, "insert": 13288.413043478262, "remove": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 878.0, avg_n: 10792.537585421402, avg_op_counts: {"nth": 0.0, "pop": 0.0, "push": 0.0, "insert": 13369.568337129842, "contains": 0.0, "get": 0.0, "first": 0.0, "last": 0.0, "remove": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 789.0, avg_n: 10910.96831432194, avg_op_counts: {"nth": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "get": 0.0, "insert": 13418.711026615969, "contains": 0.0, "first": 0.0, "push": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 739.0, avg_n: 11033.42760487145, avg_op_counts: {"first": 0.0, "last": 0.0, "remove": 0.0, "nth": 0.0, "contains": 0.0, "clear": 0.0, "push": 0.0, "get": 0.0, "pop": 0.0, "insert": 13492.217861975649} }, ProfilerPartition { occurences: 606.0, avg_n: 11176.343234323444, avg_op_counts: {"push": 0.0, "nth": 0.0, "contains": 0.0, "pop": 0.0, "first": 0.0, "clear": 0.0, "get": 0.0, "insert": 13624.21782178219, "remove": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 429.0, avg_n: 11323.193473193476, avg_op_counts: {"insert": 13667.03962703963, "push": 0.0, "clear": 0.0, "remove": 0.0, "get": 0.0, "pop": 0.0, "first": 0.0, "contains": 0.0, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 351.0, avg_n: 11483.125356125362, avg_op_counts: {"pop": 0.0, "remove": 0.0, "push": 0.0, "first": 0.0, "insert": 13775.817663817665, "contains": 0.0, "get": 0.0, "nth": 0.0, "last": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 218.0, avg_n: 11650.0366972477, avg_op_counts: {"push": 0.0, "remove": 0.0, "first": 0.0, "pop": 0.0, "insert": 13864.041284403667, "last": 0.0, "get": 0.0, "nth": 0.0, "clear": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 131.0, avg_n: 11787.54961832061, avg_op_counts: {"clear": 0.0, "first": 0.0, "contains": 0.0, "last": 0.0, "remove": 0.0, "nth": 0.0, "insert": 13960.32824427481, "push": 0.0, "pop": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 91.0, avg_n: 11917.120879120885, avg_op_counts: {"insert": 14073.38461538461, "get": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0, "push": 0.0, "clear": 0.0, "pop": 0.0, "contains": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 55.0, avg_n: 12054.909090909096, avg_op_counts: {"last": 0.0, "first": 0.0, "pop": 0.0, "remove": 0.0, "insert": 14188.200000000004, "clear": 0.0, "push": 0.0, "nth": 0.0, "get": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 40.0, avg_n: 12217.624999999998, avg_op_counts: {"last": 0.0, "get": 0.0, "insert": 14278.7, "first": 0.0, "push": 0.0, "pop": 0.0, "remove": 0.0, "clear": 0.0, "nth": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 12363.64705882353, avg_op_counts: {"remove": 0.0, "nth": 0.0, "last": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0, "insert": 14590.94117647059, "contains": 0.0, "get": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 12482.125, avg_op_counts: {"pop": 0.0, "remove": 0.0, "get": 0.0, "first": 0.0, "contains": 0.0, "clear": 0.0, "last": 0.0, "nth": 0.0, "push": 0.0, "insert": 14452.5} }, ProfilerPartition { occurences: 5.0, avg_n: 12601.4, avg_op_counts: {"insert": 14476.8, "pop": 0.0, "first": 0.0, "push": 0.0, "clear": 0.0, "nth": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 12751.5, avg_op_counts: {"first": 0.0, "pop": 0.0, "last": 0.0, "clear": 0.0, "remove": 0.0, "push": 0.0, "get": 0.0, "insert": 14256.5, "nth": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 13009.5, avg_op_counts: {"contains": 0.0, "nth": 0.0, "insert": 14852.5, "last": 0.0, "pop": 0.0, "push": 0.0, "get": 0.0, "first": 0.0, "clear": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 86183.0, avg_op_counts: {"insert": 120149.0, "remove": 0.0, "pop": 0.0, "first": 0.0, "clear": 0.0, "nth": 0.0, "push": 0.0, "contains": 0.0, "get": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 87652.0, avg_op_counts: {"insert": 124355.0, "nth": 0.0, "first": 0.0, "last": 0.0, "clear": 0.0, "get": 0.0, "contains": 0.0, "pop": 0.0, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 87796.0, avg_op_counts: {"nth": 0.0, "pop": 0.0, "first": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "insert": 123123.0, "contains": 0.0, "get": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 88187.0, avg_op_counts: {"pop": 0.0, "clear": 0.0, "insert": 121640.0, "get": 0.0, "remove": 0.0, "last": 0.0, "nth": 0.0, "contains": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 88375.0, avg_op_counts: {"push": 0.0, "contains": 0.0, "clear": 0.0, "pop": 0.0, "remove": 0.0, "insert": 118912.0, "first": 0.0, "get": 0.0, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 88575.0, avg_op_counts: {"push": 0.0, "contains": 0.0, "clear": 0.0, "insert": 122323.0, "nth": 0.0, "get": 0.0, "last": 0.0, "first": 0.0, "remove": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 88740.0, avg_op_counts: {"clear": 0.0, "contains": 0.0, "get": 0.0, "last": 0.0, "pop": 0.0, "insert": 122954.5, "push": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 88940.0, avg_op_counts: {"get": 0.0, "clear": 0.0, "insert": 122962.0, "remove": 0.0, "last": 0.0, "first": 0.0, "push": 0.0, "contains": 0.0, "nth": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 89079.0, avg_op_counts: {"first": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "insert": 127854.0, "push": 0.0, "clear": 0.0, "last": 0.0, "get": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 89260.33333333333, avg_op_counts: {"push": 0.0, "pop": 0.0, "clear": 0.0, "first": 0.0, "nth": 0.0, "get": 0.0, "contains": 0.0, "insert": 124329.66666666669, "last": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 89607.66666666667, avg_op_counts: {"pop": 0.0, "contains": 0.0, "get": 0.0, "first": 0.0, "clear": 0.0, "insert": 124196.0, "remove": 0.0, "push": 0.0, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 89746.66666666667, avg_op_counts: {"last": 0.0, "push": 0.0, "insert": 125431.0, "nth": 0.0, "pop": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "contains": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 89938.33333333333, avg_op_counts: {"clear": 0.0, "nth": 0.0, "pop": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "get": 0.0, "last": 0.0, "contains": 0.0, "insert": 123175.66666666669} }, ProfilerPartition { occurences: 6.0, avg_n: 90093.16666666666, avg_op_counts: {"nth": 0.0, "last": 0.0, "remove": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0, "first": 0.0, "insert": 123977.66666666669, "contains": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 90280.88888888888, avg_op_counts: {"first": 0.0, "push": 0.0, "insert": 122874.88888888888, "pop": 0.0, "remove": 0.0, "last": 0.0, "get": 0.0, "contains": 0.0, "nth": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 90515.8, avg_op_counts: {"clear": 0.0, "remove": 0.0, "contains": 0.0, "insert": 124556.2, "get": 0.0, "pop": 0.0, "nth": 0.0, "first": 0.0, "last": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 90635.8, avg_op_counts: {"pop": 0.0, "insert": 124360.0, "last": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "clear": 0.0, "contains": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 90841.8, avg_op_counts: {"push": 0.0, "last": 0.0, "nth": 0.0, "get": 0.0, "contains": 0.0, "insert": 123709.0, "clear": 0.0, "first": 0.0, "pop": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 91021.22222222223, avg_op_counts: {"insert": 124758.22222222223, "first": 0.0, "last": 0.0, "nth": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0, "clear": 0.0, "remove": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 91298.33333333331, avg_op_counts: {"push": 0.0, "first": 0.0, "pop": 0.0, "insert": 125011.66666666669, "remove": 0.0, "last": 0.0, "get": 0.0, "nth": 0.0, "contains": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 91410.625, avg_op_counts: {"insert": 125034.5625, "nth": 0.0, "push": 0.0, "remove": 0.0, "first": 0.0, "get": 0.0, "clear": 0.0, "last": 0.0, "contains": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 91581.0, avg_op_counts: {"last": 0.0, "clear": 0.0, "push": 0.0, "pop": 0.0, "remove": 0.0, "nth": 0.0, "first": 0.0, "contains": 0.0, "get": 0.0, "insert": 124896.625} }, ProfilerPartition { occurences: 2.0, avg_n: 91712.0, avg_op_counts: {"nth": 0.0, "first": 0.0, "last": 0.0, "insert": 123502.0, "clear": 0.0, "pop": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 19.0, avg_n: 91819.05263157892, avg_op_counts: {"last": 0.0, "push": 0.0, "first": 0.0, "pop": 0.0, "insert": 125100.52631578948, "contains": 0.0, "clear": 0.0, "nth": 0.0, "get": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 92009.66666666669, avg_op_counts: {"pop": 0.0, "last": 0.0, "clear": 0.0, "nth": 0.0, "contains": 0.0, "insert": 124748.55555555556, "remove": 0.0, "get": 0.0, "push": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 92129.71428571428, avg_op_counts: {"pop": 0.0, "push": 0.0, "last": 0.0, "get": 0.0, "contains": 0.0, "clear": 0.0, "nth": 0.0, "remove": 0.0, "first": 0.0, "insert": 124379.07142857142} }, ProfilerPartition { occurences: 18.0, avg_n: 92275.1111111111, avg_op_counts: {"get": 0.0, "pop": 0.0, "nth": 0.0, "contains": 0.0, "first": 0.0, "insert": 126244.94444444444, "push": 0.0, "remove": 0.0, "last": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 92430.55555555556, avg_op_counts: {"push": 0.0, "clear": 0.0, "pop": 0.0, "contains": 0.0, "get": 0.0, "first": 0.0, "last": 0.0, "nth": 0.0, "remove": 0.0, "insert": 124890.55555555556} }, ProfilerPartition { occurences: 21.0, avg_n: 92573.42857142857, avg_op_counts: {"clear": 0.0, "insert": 125889.0, "nth": 0.0, "first": 0.0, "pop": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0, "get": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 92723.9411764706, avg_op_counts: {"pop": 0.0, "nth": 0.0, "contains": 0.0, "insert": 126348.5294117647, "last": 0.0, "first": 0.0, "push": 0.0, "remove": 0.0, "get": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 92863.61111111112, avg_op_counts: {"first": 0.0, "last": 0.0, "pop": 0.0, "get": 0.0, "insert": 125503.0, "contains": 0.0, "nth": 0.0, "remove": 0.0, "push": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 92981.57142857142, avg_op_counts: {"clear": 0.0, "get": 0.0, "insert": 125987.14285714286, "contains": 0.0, "first": 0.0, "remove": 0.0, "nth": 0.0, "push": 0.0, "pop": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 26.0, avg_n: 93157.92307692308, avg_op_counts: {"get": 0.0, "last": 0.0, "contains": 0.0, "push": 0.0, "insert": 125793.46153846156, "pop": 0.0, "clear": 0.0, "nth": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 93270.5, avg_op_counts: {"first": 0.0, "remove": 0.0, "clear": 0.0, "push": 0.0, "last": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "get": 0.0, "insert": 126119.0} }, ProfilerPartition { occurences: 24.0, avg_n: 93366.95833333331, avg_op_counts: {"last": 0.0, "push": 0.0, "insert": 126618.95833333331, "contains": 0.0, "first": 0.0, "nth": 0.0, "get": 0.0, "remove": 0.0, "clear": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 37.0, avg_n: 93521.21621621624, avg_op_counts: {"pop": 0.0, "first": 0.0, "insert": 126063.45945945944, "remove": 0.0, "nth": 0.0, "clear": 0.0, "get": 0.0, "last": 0.0, "contains": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 37.0, avg_n: 93674.75675675676, avg_op_counts: {"pop": 0.0, "contains": 0.0, "push": 0.0, "remove": 0.0, "get": 0.0, "nth": 0.0, "clear": 0.0, "first": 0.0, "insert": 125831.1081081081, "last": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 93839.54166666666, avg_op_counts: {"remove": 0.0, "nth": 0.0, "last": 0.0, "clear": 0.0, "get": 0.0, "insert": 125879.41666666669, "pop": 0.0, "contains": 0.0, "push": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 35.0, avg_n: 93997.05714285716, avg_op_counts: {"insert": 125980.42857142858, "pop": 0.0, "nth": 0.0, "contains": 0.0, "clear": 0.0, "last": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 94156.875, avg_op_counts: {"nth": 0.0, "get": 0.0, "first": 0.0, "insert": 125993.25, "remove": 0.0, "pop": 0.0, "push": 0.0, "clear": 0.0, "last": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 38.0, avg_n: 94301.94736842108, avg_op_counts: {"get": 0.0, "remove": 0.0, "insert": 126382.34210526312, "contains": 0.0, "last": 0.0, "nth": 0.0, "clear": 0.0, "first": 0.0, "pop": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 37.0, avg_n: 94438.972972973, avg_op_counts: {"insert": 126223.7297297297, "first": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "nth": 0.0, "remove": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 38.0, avg_n: 94570.0263157895, avg_op_counts: {"nth": 0.0, "insert": 126425.2894736842, "push": 0.0, "last": 0.0, "contains": 0.0, "first": 0.0, "pop": 0.0, "get": 0.0, "clear": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 94670.58333333331, avg_op_counts: {"first": 0.0, "contains": 0.0, "remove": 0.0, "last": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0, "nth": 0.0, "clear": 0.0, "insert": 126170.0} }, ProfilerPartition { occurences: 22.0, avg_n: 94784.54545454544, avg_op_counts: {"get": 0.0, "nth": 0.0, "insert": 126801.04545454546, "first": 0.0, "pop": 0.0, "last": 0.0, "clear": 0.0, "contains": 0.0, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 47.0, avg_n: 94905.23404255322, avg_op_counts: {"nth": 0.0, "last": 0.0, "push": 0.0, "pop": 0.0, "first": 0.0, "contains": 0.0, "insert": 126395.12765957446, "get": 0.0, "clear": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 30.0, avg_n: 95038.03333333334, avg_op_counts: {"push": 0.0, "insert": 126948.16666666669, "nth": 0.0, "pop": 0.0, "first": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0, "get": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 47.0, avg_n: 95189.31914893618, avg_op_counts: {"nth": 0.0, "last": 0.0, "first": 0.0, "remove": 0.0, "pop": 0.0, "insert": 126859.61702127656, "get": 0.0, "push": 0.0, "clear": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 40.0, avg_n: 95341.42500000005, avg_op_counts: {"first": 0.0, "remove": 0.0, "nth": 0.0, "insert": 126550.225, "last": 0.0, "push": 0.0, "clear": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 49.0, avg_n: 95488.51020408164, avg_op_counts: {"nth": 0.0, "remove": 0.0, "pop": 0.0, "contains": 0.0, "insert": 126452.20408163266, "clear": 0.0, "get": 0.0, "last": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 59.0, avg_n: 95642.59322033904, avg_op_counts: {"push": 0.0, "get": 0.0, "nth": 0.0, "clear": 0.0, "insert": 126582.0, "last": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 31.0, avg_n: 95773.87096774194, avg_op_counts: {"contains": 0.0, "remove": 0.0, "first": 0.0, "last": 0.0, "get": 0.0, "pop": 0.0, "nth": 0.0, "push": 0.0, "clear": 0.0, "insert": 126684.83870967744} }, ProfilerPartition { occurences: 56.0, avg_n: 95881.0, avg_op_counts: {"push": 0.0, "pop": 0.0, "clear": 0.0, "first": 0.0, "last": 0.0, "nth": 0.0, "get": 0.0, "remove": 0.0, "contains": 0.0, "insert": 126907.64285714286} }, ProfilerPartition { occurences: 58.0, avg_n: 96034.46551724136, avg_op_counts: {"get": 0.0, "clear": 0.0, "remove": 0.0, "pop": 0.0, "last": 0.0, "contains": 0.0, "insert": 126533.05172413794, "first": 0.0, "push": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 57.0, avg_n: 96186.3333333333, avg_op_counts: {"clear": 0.0, "get": 0.0, "contains": 0.0, "first": 0.0, "last": 0.0, "pop": 0.0, "remove": 0.0, "insert": 126673.87719298244, "nth": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 54.0, avg_n: 96325.88888888885, avg_op_counts: {"insert": 126765.81481481482, "get": 0.0, "pop": 0.0, "remove": 0.0, "nth": 0.0, "first": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 52.0, avg_n: 96462.9423076923, avg_op_counts: {"push": 0.0, "remove": 0.0, "contains": 0.0, "first": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "get": 0.0, "nth": 0.0, "insert": 127307.30769230766} }, ProfilerPartition { occurences: 66.0, avg_n: 96589.43939393942, avg_op_counts: {"insert": 126543.16666666669, "contains": 0.0, "clear": 0.0, "get": 0.0, "pop": 0.0, "last": 0.0, "push": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 56.0, avg_n: 96759.9464285714, avg_op_counts: {"pop": 0.0, "contains": 0.0, "insert": 126700.91071428574, "remove": 0.0, "first": 0.0, "clear": 0.0, "push": 0.0, "last": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 78.0, avg_n: 96918.53846153844, avg_op_counts: {"clear": 0.0, "pop": 0.0, "contains": 0.0, "last": 0.0, "remove": 0.0, "get": 0.0, "insert": 127086.6282051282, "push": 0.0, "nth": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 63.0, avg_n: 97084.93650793652, avg_op_counts: {"last": 0.0, "push": 0.0, "pop": 0.0, "insert": 126913.12698412698, "nth": 0.0, "clear": 0.0, "get": 0.0, "contains": 0.0, "remove": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 62.0, avg_n: 97221.9516129032, avg_op_counts: {"get": 0.0, "remove": 0.0, "clear": 0.0, "contains": 0.0, "nth": 0.0, "push": 0.0, "first": 0.0, "last": 0.0, "insert": 127391.40322580644, "pop": 0.0} }, ProfilerPartition { occurences: 70.0, avg_n: 97383.42857142857, avg_op_counts: {"get": 0.0, "insert": 126925.34285714282, "contains": 0.0, "push": 0.0, "first": 0.0, "last": 0.0, "pop": 0.0, "remove": 0.0, "nth": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 60.0, avg_n: 97531.9, avg_op_counts: {"first": 0.0, "pop": 0.0, "nth": 0.0, "insert": 127281.53333333335, "remove": 0.0, "contains": 0.0, "clear": 0.0, "get": 0.0, "push": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 57.0, avg_n: 97672.66666666669, avg_op_counts: {"nth": 0.0, "remove": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0, "insert": 127031.47368421052, "contains": 0.0, "last": 0.0, "first": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 73.0, avg_n: 97813.91780821914, avg_op_counts: {"pop": 0.0, "get": 0.0, "insert": 127705.15068493152, "remove": 0.0, "last": 0.0, "contains": 0.0, "nth": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 49.0, avg_n: 97933.61224489794, avg_op_counts: {"last": 0.0, "push": 0.0, "remove": 0.0, "pop": 0.0, "get": 0.0, "nth": 0.0, "clear": 0.0, "contains": 0.0, "first": 0.0, "insert": 127746.65306122448} }, ProfilerPartition { occurences: 64.0, avg_n: 98076.92187500004, avg_op_counts: {"remove": 0.0, "clear": 0.0, "first": 0.0, "push": 0.0, "contains": 0.0, "pop": 0.0, "insert": 127800.96875, "nth": 0.0, "get": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 54.0, avg_n: 98219.74074074072, avg_op_counts: {"get": 0.0, "push": 0.0, "last": 0.0, "pop": 0.0, "remove": 0.0, "insert": 127328.66666666666, "first": 0.0, "contains": 0.0, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 75.0, avg_n: 98362.36000000004, avg_op_counts: {"insert": 127605.44, "contains": 0.0, "push": 0.0, "remove": 0.0, "get": 0.0, "nth": 0.0, "first": 0.0, "last": 0.0, "pop": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 77.0, avg_n: 98528.935064935, avg_op_counts: {"get": 0.0, "pop": 0.0, "insert": 127320.09090909093, "last": 0.0, "push": 0.0, "first": 0.0, "contains": 0.0, "clear": 0.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 54.0, avg_n: 98674.05555555552, avg_op_counts: {"push": 0.0, "contains": 0.0, "remove": 0.0, "first": 0.0, "last": 0.0, "get": 0.0, "insert": 127902.29629629632, "clear": 0.0, "pop": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 49.0, avg_n: 98804.0, avg_op_counts: {"contains": 0.0, "clear": 0.0, "first": 0.0, "pop": 0.0, "remove": 0.0, "insert": 127585.04081632652, "nth": 0.0, "push": 0.0, "last": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 38.0, avg_n: 98920.42105263156, avg_op_counts: {"first": 0.0, "insert": 127963.94736842104, "last": 0.0, "clear": 0.0, "get": 0.0, "contains": 0.0, "nth": 0.0, "remove": 0.0, "pop": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 52.0, avg_n: 99051.73076923078, avg_op_counts: {"remove": 0.0, "contains": 0.0, "clear": 0.0, "push": 0.0, "last": 0.0, "get": 0.0, "insert": 128125.73076923077, "first": 0.0, "pop": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 83.0, avg_n: 99173.51807228918, avg_op_counts: {"clear": 0.0, "nth": 0.0, "get": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0, "insert": 128217.98795180724, "last": 0.0, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 71.0, avg_n: 99312.6338028169, avg_op_counts: {"last": 0.0, "get": 0.0, "clear": 0.0, "remove": 0.0, "insert": 128113.35211267605, "contains": 0.0, "push": 0.0, "pop": 0.0, "nth": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 59.0, avg_n: 99461.61016949153, avg_op_counts: {"get": 0.0, "nth": 0.0, "first": 0.0, "remove": 0.0, "insert": 127726.50847457629, "clear": 0.0, "pop": 0.0, "push": 0.0, "contains": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 52.0, avg_n: 99589.75, avg_op_counts: {"push": 0.0, "clear": 0.0, "contains": 0.0, "first": 0.0, "last": 0.0, "get": 0.0, "pop": 0.0, "nth": 0.0, "insert": 128209.00000000004, "remove": 0.0} }, ProfilerPartition { occurences: 48.0, avg_n: 99698.91666666669, avg_op_counts: {"first": 0.0, "clear": 0.0, "last": 0.0, "insert": 128082.125, "get": 0.0, "push": 0.0, "nth": 0.0, "remove": 0.0, "pop": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 49.0, avg_n: 99826.40816326533, avg_op_counts: {"last": 0.0, "contains": 0.0, "remove": 0.0, "pop": 0.0, "insert": 127810.55102040817, "push": 0.0, "get": 0.0, "clear": 0.0, "nth": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 35.0, avg_n: 99951.91428571429, avg_op_counts: {"contains": 0.0, "remove": 0.0, "clear": 0.0, "first": 0.0, "push": 0.0, "nth": 0.0, "insert": 128457.57142857142, "last": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 40.0, avg_n: 100053.275, avg_op_counts: {"insert": 128447.4, "first": 0.0, "push": 0.0, "get": 0.0, "remove": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "clear": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 62.0, avg_n: 100186.87096774195, avg_op_counts: {"insert": 128031.1935483871, "last": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "clear": 0.0, "nth": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 57.0, avg_n: 100342.05263157892, avg_op_counts: {"first": 0.0, "insert": 128333.84210526316, "push": 0.0, "last": 0.0, "nth": 0.0, "remove": 0.0, "clear": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 59.0, avg_n: 100472.74576271189, avg_op_counts: {"insert": 128494.8813559322, "nth": 0.0, "contains": 0.0, "clear": 0.0, "push": 0.0, "pop": 0.0, "remove": 0.0, "get": 0.0, "last": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 53.0, avg_n: 100642.35849056602, avg_op_counts: {"last": 0.0, "first": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0, "push": 0.0, "insert": 128527.45283018867, "get": 0.0} }, ProfilerPartition { occurences: 50.0, avg_n: 100777.74, avg_op_counts: {"push": 0.0, "insert": 128449.71999999996, "last": 0.0, "nth": 0.0, "pop": 0.0, "clear": 0.0, "contains": 0.0, "remove": 0.0, "get": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 40.0, avg_n: 100963.45, avg_op_counts: {"clear": 0.0, "push": 0.0, "first": 0.0, "insert": 128197.47500000003, "remove": 0.0, "nth": 0.0, "get": 0.0, "pop": 0.0, "last": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 51.0, avg_n: 101112.92156862748, avg_op_counts: {"pop": 0.0, "remove": 0.0, "insert": 128781.64705882355, "first": 0.0, "last": 0.0, "get": 0.0, "clear": 0.0, "push": 0.0, "contains": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 40.0, avg_n: 101270.525, avg_op_counts: {"insert": 129048.29999999996, "first": 0.0, "get": 0.0, "nth": 0.0, "pop": 0.0, "remove": 0.0, "last": 0.0, "push": 0.0, "clear": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 39.0, avg_n: 101401.10256410256, avg_op_counts: {"get": 0.0, "nth": 0.0, "push": 0.0, "first": 0.0, "pop": 0.0, "clear": 0.0, "insert": 129139.46153846156, "remove": 0.0, "last": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 41.0, avg_n: 101520.63414634149, avg_op_counts: {"remove": 0.0, "last": 0.0, "contains": 0.0, "clear": 0.0, "first": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0, "get": 0.0, "insert": 129129.78048780486} }, ProfilerPartition { occurences: 42.0, avg_n: 101652.52380952382, avg_op_counts: {"nth": 0.0, "insert": 129088.92857142857, "remove": 0.0, "contains": 0.0, "first": 0.0, "last": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 32.0, avg_n: 101818.0, avg_op_counts: {"clear": 0.0, "contains": 0.0, "first": 0.0, "insert": 129839.96875, "last": 0.0, "remove": 0.0, "push": 0.0, "pop": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 27.0, avg_n: 101940.25925925928, avg_op_counts: {"get": 0.0, "last": 0.0, "push": 0.0, "first": 0.0, "clear": 0.0, "insert": 129575.44444444444, "contains": 0.0, "pop": 0.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 25.0, avg_n: 102073.92, avg_op_counts: {"push": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "nth": 0.0, "insert": 129895.80000000002, "clear": 0.0, "pop": 0.0, "remove": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 19.0, avg_n: 102211.89473684212, avg_op_counts: {"remove": 0.0, "contains": 0.0, "pop": 0.0, "insert": 130055.94736842104, "last": 0.0, "get": 0.0, "clear": 0.0, "first": 0.0, "nth": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 102370.58333333336, avg_op_counts: {"clear": 0.0, "get": 0.0, "insert": 130027.37499999996, "last": 0.0, "remove": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 102492.1818181818, avg_op_counts: {"nth": 0.0, "insert": 129914.72727272726, "last": 0.0, "clear": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0, "first": 0.0, "push": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 26.0, avg_n: 102605.96153846152, avg_op_counts: {"push": 0.0, "get": 0.0, "clear": 0.0, "contains": 0.0, "pop": 0.0, "remove": 0.0, "last": 0.0, "nth": 0.0, "first": 0.0, "insert": 129822.61538461538} }, ProfilerPartition { occurences: 28.0, avg_n: 102770.14285714284, avg_op_counts: {"push": 0.0, "get": 0.0, "last": 0.0, "first": 0.0, "insert": 129112.5, "nth": 0.0, "pop": 0.0, "contains": 0.0, "remove": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 102946.76470588232, avg_op_counts: {"insert": 129906.11764705884, "get": 0.0, "clear": 0.0, "last": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 103071.60000000002, avg_op_counts: {"last": 0.0, "remove": 0.0, "insert": 129925.5, "push": 0.0, "nth": 0.0, "get": 0.0, "contains": 0.0, "clear": 0.0, "pop": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 103199.125, avg_op_counts: {"push": 0.0, "get": 0.0, "last": 0.0, "nth": 0.0, "clear": 0.0, "contains": 0.0, "pop": 0.0, "first": 0.0, "insert": 129789.0, "remove": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 103362.45454545454, avg_op_counts: {"first": 0.0, "last": 0.0, "insert": 130504.54545454546, "push": 0.0, "pop": 0.0, "contains": 0.0, "remove": 0.0, "get": 0.0, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 103522.5, avg_op_counts: {"clear": 0.0, "first": 0.0, "last": 0.0, "nth": 0.0, "remove": 0.0, "pop": 0.0, "contains": 0.0, "push": 0.0, "insert": 129790.125, "get": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 103642.07692307692, avg_op_counts: {"insert": 130128.61538461538, "remove": 0.0, "get": 0.0, "clear": 0.0, "first": 0.0, "contains": 0.0, "last": 0.0, "nth": 0.0, "pop": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 103800.85714285714, avg_op_counts: {"contains": 0.0, "clear": 0.0, "push": 0.0, "last": 0.0, "insert": 129779.14285714286, "nth": 0.0, "first": 0.0, "get": 0.0, "pop": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 103921.875, avg_op_counts: {"clear": 0.0, "get": 0.0, "remove": 0.0, "pop": 0.0, "first": 0.0, "insert": 130789.875, "push": 0.0, "last": 0.0, "nth": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 104083.55555555556, avg_op_counts: {"nth": 0.0, "first": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "pop": 0.0, "push": 0.0, "insert": 130196.77777777778, "last": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 104241.9, avg_op_counts: {"last": 0.0, "pop": 0.0, "clear": 0.0, "insert": 132418.09999999998, "push": 0.0, "remove": 0.0, "contains": 0.0, "get": 0.0, "nth": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 104368.625, avg_op_counts: {"push": 0.0, "pop": 0.0, "contains": 0.0, "insert": 131003.0, "clear": 0.0, "get": 0.0, "last": 0.0, "remove": 0.0, "first": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 104512.66666666669, avg_op_counts: {"first": 0.0, "clear": 0.0, "get": 0.0, "nth": 0.0, "contains": 0.0, "remove": 0.0, "push": 0.0, "last": 0.0, "pop": 0.0, "insert": 130950.0} }, ProfilerPartition { occurences: 5.0, avg_n: 104637.2, avg_op_counts: {"remove": 0.0, "get": 0.0, "clear": 0.0, "pop": 0.0, "insert": 131214.4, "contains": 0.0, "nth": 0.0, "last": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 104741.11111111112, avg_op_counts: {"last": 0.0, "remove": 0.0, "nth": 0.0, "contains": 0.0, "insert": 131187.22222222222, "get": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 104895.4, avg_op_counts: {"get": 0.0, "first": 0.0, "last": 0.0, "contains": 0.0, "push": 0.0, "insert": 130130.6, "nth": 0.0, "remove": 0.0, "clear": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 105045.66666666669, avg_op_counts: {"clear": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0, "last": 0.0, "get": 0.0, "contains": 0.0, "insert": 131373.66666666666, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 4.0, avg_n: 105168.5, avg_op_counts: {"pop": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "nth": 0.0, "insert": 131476.75, "last": 0.0, "clear": 0.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 4.0, avg_n: 105274.75, avg_op_counts: {"last": 0.0, "nth": 0.0, "push": 0.0, "remove": 0.0, "clear": 0.0, "insert": 130876.5, "pop": 0.0, "first": 0.0, "get": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 105511.66666666669, avg_op_counts: {"nth": 0.0, "get": 0.0, "pop": 0.0, "last": 0.0, "first": 0.0, "push": 0.0, "remove": 0.0, "clear": 0.0, "insert": 132182.66666666666, "contains": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 105820.33333333331, avg_op_counts: {"contains": 0.0, "first": 0.0, "clear": 0.0, "push": 0.0, "nth": 0.0, "last": 0.0, "insert": 130631.0, "get": 0.0, "remove": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 105984.0, avg_op_counts: {"get": 0.0, "pop": 0.0, "last": 0.0, "first": 0.0, "clear": 0.0, "remove": 0.0, "push": 0.0, "contains": 0.0, "nth": 0.0, "insert": 132931.0} }, ProfilerPartition { occurences: 2.0, avg_n: 106076.0, avg_op_counts: {"remove": 0.0, "clear": 0.0, "get": 0.0, "pop": 0.0, "push": 0.0, "nth": 0.0, "first": 0.0, "contains": 0.0, "last": 0.0, "insert": 130937.0} }, ProfilerPartition { occurences: 1.0, avg_n: 106245.0, avg_op_counts: {"pop": 0.0, "get": 0.0, "clear": 0.0, "nth": 0.0, "contains": 0.0, "remove": 0.0, "first": 0.0, "last": 0.0, "insert": 132746.0, "push": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 106429.0, avg_op_counts: {"push": 0.0, "remove": 0.0, "last": 0.0, "insert": 133914.0, "pop": 0.0, "nth": 0.0, "clear": 0.0, "first": 0.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 106882.5, avg_op_counts: {"insert": 132252.0, "last": 0.0, "clear": 0.0, "get": 0.0, "push": 0.0, "contains": 0.0, "first": 0.0, "remove": 0.0, "nth": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 107419.0, avg_op_counts: {"contains": 0.0, "last": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "insert": 132028.0, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 177743.0, avg_op_counts: {"last": 0.0, "get": 0.0, "first": 0.0, "nth": 0.0, "push": 0.0, "remove": 0.0, "insert": 245941.0, "pop": 0.0, "clear": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 179733.0, avg_op_counts: {"push": 0.0, "contains": 0.0, "pop": 0.0, "get": 0.0, "clear": 0.0, "insert": 253658.0, "nth": 0.0, "remove": 0.0, "last": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 181890.0, avg_op_counts: {"push": 0.0, "contains": 0.0, "first": 0.0, "get": 0.0, "last": 0.0, "clear": 0.0, "nth": 0.0, "remove": 0.0, "pop": 0.0, "insert": 248499.0} }, ProfilerPartition { occurences: 2.0, avg_n: 182852.0, avg_op_counts: {"first": 0.0, "insert": 248449.5, "nth": 0.0, "push": 0.0, "last": 0.0, "pop": 0.0, "get": 0.0, "contains": 0.0, "clear": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 182970.0, avg_op_counts: {"insert": 250456.0, "contains": 0.0, "get": 0.0, "first": 0.0, "push": 0.0, "clear": 0.0, "last": 0.0, "pop": 0.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 183079.0, avg_op_counts: {"first": 0.0, "last": 0.0, "nth": 0.0, "push": 0.0, "pop": 0.0, "contains": 0.0, "get": 0.0, "clear": 0.0, "remove": 0.0, "insert": 254132.0} }, ProfilerPartition { occurences: 1.0, avg_n: 183235.0, avg_op_counts: {"pop": 0.0, "clear": 0.0, "get": 0.0, "last": 0.0, "first": 0.0, "remove": 0.0, "insert": 248843.0, "nth": 0.0, "push": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 4.0, avg_n: 183634.75, avg_op_counts: {"get": 0.0, "contains": 0.0, "first": 0.0, "nth": 0.0, "pop": 0.0, "push": 0.0, "remove": 0.0, "last": 0.0, "clear": 0.0, "insert": 248808.75} }, ProfilerPartition { occurences: 1.0, avg_n: 183784.0, avg_op_counts: {"clear": 0.0, "get": 0.0, "push": 0.0, "nth": 0.0, "contains": 0.0, "insert": 252911.0, "pop": 0.0, "remove": 0.0, "first": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 183963.5, avg_op_counts: {"clear": 0.0, "last": 0.0, "pop": 0.0, "insert": 252248.5, "push": 0.0, "first": 0.0, "contains": 0.0, "nth": 0.0, "remove": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 4.0, avg_n: 184167.5, avg_op_counts: {"insert": 248845.75, "pop": 0.0, "last": 0.0, "push": 0.0, "contains": 0.0, "nth": 0.0, "first": 0.0, "clear": 0.0, "get": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 184323.33333333337, avg_op_counts: {"get": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0, "contains": 0.0, "nth": 0.0, "pop": 0.0, "remove": 0.0, "insert": 252196.33333333337, "last": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 184493.0, avg_op_counts: {"clear": 0.0, "last": 0.0, "nth": 0.0, "push": 0.0, "pop": 0.0, "remove": 0.0, "insert": 251444.0, "get": 0.0, "contains": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 184698.0, avg_op_counts: {"push": 0.0, "clear": 0.0, "first": 0.0, "contains": 0.0, "remove": 0.0, "last": 0.0, "get": 0.0, "insert": 250041.0, "pop": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 184794.5, avg_op_counts: {"pop": 0.0, "nth": 0.0, "clear": 0.0, "last": 0.0, "contains": 0.0, "push": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "insert": 251650.5} }, ProfilerPartition { occurences: 2.0, avg_n: 184925.0, avg_op_counts: {"nth": 0.0, "get": 0.0, "remove": 0.0, "push": 0.0, "pop": 0.0, "last": 0.0, "contains": 0.0, "clear": 0.0, "insert": 253010.0, "first": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 185071.5, avg_op_counts: {"get": 0.0, "pop": 0.0, "last": 0.0, "contains": 0.0, "nth": 0.0, "insert": 252484.0, "clear": 0.0, "first": 0.0, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 185266.0, avg_op_counts: {"get": 0.0, "contains": 0.0, "remove": 0.0, "last": 0.0, "first": 0.0, "push": 0.0, "clear": 0.0, "insert": 252508.0, "nth": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 185460.28571428577, avg_op_counts: {"pop": 0.0, "contains": 0.0, "nth": 0.0, "push": 0.0, "get": 0.0, "remove": 0.0, "last": 0.0, "clear": 0.0, "first": 0.0, "insert": 251638.2857142857} }, ProfilerPartition { occurences: 3.0, avg_n: 185621.0, avg_op_counts: {"contains": 0.0, "nth": 0.0, "clear": 0.0, "last": 0.0, "first": 0.0, "insert": 250481.33333333337, "push": 0.0, "get": 0.0, "pop": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 185984.3333333333, avg_op_counts: {"push": 0.0, "remove": 0.0, "last": 0.0, "get": 0.0, "contains": 0.0, "insert": 252611.55555555556, "clear": 0.0, "first": 0.0, "pop": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 186131.125, avg_op_counts: {"push": 0.0, "clear": 0.0, "get": 0.0, "insert": 253215.75, "contains": 0.0, "last": 0.0, "pop": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 186289.66666666663, avg_op_counts: {"pop": 0.0, "nth": 0.0, "contains": 0.0, "first": 0.0, "get": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "insert": 251812.0, "remove": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 186435.8, avg_op_counts: {"first": 0.0, "insert": 251207.0, "push": 0.0, "clear": 0.0, "remove": 0.0, "nth": 0.0, "last": 0.0, "pop": 0.0, "get": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 186660.0, avg_op_counts: {"pop": 0.0, "contains": 0.0, "push": 0.0, "get": 0.0, "last": 0.0, "nth": 0.0, "clear": 0.0, "first": 0.0, "remove": 0.0, "insert": 250868.0} }, ProfilerPartition { occurences: 3.0, avg_n: 186769.0, avg_op_counts: {"get": 0.0, "pop": 0.0, "clear": 0.0, "contains": 0.0, "last": 0.0, "first": 0.0, "insert": 253499.0, "push": 0.0, "nth": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 186843.33333333337, avg_op_counts: {"get": 0.0, "clear": 0.0, "pop": 0.0, "contains": 0.0, "insert": 249660.0, "first": 0.0, "nth": 0.0, "remove": 0.0, "last": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 186999.0, avg_op_counts: {"contains": 0.0, "remove": 0.0, "nth": 0.0, "insert": 251090.5, "pop": 0.0, "clear": 0.0, "push": 0.0, "last": 0.0, "first": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 187131.75, avg_op_counts: {"contains": 0.0, "first": 0.0, "insert": 253265.5, "push": 0.0, "remove": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 187307.75, avg_op_counts: {"pop": 0.0, "insert": 251796.0, "contains": 0.0, "first": 0.0, "clear": 0.0, "remove": 0.0, "get": 0.0, "push": 0.0, "nth": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 187471.77777777775, avg_op_counts: {"pop": 0.0, "nth": 0.0, "insert": 253346.1111111111, "first": 0.0, "last": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "clear": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 187648.3, avg_op_counts: {"clear": 0.0, "get": 0.0, "push": 0.0, "contains": 0.0, "pop": 0.0, "insert": 252773.7, "nth": 0.0, "remove": 0.0, "first": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 187805.8, avg_op_counts: {"push": 0.0, "pop": 0.0, "clear": 0.0, "insert": 254815.7, "remove": 0.0, "get": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 187976.29999999996, avg_op_counts: {"push": 0.0, "remove": 0.0, "get": 0.0, "nth": 0.0, "first": 0.0, "insert": 252631.1, "contains": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 188140.77777777775, avg_op_counts: {"nth": 0.0, "last": 0.0, "remove": 0.0, "push": 0.0, "insert": 252600.38888888888, "pop": 0.0, "clear": 0.0, "first": 0.0, "get": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 188336.7, avg_op_counts: {"get": 0.0, "first": 0.0, "push": 0.0, "contains": 0.0, "insert": 253341.8, "clear": 0.0, "nth": 0.0, "pop": 0.0, "remove": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 188487.57142857145, avg_op_counts: {"last": 0.0, "pop": 0.0, "first": 0.0, "clear": 0.0, "contains": 0.0, "nth": 0.0, "get": 0.0, "push": 0.0, "insert": 252807.57142857145, "remove": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 188639.2857142857, avg_op_counts: {"get": 0.0, "remove": 0.0, "insert": 255467.2857142857, "last": 0.0, "nth": 0.0, "first": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 188782.2, avg_op_counts: {"pop": 0.0, "contains": 0.0, "get": 0.0, "last": 0.0, "insert": 252893.4, "remove": 0.0, "nth": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 188938.0, avg_op_counts: {"get": 0.0, "contains": 0.0, "nth": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "first": 0.0, "insert": 252720.5, "push": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 189029.6666666667, avg_op_counts: {"contains": 0.0, "last": 0.0, "get": 0.0, "clear": 0.0, "nth": 0.0, "first": 0.0, "push": 0.0, "pop": 0.0, "insert": 253790.5, "remove": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 189161.61538461535, avg_op_counts: {"first": 0.0, "insert": 252997.46153846156, "remove": 0.0, "last": 0.0, "get": 0.0, "contains": 0.0, "pop": 0.0, "push": 0.0, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 189277.4, avg_op_counts: {"push": 0.0, "insert": 253791.46666666667, "last": 0.0, "contains": 0.0, "get": 0.0, "clear": 0.0, "pop": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 189440.0, avg_op_counts: {"insert": 253894.85714285713, "get": 0.0, "push": 0.0, "nth": 0.0, "contains": 0.0, "first": 0.0, "clear": 0.0, "last": 0.0, "pop": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 189562.1111111111, avg_op_counts: {"clear": 0.0, "first": 0.0, "pop": 0.0, "nth": 0.0, "push": 0.0, "last": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "insert": 253369.22222222225} }, ProfilerPartition { occurences: 8.0, avg_n: 189694.25, avg_op_counts: {"clear": 0.0, "last": 0.0, "push": 0.0, "get": 0.0, "contains": 0.0, "nth": 0.0, "insert": 253517.375, "remove": 0.0, "pop": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 189774.2307692308, avg_op_counts: {"push": 0.0, "insert": 252823.6923076923, "clear": 0.0, "remove": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "nth": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 189929.875, avg_op_counts: {"remove": 0.0, "nth": 0.0, "pop": 0.0, "first": 0.0, "push": 0.0, "last": 0.0, "clear": 0.0, "insert": 254223.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 190103.2, avg_op_counts: {"insert": 253658.4, "pop": 0.0, "first": 0.0, "clear": 0.0, "get": 0.0, "push": 0.0, "nth": 0.0, "remove": 0.0, "contains": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 190192.33333333337, avg_op_counts: {"get": 0.0, "first": 0.0, "nth": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0, "insert": 254484.33333333337, "last": 0.0, "contains": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 19.0, avg_n: 190341.4210526316, avg_op_counts: {"insert": 255092.4736842105, "push": 0.0, "get": 0.0, "remove": 0.0, "contains": 0.0, "first": 0.0, "last": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 190539.07142857145, avg_op_counts: {"push": 0.0, "remove": 0.0, "insert": 254845.7857142857, "get": 0.0, "first": 0.0, "nth": 0.0, "pop": 0.0, "last": 0.0, "clear": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 190656.3, avg_op_counts: {"first": 0.0, "pop": 0.0, "get": 0.0, "clear": 0.0, "insert": 253696.0, "remove": 0.0, "contains": 0.0, "nth": 0.0, "last": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 190776.8, avg_op_counts: {"last": 0.0, "pop": 0.0, "remove": 0.0, "first": 0.0, "push": 0.0, "clear": 0.0, "insert": 255116.0, "contains": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 190895.3125, avg_op_counts: {"get": 0.0, "nth": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "contains": 0.0, "push": 0.0, "insert": 255035.50000000003, "remove": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 191017.8, avg_op_counts: {"get": 0.0, "clear": 0.0, "insert": 255176.4, "remove": 0.0, "nth": 0.0, "last": 0.0, "contains": 0.0, "first": 0.0, "pop": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 30.0, avg_n: 191171.63333333333, avg_op_counts: {"remove": 0.0, "clear": 0.0, "last": 0.0, "pop": 0.0, "contains": 0.0, "insert": 255135.4, "get": 0.0, "push": 0.0, "first": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 25.0, avg_n: 191349.56000000008, avg_op_counts: {"nth": 0.0, "clear": 0.0, "push": 0.0, "insert": 254900.28, "first": 0.0, "pop": 0.0, "remove": 0.0, "contains": 0.0, "last": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 191543.8, avg_op_counts: {"pop": 0.0, "get": 0.0, "push": 0.0, "insert": 255540.26666666663, "first": 0.0, "nth": 0.0, "contains": 0.0, "remove": 0.0, "last": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 191719.8500000001, avg_op_counts: {"first": 0.0, "pop": 0.0, "insert": 254870.35000000003, "remove": 0.0, "contains": 0.0, "get": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 191876.07142857145, avg_op_counts: {"clear": 0.0, "nth": 0.0, "remove": 0.0, "contains": 0.0, "first": 0.0, "pop": 0.0, "insert": 253364.35714285716, "get": 0.0, "push": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 192043.46666666665, avg_op_counts: {"push": 0.0, "pop": 0.0, "last": 0.0, "clear": 0.0, "get": 0.0, "first": 0.0, "nth": 0.0, "contains": 0.0, "remove": 0.0, "insert": 253518.73333333337} }, ProfilerPartition { occurences: 16.0, avg_n: 192175.93750000003, avg_op_counts: {"remove": 0.0, "get": 0.0, "clear": 0.0, "contains": 0.0, "first": 0.0, "insert": 256024.0625, "last": 0.0, "nth": 0.0, "push": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 192306.15384615387, avg_op_counts: {"insert": 254467.00000000003, "push": 0.0, "clear": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "nth": 0.0, "pop": 0.0, "remove": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 192472.15, avg_op_counts: {"insert": 255525.84999999995, "contains": 0.0, "last": 0.0, "first": 0.0, "pop": 0.0, "nth": 0.0, "remove": 0.0, "push": 0.0, "get": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 192629.29411764708, avg_op_counts: {"remove": 0.0, "insert": 253977.05882352943, "nth": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0, "push": 0.0, "get": 0.0, "last": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 192747.2857142857, avg_op_counts: {"insert": 254195.92857142855, "first": 0.0, "pop": 0.0, "push": 0.0, "remove": 0.0, "get": 0.0, "contains": 0.0, "last": 0.0, "nth": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 192887.75000000003, avg_op_counts: {"get": 0.0, "last": 0.0, "remove": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0, "nth": 0.0, "insert": 254348.9, "push": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 193026.57142857145, avg_op_counts: {"get": 0.0, "insert": 253249.7142857143, "nth": 0.0, "push": 0.0, "clear": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "remove": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 193169.13333333333, avg_op_counts: {"insert": 256425.00000000003, "last": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0, "nth": 0.0, "pop": 0.0, "remove": 0.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 193263.58333333337, avg_op_counts: {"nth": 0.0, "pop": 0.0, "insert": 254252.75, "remove": 0.0, "last": 0.0, "contains": 0.0, "clear": 0.0, "get": 0.0, "push": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 193386.31249999997, avg_op_counts: {"nth": 0.0, "clear": 0.0, "pop": 0.0, "get": 0.0, "contains": 0.0, "push": 0.0, "remove": 0.0, "last": 0.0, "insert": 254558.81249999997, "first": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 193520.1764705882, avg_op_counts: {"nth": 0.0, "clear": 0.0, "pop": 0.0, "last": 0.0, "insert": 254977.8823529412, "contains": 0.0, "push": 0.0, "remove": 0.0, "get": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 193667.25, avg_op_counts: {"nth": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0, "contains": 0.0, "first": 0.0, "insert": 255086.41666666663, "remove": 0.0, "pop": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 193801.64285714287, avg_op_counts: {"contains": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "push": 0.0, "nth": 0.0, "insert": 254118.2142857143, "clear": 0.0, "last": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 193932.7142857143, avg_op_counts: {"last": 0.0, "first": 0.0, "nth": 0.0, "push": 0.0, "pop": 0.0, "contains": 0.0, "insert": 255405.14285714284, "remove": 0.0, "get": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 194051.27777777775, avg_op_counts: {"push": 0.0, "last": 0.0, "nth": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "first": 0.0, "insert": 253264.66666666663, "pop": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 194228.0, avg_op_counts: {"get": 0.0, "first": 0.0, "push": 0.0, "clear": 0.0, "insert": 253977.2307692308, "nth": 0.0, "pop": 0.0, "contains": 0.0, "remove": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 194373.85714285716, avg_op_counts: {"clear": 0.0, "push": 0.0, "nth": 0.0, "insert": 256568.7142857143, "last": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "first": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 194500.6, avg_op_counts: {"first": 0.0, "insert": 253440.4, "push": 0.0, "contains": 0.0, "nth": 0.0, "clear": 0.0, "pop": 0.0, "remove": 0.0, "last": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 194698.91666666663, avg_op_counts: {"get": 0.0, "clear": 0.0, "first": 0.0, "last": 0.0, "remove": 0.0, "pop": 0.0, "insert": 254637.33333333337, "nth": 0.0, "push": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 194885.0588235294, avg_op_counts: {"pop": 0.0, "insert": 255225.0588235294, "nth": 0.0, "get": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "remove": 0.0, "clear": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 25.0, avg_n: 195041.84, avg_op_counts: {"first": 0.0, "remove": 0.0, "nth": 0.0, "contains": 0.0, "insert": 254809.20000000004, "clear": 0.0, "last": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 195172.3333333333, avg_op_counts: {"clear": 0.0, "last": 0.0, "pop": 0.0, "nth": 0.0, "contains": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "get": 0.0, "insert": 254499.53333333335} }, ProfilerPartition { occurences: 23.0, avg_n: 195301.04347826084, avg_op_counts: {"first": 0.0, "push": 0.0, "insert": 255218.5652173913, "remove": 0.0, "get": 0.0, "pop": 0.0, "contains": 0.0, "nth": 0.0, "last": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 195400.25, avg_op_counts: {"last": 0.0, "get": 0.0, "clear": 0.0, "pop": 0.0, "remove": 0.0, "insert": 252834.5, "nth": 0.0, "contains": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 195524.7499999999, avg_op_counts: {"insert": 255743.31250000003, "contains": 0.0, "pop": 0.0, "last": 0.0, "clear": 0.0, "get": 0.0, "nth": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 195675.35294117645, avg_op_counts: {"remove": 0.0, "clear": 0.0, "nth": 0.0, "last": 0.0, "insert": 253987.35294117648, "pop": 0.0, "push": 0.0, "first": 0.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 22.0, avg_n: 195827.95454545456, avg_op_counts: {"first": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0, "last": 0.0, "get": 0.0, "remove": 0.0, "contains": 0.0, "insert": 254242.40909090912, "push": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 196004.95, avg_op_counts: {"nth": 0.0, "contains": 0.0, "insert": 254657.15, "get": 0.0, "push": 0.0, "clear": 0.0, "first": 0.0, "remove": 0.0, "last": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 196167.8125, avg_op_counts: {"contains": 0.0, "insert": 255063.6875, "first": 0.0, "push": 0.0, "nth": 0.0, "last": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 196290.16666666663, avg_op_counts: {"insert": 254894.66666666663, "nth": 0.0, "remove": 0.0, "last": 0.0, "get": 0.0, "contains": 0.0, "first": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 196401.5, avg_op_counts: {"pop": 0.0, "remove": 0.0, "insert": 253446.1, "first": 0.0, "nth": 0.0, "last": 0.0, "get": 0.0, "push": 0.0, "clear": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 196529.82352941175, avg_op_counts: {"pop": 0.0, "contains": 0.0, "first": 0.0, "clear": 0.0, "last": 0.0, "remove": 0.0, "nth": 0.0, "push": 0.0, "get": 0.0, "insert": 254043.70588235292} }, ProfilerPartition { occurences: 11.0, avg_n: 196632.7272727273, avg_op_counts: {"last": 0.0, "first": 0.0, "clear": 0.0, "contains": 0.0, "insert": 257092.7272727273, "pop": 0.0, "push": 0.0, "get": 0.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 196763.5625, avg_op_counts: {"last": 0.0, "insert": 253829.625, "remove": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0, "nth": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 196899.0, avg_op_counts: {"last": 0.0, "get": 0.0, "clear": 0.0, "push": 0.0, "nth": 0.0, "insert": 254586.2, "pop": 0.0, "contains": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 197012.18181818185, avg_op_counts: {"last": 0.0, "get": 0.0, "first": 0.0, "clear": 0.0, "insert": 255587.09090909088, "nth": 0.0, "push": 0.0, "pop": 0.0, "remove": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 197127.15384615384, avg_op_counts: {"last": 0.0, "first": 0.0, "pop": 0.0, "push": 0.0, "contains": 0.0, "insert": 254984.07692307697, "nth": 0.0, "clear": 0.0, "get": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 197233.55, avg_op_counts: {"remove": 0.0, "first": 0.0, "insert": 255585.7, "contains": 0.0, "nth": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0, "last": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 22.0, avg_n: 197399.4090909091, avg_op_counts: {"push": 0.0, "pop": 0.0, "insert": 256074.13636363635, "nth": 0.0, "clear": 0.0, "get": 0.0, "first": 0.0, "last": 0.0, "contains": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 26.0, avg_n: 197591.03846153847, avg_op_counts: {"clear": 0.0, "insert": 254739.6923076923, "get": 0.0, "remove": 0.0, "contains": 0.0, "nth": 0.0, "pop": 0.0, "last": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 197777.59999999995, avg_op_counts: {"push": 0.0, "insert": 255391.3333333333, "nth": 0.0, "contains": 0.0, "last": 0.0, "pop": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 21.0, avg_n: 197922.2857142857, avg_op_counts: {"get": 0.0, "push": 0.0, "first": 0.0, "insert": 255032.76190476184, "clear": 0.0, "nth": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 198027.0, avg_op_counts: {"pop": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0, "push": 0.0, "nth": 0.0, "clear": 0.0, "first": 0.0, "insert": 254739.2142857143, "get": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 198169.75, avg_op_counts: {"remove": 0.0, "nth": 0.0, "pop": 0.0, "last": 0.0, "contains": 0.0, "push": 0.0, "clear": 0.0, "get": 0.0, "insert": 255473.20833333337, "first": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 198332.875, avg_op_counts: {"push": 0.0, "nth": 0.0, "get": 0.0, "first": 0.0, "pop": 0.0, "remove": 0.0, "insert": 256391.06250000003, "last": 0.0, "contains": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 22.0, avg_n: 198482.1818181818, avg_op_counts: {"clear": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0, "push": 0.0, "get": 0.0, "insert": 254204.3636363636, "last": 0.0, "nth": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 198669.05555555553, avg_op_counts: {"remove": 0.0, "first": 0.0, "nth": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0, "push": 0.0, "clear": 0.0, "last": 0.0, "insert": 255435.94444444444} }, ProfilerPartition { occurences: 13.0, avg_n: 198793.1538461538, avg_op_counts: {"first": 0.0, "get": 0.0, "last": 0.0, "remove": 0.0, "contains": 0.0, "push": 0.0, "insert": 255958.6923076923, "nth": 0.0, "clear": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 198954.2, avg_op_counts: {"nth": 0.0, "pop": 0.0, "get": 0.0, "contains": 0.0, "first": 0.0, "last": 0.0, "insert": 254058.6, "push": 0.0, "clear": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 199124.55, avg_op_counts: {"get": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0, "last": 0.0, "insert": 256178.50000000003, "clear": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 199291.4166666667, avg_op_counts: {"remove": 0.0, "insert": 256088.0833333333, "first": 0.0, "last": 0.0, "pop": 0.0, "get": 0.0, "nth": 0.0, "contains": 0.0, "push": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 199444.5, avg_op_counts: {"last": 0.0, "insert": 256683.88888888888, "push": 0.0, "contains": 0.0, "remove": 0.0, "pop": 0.0, "get": 0.0, "first": 0.0, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 199581.2222222222, avg_op_counts: {"nth": 0.0, "get": 0.0, "fi┌──────┬───────────────────────────────────────────────────────────────────────────┬────────────────────┬───────────────────────────────────────────────────────┐
│ name │ implementation                                                            │ estimated cost     │ file                                                  │
├──────┼───────────────────────────────────────────────────────────────────────────┼────────────────────┼───────────────────────────────────────────────────────┤
│ Set  │ std::collections::HashSet                                                 │ 133433432727.14162 │ /opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs │
│ Set  │ std::collections::BTreeSet                                                │ 170481581914.69168 │ /opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs │
│ Set  │ std::collections::HashSet until n=185540, then std::collections::BTreeSet │ 129643771040.39177 │ /opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs │
└──────┴───────────────────────────────────────────────────────────────────────────┴────────────────────┴───────────────────────────────────────────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|}
name & implementation & estimated cost & file \\
\hline
Set & std::collections::HashSet & 133433432727.14162 & /opt/candelabra/src/tests/aoc\_2022\_09/src/types.pr.rs \\
Set & std::collections::BTreeSet & 170481581914.69168 & /opt/candelabra/src/tests/aoc\_2022\_09/src/types.pr.rs \\
Set & std::collections::HashSet until n=185540, then std::collections::BTreeSet & 129643771040.39177 & /opt/candelabra/src/tests/aoc\_2022\_09/src/types.pr.rs \\
\end{tabular}
\end{center}
rst": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "remove": 0.0, "pop": 0.0, "insert": 256277.38888888885, "contains": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 199729.82352941175, avg_op_counts: {"nth": 0.0, "last": 0.0, "first": 0.0, "remove": 0.0, "clear": 0.0, "insert": 255604.47058823527, "contains": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 199897.3076923077, avg_op_counts: {"get": 0.0, "insert": 256014.61538461535, "last": 0.0, "remove": 0.0, "clear": 0.0, "contains": 0.0, "pop": 0.0, "nth": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 200031.75, avg_op_counts: {"clear": 0.0, "insert": 257983.1666666667, "contains": 0.0, "remove": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 200180.75000000003, avg_op_counts: {"push": 0.0, "clear": 0.0, "first": 0.0, "last": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0, "remove": 0.0, "nth": 0.0, "insert": 254821.16666666663} }, ProfilerPartition { occurences: 13.0, avg_n: 200303.9230769231, avg_op_counts: {"first": 0.0, "push": 0.0, "pop": 0.0, "last": 0.0, "insert": 256241.6153846154, "remove": 0.0, "contains": 0.0, "get": 0.0, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 200433.7333333333, avg_op_counts: {"remove": 0.0, "get": 0.0, "clear": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0, "nth": 0.0, "insert": 257446.53333333333, "last": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 200531.1818181818, avg_op_counts: {"remove": 0.0, "insert": 257560.45454545453, "nth": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "contains": 0.0, "pop": 0.0, "first": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 200663.4117647059, avg_op_counts: {"insert": 256133.76470588235, "contains": 0.0, "push": 0.0, "pop": 0.0, "get": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0, "clear": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 200826.00000000003, avg_op_counts: {"contains": 0.0, "pop": 0.0, "push": 0.0, "get": 0.0, "first": 0.0, "clear": 0.0, "insert": 256013.0909090909, "last": 0.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 200936.375, avg_op_counts: {"contains": 0.0, "remove": 0.0, "push": 0.0, "nth": 0.0, "first": 0.0, "pop": 0.0, "get": 0.0, "last": 0.0, "clear": 0.0, "insert": 256689.31250000003} }, ProfilerPartition { occurences: 12.0, avg_n: 201080.5, avg_op_counts: {"contains": 0.0, "first": 0.0, "clear": 0.0, "push": 0.0, "remove": 0.0, "pop": 0.0, "nth": 0.0, "insert": 256954.8333333333, "last": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 201185.0, avg_op_counts: {"pop": 0.0, "nth": 0.0, "push": 0.0, "contains": 0.0, "last": 0.0, "insert": 258066.8, "get": 0.0, "remove": 0.0, "first": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 201317.7142857143, avg_op_counts: {"pop": 0.0, "contains": 0.0, "insert": 256467.2142857143, "remove": 0.0, "nth": 0.0, "get": 0.0, "clear": 0.0, "first": 0.0, "push": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 201430.0, avg_op_counts: {"contains": 0.0, "last": 0.0, "first": 0.0, "pop": 0.0, "remove": 0.0, "insert": 252509.0, "nth": 0.0, "push": 0.0, "clear": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 201550.7142857143, avg_op_counts: {"last": 0.0, "contains": 0.0, "insert": 255113.42857142855, "pop": 0.0, "get": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0, "push": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 201671.25, avg_op_counts: {"push": 0.0, "last": 0.0, "pop": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "clear": 0.0, "insert": 257461.0, "nth": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 201801.7272727273, avg_op_counts: {"last": 0.0, "remove": 0.0, "insert": 257478.45454545456, "contains": 0.0, "nth": 0.0, "clear": 0.0, "first": 0.0, "pop": 0.0, "push": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 201966.6153846154, avg_op_counts: {"insert": 257766.0, "clear": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "nth": 0.0, "contains": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 202139.0909090909, avg_op_counts: {"last": 0.0, "remove": 0.0, "get": 0.0, "first": 0.0, "contains": 0.0, "nth": 0.0, "push": 0.0, "clear": 0.0, "insert": 258351.9090909091, "pop": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 202338.10000000003, avg_op_counts: {"first": 0.0, "push": 0.0, "contains": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0, "remove": 0.0, "get": 0.0, "last": 0.0, "insert": 258487.0} }, ProfilerPartition { occurences: 11.0, avg_n: 202566.18181818185, avg_op_counts: {"get": 0.0, "first": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0, "last": 0.0, "contains": 0.0, "clear": 0.0, "remove": 0.0, "insert": 258508.1818181818} }, ProfilerPartition { occurences: 4.0, avg_n: 202727.5, avg_op_counts: {"get": 0.0, "first": 0.0, "last": 0.0, "clear": 0.0, "remove": 0.0, "contains": 0.0, "nth": 0.0, "pop": 0.0, "insert": 256648.5, "push": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 202845.125, avg_op_counts: {"remove": 0.0, "first": 0.0, "contains": 0.0, "nth": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "insert": 258673.5, "last": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 202968.79999999996, avg_op_counts: {"push": 0.0, "pop": 0.0, "clear": 0.0, "first": 0.0, "remove": 0.0, "get": 0.0, "insert": 257374.0, "contains": 0.0, "nth": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 203091.5, avg_op_counts: {"contains": 0.0, "first": 0.0, "get": 0.0, "last": 0.0, "nth": 0.0, "insert": 257104.66666666663, "remove": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 203206.55555555556, avg_op_counts: {"pop": 0.0, "first": 0.0, "remove": 0.0, "get": 0.0, "last": 0.0, "nth": 0.0, "contains": 0.0, "insert": 257757.55555555556, "push": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 203584.14285714287, avg_op_counts: {"clear": 0.0, "push": 0.0, "nth": 0.0, "contains": 0.0, "pop": 0.0, "first": 0.0, "remove": 0.0, "last": 0.0, "insert": 258777.42857142855, "get": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 203775.2, avg_op_counts: {"get": 0.0, "first": 0.0, "last": 0.0, "clear": 0.0, "remove": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "push": 0.0, "insert": 257524.8} }, ProfilerPartition { occurences: 8.0, avg_n: 203957.375, avg_op_counts: {"get": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0, "first": 0.0, "remove": 0.0, "push": 0.0, "last": 0.0, "contains": 0.0, "insert": 258483.25} }, ProfilerPartition { occurences: 2.0, avg_n: 204074.5, avg_op_counts: {"first": 0.0, "remove": 0.0, "nth": 0.0, "insert": 258986.0, "last": 0.0, "push": 0.0, "pop": 0.0, "contains": 0.0, "get": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 204201.33333333337, avg_op_counts: {"nth": 0.0, "get": 0.0, "clear": 0.0, "remove": 0.0, "first": 0.0, "insert": 258703.33333333337, "pop": 0.0, "last": 0.0, "push": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 204350.33333333337, avg_op_counts: {"first": 0.0, "remove": 0.0, "clear": 0.0, "nth": 0.0, "last": 0.0, "push": 0.0, "pop": 0.0, "insert": 257076.33333333337, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 204556.0, avg_op_counts: {"first": 0.0, "contains": 0.0, "clear": 0.0, "remove": 0.0, "get": 0.0, "insert": 255819.0, "pop": 0.0, "last": 0.0, "push": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 204673.0, avg_op_counts: {"last": 0.0, "get": 0.0, "contains": 0.0, "pop": 0.0, "insert": 258599.0, "nth": 0.0, "push": 0.0, "remove": 0.0, "clear": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 204916.5, avg_op_counts: {"pop": 0.0, "first": 0.0, "remove": 0.0, "nth": 0.0, "push": 0.0, "clear": 0.0, "contains": 0.0, "get": 0.0, "last": 0.0, "insert": 261051.0} }, ProfilerPartition { occurences: 2.0, avg_n: 205068.0, avg_op_counts: {"nth": 0.0, "last": 0.0, "insert": 261254.5, "push": 0.0, "clear": 0.0, "first": 0.0, "contains": 0.0, "remove": 0.0, "pop": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 4.0, avg_n: 205183.25, avg_op_counts: {"push": 0.0, "get": 0.0, "remove": 0.0, "insert": 259279.25, "last": 0.0, "clear": 0.0, "contains": 0.0, "pop": 0.0, "nth": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 205312.33333333337, avg_op_counts: {"first": 0.0, "last": 0.0, "clear": 0.0, "contains": 0.0, "insert": 258939.66666666663, "remove": 0.0, "get": 0.0, "pop": 0.0, "nth": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 205543.0, avg_op_counts: {"get": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "pop": 0.0, "last": 0.0, "nth": 0.0, "clear": 0.0, "insert": 257986.66666666663, "contains": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 205645.5, avg_op_counts: {"remove": 0.0, "pop": 0.0, "nth": 0.0, "clear": 0.0, "insert": 260875.5, "first": 0.0, "last": 0.0, "contains": 0.0, "get": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 205757.0, avg_op_counts: {"clear": 0.0, "get": 0.0, "push": 0.0, "last": 0.0, "contains": 0.0, "pop": 0.0, "first": 0.0, "remove": 0.0, "nth": 0.0, "insert": 262184.0} }, ProfilerPartition { occurences: 2.0, avg_n: 206016.0, avg_op_counts: {"push": 0.0, "clear": 0.0, "pop": 0.0, "get": 0.0, "insert": 258189.0, "contains": 0.0, "remove": 0.0, "last": 0.0, "nth": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 206161.0, avg_op_counts: {"nth": 0.0, "first": 0.0, "clear": 0.0, "contains": 0.0, "pop": 0.0, "last": 0.0, "get": 0.0, "push": 0.0, "insert": 256212.0, "remove": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 206363.0, avg_op_counts: {"insert": 261549.5, "pop": 0.0, "clear": 0.0, "contains": 0.0, "first": 0.0, "nth": 0.0, "last": 0.0, "push": 0.0, "get": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 206538.0, avg_op_counts: {"nth": 0.0, "push": 0.0, "remove": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0, "get": 0.0, "clear": 0.0, "insert": 262991.0, "last": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 206701.0, avg_op_counts: {"nth": 0.0, "pop": 0.0, "get": 0.0, "clear": 0.0, "remove": 0.0, "push": 0.0, "insert": 261433.0, "contains": 0.0, "last": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 206882.5, avg_op_counts: {"push": 0.0, "contains": 0.0, "pop": 0.0, "insert": 261582.5, "clear": 0.0, "nth": 0.0, "last": 0.0, "first": 0.0, "get": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 207086.0, avg_op_counts: {"get": 0.0, "nth": 0.0, "insert": 261129.0, "clear": 0.0, "contains": 0.0, "push": 0.0, "last": 0.0, "pop": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 207273.0, avg_op_counts: {"get": 0.0, "push": 0.0, "pop": 0.0, "last": 0.0, "insert": 262664.0, "nth": 0.0, "clear": 0.0, "contains": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 207381.0, avg_op_counts: {"last": 0.0, "insert": 260916.0, "remove": 0.0, "get": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0, "first": 0.0, "clear": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 207624.0, avg_op_counts: {"push": 0.0, "remove": 0.0, "insert": 258835.0, "clear": 0.0, "first": 0.0, "pop": 0.0, "contains": 0.0, "get": 0.0, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 207943.0, avg_op_counts: {"clear": 0.0, "last": 0.0, "first": 0.0, "nth": 0.0, "insert": 258782.0, "remove": 0.0, "contains": 0.0, "push": 0.0, "pop": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 208167.0, avg_op_counts: {"first": 0.0, "contains": 0.0, "remove": 0.0, "get": 0.0, "clear": 0.0, "last": 0.0, "pop": 0.0, "push": 0.0, "insert": 262336.0, "nth": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 208644.0, avg_op_counts: {"first": 0.0, "clear": 0.0, "last": 0.0, "remove": 0.0, "nth": 0.0, "contains": 0.0, "insert": 262515.0, "push": 0.0, "pop": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 208852.0, avg_op_counts: {"clear": 0.0, "remove": 0.0, "pop": 0.0, "contains": 0.0, "nth": 0.0, "get": 0.0, "first": 0.0, "insert": 265951.0, "last": 0.0, "push": 0.0} }]
[2024-03-25T16:48:12Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::BTreeSet", [1611378.5393701917, 1611904.7953785497, 823212.3770195701, 877909.1802425239, 5444150.502387831, 10331368.283662885, 16420934.312000334, 20771584.754874073, 41384840.91431523, 112125520.16317935, 142700405.49186614, 190553761.5633446, 301216335.740182, 533370434.41639894, 718836201.3915637, 952013739.4674629, 1077353959.976245, 1360575416.0284967, 1711074302.6999466, 1997018920.2178447, 2248216770.0649176, 2381007079.724069, 2743830999.0327835, 2873489649.1336803, 2818160759.661931, 2767339098.1686916, 2243059044.384349, 1739780154.6063597, 1251472503.4671245, 962581424.5842819, 869357488.0395521, 819857317.3083594, 679968038.6310923, 483662091.5933762, 399572844.8340162, 250209509.2792839, 151623222.82445344, 106325638.19302188, 64881376.81711989, 47568373.36172246, 20689951.21061495, 9655830.171588989, 6052412.78997779, 2387755.494297795, 2494018.381682663, 14755720.298420224, 15357279.579613905, 15213382.3821096, 15052267.074498348, 14725092.618737694, 15158864.053921107, 30493120.179736428, 15258929.769743035, 15874267.562685989, 46341526.21318146, 46351897.22198868, 46837145.87965671, 46027923.489397764, 92708791.18796165, 137922771.65611708, 77740251.30508918, 77652495.71616527, 77305256.16428731, 140423325.10101616, 46951192.50296995, 250556685.36592522, 125219296.75597304, 30970313.568161614, 298144458.70612836, 140928495.2280166, 218670006.49014282, 285518413.38200104, 282617782.61533815, 332532344.41130716, 270325800.575438, 284458583.4606196, 222195788.87945125, 412283138.8754109, 31809363.24743679, 383361828.2892711, 588757814.172953, 588005037.4388757, 381786577.7170092, 557541810.4770306, 382577995.6561906, 607943114.8696147, 591499265.9556867, 608748539.8261671, 383837981.27406776, 353759105.90862715, 753672112.2979252, 483407371.6319521, 757229377.8482172, 643236833.7724979, 787778566.8449944, 950058421.254815, 499828520.8186261, 904858047.3749675, 934931884.4335587, 920344869.6857212, 872982710.8511399, 844662846.5754489, 1066128431.0032163, 906284043.6618274, 1266898195.9350777, 1022485662.9794672, 1010551111.7963403, 1137437883.7579336, 978210073.6075281, 927947886.96956, 1195339403.786385, 802960325.0059347, 1049755599.5410627, 882914705.2151341, 1229570811.9679015, 1260296078.5077555, 888351832.0039866, 804475422.293871, 625995049.3234183, 858114781.636393, 1371272357.4340582, 1172647492.5174806, 972033411.4867857, 860341083.4078668, 793687336.0168958, 808876026.1757329, 580955976.9618806, 664139410.3807704, 1026573883.1430328, 946544812.0892503, 981447369.3326694, 882400254.1506363, 832354194.4238757, 665018856.9783181, 852219601.1396135, 670170117.3147999, 654183503.7821943, 687974340.1416392, 704864044.835534, 540483766.2435368, 455303179.67788076, 422821334.42057633, 321899096.7665869, 406750572.69754255, 186346728.51830575, 440322396.1192405, 471875879.58269686, 288438671.4982942, 169770635.33539608, 271470937.5121432, 187774393.24838293, 135892986.091005, 221496207.39836192, 119014055.88065849, 137134336.874253, 153664757.6280499, 173749290.05401045, 137575856.76016384, 51596430.53913494, 86205737.08429568, 155195335.16618794, 85571954.75672059, 103722430.43426862, 69232639.26874997, 68942475.12806389, 52266670.24059286, 51709485.78827873, 17550113.882308718, 34584942.46053653, 17541835.656344946, 35415331.76488672, 35031705.52604251, 17519207.83048438, 40906562.91498345, 42439873.25382853, 41842532.69234529, 83905857.23648262, 42306434.10761891, 42941145.72429141, 42066754.52833927, 168441724.04126942, 42823508.26834695, 85467724.04340339, 168730644.23976648, 128310578.27978787, 127991532.32118857, 42451315.18937663, 85473333.9813303, 85967983.33260162, 85826114.23214118, 42941608.80123573, 299726500.3323944, 127923825.44110066, 387447164.3245704, 345369524.4248994, 257710673.25734758, 214334499.27504605, 128511361.92488003, 129900512.19894314, 255922170.82830003, 85835212.39878154, 346449248.0576864, 344616136.3966293, 390266697.9406695, 432872847.8953817, 436570304.79128957, 433042756.32563055, 779756045.5196104, 434717459.28025806, 303794049.15814507, 307125876.3234408, 434511543.59450805, 347529179.65986097, 261820293.17735207, 565721876.9966192, 655025240.2728409, 611895284.7370425, 392686303.26526797, 349392797.11415076, 566341415.2388064, 701210591.7615731, 218751779.89881203, 395137586.3890006, 836534889.6259811, 616151493.8590811, 438271667.32215846, 440878912.4941535, 705426168.9096316, 220645843.01136732, 1324252936.1599512, 1103095962.8103392, 663892922.7074538, 883320365.4901277, 614948828.1060648, 659594800.5097711, 710793096.8715184, 574223431.4145958, 887522745.197611, 750162678.0064492, 618524406.052315, 884497129.0938947, 308359845.8078664, 669331612.3464285, 531074094.72662854, 709202536.3851587, 755060011.420183, 533436853.4258462, 620221369.2507105, 311799079.6091949, 795321658.5622437, 576308723.8515011, 627236665.0966454, 442725177.99453676, 1068168831.8216404, 758772717.3226163, 1114527227.9579916, 668154649.5959224, 1027779033.4887637, 531375144.07314396, 716908135.160299, 756812702.4309717, 980818573.7315736, 893562402.4696388, 716326367.3221414, 268538784.0690966, 445163499.79660153, 758842032.1777064, 497055449.53330684, 714081535.605193, 223902645.55532533, 494683055.72257495, 583438553.212131, 899990283.7453657, 992353196.2982345, 1167310713.4066446, 675532362.3545647, 944809114.4266576, 629336519.6235272, 1082413679.6941655, 724540056.0256542, 988168145.6267031, 812852891.0318459, 588470746.848601, 674274708.5066435, 906976320.6598372, 1088506593.2232516, 818637397.7721083, 817660320.66346, 770534080.4506704, 590459785.9710813, 549441592.5307436, 542938166.8926169, 591669659.7229912, 686160066.8039277, 503546666.6224302, 774189708.8709011, 500942445.79063404, 730798065.7208416, 548890920.8983109, 459525338.5803448, 639589633.1246612, 44994277.45606195, 318317906.7842301, 367265546.5557839, 505211963.366378, 598016017.6022567, 507412653.4244498, 461786726.3855327, 508336542.6388016, 183604021.06149408, 370229092.50915784, 460623268.0937863, 276180975.56317925, 415459175.3576194, 324761348.61783665, 230974679.99436486, 371126611.96473587, 92992991.70460656, 139387352.70712942, 138569243.2964664, 45990631.02843586, 139517472.37190402, 93958336.84170163, 94071917.03876331, 186782261.48648933, 139954331.20439532, 139530257.36397532, 94089044.04839428, 47295396.03238361, 93217692.98261993, 46270907.981254466, 94523600.48636295, 47545768.610768445, 47285854.23362982, 94674272.96113767, 47282208.30912151, 47585239.25852263, 47282961.77621592, 93875972.63485973, 46970574.089494355, 47645695.84491774, 47742262.103310645, 48395458.868462674]), ("std::collections::HashSet", [835182.1211514242, 833651.9898410423, 424603.21982710407, 452123.88156075304, 2798344.8695250647, 5298674.709466821, 8402170.58179247, 10606514.604563557, 21091463.929415707, 57029355.19237383, 72442328.28367327, 96569131.46970369, 152363658.6032867, 269286924.7382512, 362228298.29550236, 478887584.7583321, 541060471.8250359, 682260242.6386924, 856681682.2727008, 998280505.6185629, 1122128083.0655954, 1186649520.4836104, 1365426820.3954163, 1427639701.6350727, 1397903887.4791484, 1370474352.9609125, 1109124005.4649541, 859056683.4993172, 617193715.0768694, 474229270.2325115, 427853213.7791842, 403061448.7143024, 333878827.1990646, 237194269.74001324, 195696070.1609404, 122377017.1001901, 74077090.17711803, 51893461.309061274, 31632246.159427423, 23162672.474126372, 10063610.626782289, 4692490.241602294, 2938760.1288184146, 1158128.0163984683, 1207475.3147546938, 8374773.408306993, 8789408.594518254, 8714220.922964763, 8641245.5244924, 8462530.32026488, 8721815.69319172, 17561164.7064452, 8797805.052996075, 9159902.947143987, 26768274.478693962, 26827853.561427355, 27130430.502263583, 26691169.67513085, 53809025.62630541, 80138441.96120514, 45231434.886270955, 45211735.89066629, 45063238.30336547, 81941474.295206, 27441541.433383405, 146538131.74262434, 73306954.57833911, 18144698.227650203, 174783673.31994176, 82709212.27635393, 128424341.15238246, 167826085.90662396, 166271424.44127536, 195800242.803025, 159311645.77819157, 167777030.8480212, 131143843.2456703, 243587111.82615152, 18806109.58729381, 226776133.34136528, 348591111.1706644, 348457792.16937876, 226468615.48082805, 331028042.9855373, 227359625.5915463, 361597165.5331035, 352098916.17345345, 362645053.26291156, 228795580.92363748, 211007245.718835, 449862158.2077461, 288767633.21194285, 452739262.813812, 384927835.7466359, 471832261.8738693, 569543425.8092636, 299869691.93639886, 543207127.4983975, 561767819.3498658, 553497203.5247511, 525444807.3521465, 508809492.7608094, 642694833.8036926, 546884712.2953124, 765207137.72833, 618187907.4018685, 611466189.6134596, 688898952.9919113, 592980557.5957212, 562979743.9763279, 725809471.5882226, 487901894.3399995, 638402115.6866666, 537392276.707261, 749018191.5636986, 768491724.0723815, 542156191.8187469, 491344519.10222775, 382598684.5655223, 524874587.5192725, 839357682.498812, 718370788.2680179, 595999208.2761678, 527916130.0634396, 487331779.38691324, 497033316.621767, 357248141.67066246, 408645851.8247862, 632153062.471757, 583408994.714249, 605390829.6353912, 544843484.4662871, 514355578.4925987, 411403809.7360929, 527681121.3205986, 415347756.0009166, 405754637.76016045, 427016623.7051944, 437843102.41951877, 336064977.9081442, 283306908.0252993, 263304799.10055977, 200621863.06906003, 253744663.39767367, 116333537.75318041, 275073141.24890465, 295073265.6066521, 180556249.9192632, 106351752.20530695, 170190560.189017, 117834180.31854066, 85358413.31682055, 139227567.40315452, 74880447.62552369, 86343543.91856468, 96844913.90065593, 109606395.0163742, 86852737.45103133, 32601254.087835014, 54509683.54402176, 98194139.2209005, 54192406.69608708, 65746006.91337653, 43916345.22281132, 43760048.61016468, 33222356.961647823, 32928872.600074396, 11186942.56421139, 22057554.216239188, 11199125.217847772, 22634877.74519701, 22450497.492614843, 11263492.1982444, 39296528.665190086, 41193080.30365366, 41067711.80159902, 82759677.53260778, 41753745.28767679, 42403825.13853343, 41573555.46917754, 166807496.12811905, 42440379.81326812, 84780736.20719978, 167548702.5051187, 127513063.62022577, 127306037.0403423, 42268065.58548307, 85146189.60183805, 85695836.29994075, 85618191.59481415, 42879954.18320567, 299591708.4329343, 127970671.5751138, 388304040.9985032, 346390947.0934688, 258680507.60525024, 215300329.214173, 129236977.8067967, 130705995.76033352, 257605868.6923768, 86467908.14594357, 349237023.3292583, 347697940.40929455, 394082727.9209442, 437494705.2157997, 441581982.47661424, 438390233.151009, 790038765.8045413, 440884437.329568, 308337512.3932311, 311956898.8665122, 441663212.07040256, 353525574.66711336, 266460366.36649507, 576128969.2390368, 667462515.266067, 624021887.9569595, 400713610.4424016, 356771043.4888726, 578532567.9730647, 716862917.9523109, 223828612.03789353, 404488152.48173434, 856968722.6490811, 631825237.5961859, 449683445.2344729, 452630539.07039034, 724657352.7347511, 226799448.2369867, 1362228557.1595306, 1135735036.8399346, 684197464.7963641, 911133072.9029348, 634804039.7574353, 681457811.4121463, 734836167.6126621, 594030598.1575623, 918892895.389024, 777282871.1479676, 641260268.3030099, 917647696.3576181, 320136912.9072032, 695385357.3093455, 552003903.7043226, 737599761.1078768, 785812960.3517148, 555566630.3529873, 646380049.5280346, 325159823.6320356, 829886657.7047733, 601879359.5675199, 655537790.4699187, 462989919.4818319, 1118152506.764758, 795005965.8451887, 1168648746.8879964, 701049518.3410859, 1079060787.9093118, 558160183.4510291, 753505444.9940214, 796034757.4555852, 1032421678.7790706, 941390566.1040341, 755269838.7440449, 283307596.8649199, 469901933.7095341, 801514749.3421605, 525270941.6159421, 755099011.9616472, 236920431.55682343, 523733337.0674298, 618047563.0860072, 953871622.9131012, 1052614822.0888478, 1239353155.2528617, 717875576.4868143, 1004737929.3423247, 669595936.5956547, 1152456385.159153, 772036448.119863, 1053710002.5920322, 867553051.6962903, 628449461.1075637, 720645029.5697906, 970150021.9449093, 1165265527.201725, 877015230.304995, 876547925.2995124, 826621275.3908094, 633952154.7383898, 590295725.7016968, 583728369.3122569, 636499093.2381327, 738611005.0771186, 542293066.9661974, 834292634.1687685, 540255108.2889329, 788568027.3020213, 592691859.0994337, 496444413.5333642, 691416339.9139795, 48666466.474350736, 344496961.9647779, 397700217.25880736, 547420662.0933272, 648490815.5005085, 550695273.0193301, 501655415.6614915, 552827343.1566308, 199827603.85089397, 403169859.5052829, 501903311.1036203, 301108133.2164256, 453206010.67550486, 354906473.9619633, 252644232.03854534, 406297270.42587596, 101862457.3531099, 152773973.98855373, 151984948.09906444, 50492583.85915167, 153259771.49346215, 103332482.37293391, 103531767.57760875, 205677397.05189478, 154206596.6689409, 153907379.17130572, 103834290.92736584, 52221545.70481505, 103053096.99422021, 51188010.835786045, 104668192.79576972, 52692034.805808745, 52444285.23526072, 105092180.81449509, 52535444.857734844, 52918696.66227476, 52609259.07842364, 104570231.4564334, 52399856.741200164, 53208904.36977208, 53436047.12004686, 54219898.53192844])]
[2024-03-25T16:48:12Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::HashSet", 835182.1211514242), ("std::collections::HashSet", 833651.9898410423), ("std::collections::HashSet", 424603.21982710407), ("std::collections::HashSet", 452123.88156075304), ("std::collections::HashSet", 2798344.8695250647), ("std::collections::HashSet", 5298674.709466821), ("std::collections::HashSet", 8402170.58179247), ("std::collections::HashSet", 10606514.604563557), ("std::collections::HashSet", 21091463.929415707), ("std::collections::HashSet", 57029355.19237383), ("std::collections::HashSet", 72442328.28367327), ("std::collections::HashSet", 96569131.46970369), ("std::collections::HashSet", 152363658.6032867), ("std::collections::HashSet", 269286924.7382512), ("std::collections::HashSet", 362228298.29550236), ("std::collections::HashSet", 478887584.7583321), ("std::collections::HashSet", 541060471.8250359), ("std::collections::HashSet", 682260242.6386924), ("std::collections::HashSet", 856681682.2727008), ("std::collections::HashSet", 998280505.6185629), ("std::collections::HashSet", 1122128083.0655954), ("std::collections::HashSet", 1186649520.4836104), ("std::collections::HashSet", 1365426820.3954163), ("std::collections::HashSet", 1427639701.6350727), ("std::collections::HashSet", 1397903887.4791484), ("std::collections::HashSet", 1370474352.9609125), ("std::collections::HashSet", 1109124005.4649541), ("std::collections::HashSet", 859056683.4993172), ("std::collections::HashSet", 617193715.0768694), ("std::collections::HashSet", 474229270.2325115), ("std::collections::HashSet", 427853213.7791842), ("std::collections::HashSet", 403061448.7143024), ("std::collections::HashSet", 333878827.1990646), ("std::collections::HashSet", 237194269.74001324), ("std::collections::HashSet", 195696070.1609404), ("std::collections::HashSet", 122377017.1001901), ("std::collections::HashSet", 74077090.17711803), ("std::collections::HashSet", 51893461.309061274), ("std::collections::HashSet", 31632246.159427423), ("std::collections::HashSet", 23162672.474126372), ("std::collections::HashSet", 10063610.626782289), ("std::collections::HashSet", 4692490.241602294), ("std::collections::HashSet", 2938760.1288184146), ("std::collections::HashSet", 1158128.0163984683), ("std::collections::HashSet", 1207475.3147546938), ("std::collections::HashSet", 8374773.408306993), ("std::collections::HashSet", 8789408.594518254), ("std::collections::HashSet", 8714220.922964763), ("std::collections::HashSet", 8641245.5244924), ("std::collections::HashSet", 8462530.32026488), ("std::collections::HashSet", 8721815.69319172), ("std::collections::HashSet", 17561164.7064452), ("std::collections::HashSet", 8797805.052996075), ("std::collections::HashSet", 9159902.947143987), ("std::collections::HashSet", 26768274.478693962), ("std::collections::HashSet", 26827853.561427355), ("std::collections::HashSet", 27130430.502263583), ("std::collections::HashSet", 26691169.67513085), ("std::collections::HashSet", 53809025.62630541), ("std::collections::HashSet", 80138441.96120514), ("std::collections::HashSet", 45231434.886270955), ("std::collections::HashSet", 45211735.89066629), ("std::collections::HashSet", 45063238.30336547), ("std::collections::HashSet", 81941474.295206), ("std::collections::HashSet", 27441541.433383405), ("std::collections::HashSet", 146538131.74262434), ("std::collections::HashSet", 73306954.57833911), ("std::collections::HashSet", 18144698.227650203), ("std::collections::HashSet", 174783673.31994176), ("std::collections::HashSet", 82709212.27635393), ("std::collections::HashSet", 128424341.15238246), ("std::collections::HashSet", 167826085.90662396), ("std::collections::HashSet", 166271424.44127536), ("std::collections::HashSet", 195800242.803025), ("std::collections::HashSet", 159311645.77819157), ("std::collections::HashSet", 167777030.8480212), ("std::collections::HashSet", 131143843.2456703), ("std::collections::HashSet", 243587111.82615152), ("std::collections::HashSet", 18806109.58729381), ("std::collections::HashSet", 226776133.34136528), ("std::collections::HashSet", 348591111.1706644), ("std::collections::HashSet", 348457792.16937876), ("std::collections::HashSet", 226468615.48082805), ("std::collections::HashSet", 331028042.9855373), ("std::collections::HashSet", 227359625.5915463), ("std::collections::HashSet", 361597165.5331035), ("std::collections::HashSet", 352098916.17345345), ("std::collections::HashSet", 362645053.26291156), ("std::collections::HashSet", 228795580.92363748), ("std::collections::HashSet", 211007245.718835), ("std::collections::HashSet", 449862158.2077461), ("std::collections::HashSet", 288767633.21194285), ("std::collections::HashSet", 452739262.813812), ("std::collections::HashSet", 384927835.7466359), ("std::collections::HashSet", 471832261.8738693), ("std::collections::HashSet", 569543425.8092636), ("std::collections::HashSet", 299869691.93639886), ("std::collections::HashSet", 543207127.4983975), ("std::collections::HashSet", 561767819.3498658), ("std::collections::HashSet", 553497203.5247511), ("std::collections::HashSet", 525444807.3521465), ("std::collections::HashSet", 508809492.7608094), ("std::collections::HashSet", 642694833.8036926), ("std::collections::HashSet", 546884712.2953124), ("std::collections::HashSet", 765207137.72833), ("std::collections::HashSet", 618187907.4018685), ("std::collections::HashSet", 611466189.6134596), ("std::collections::HashSet", 688898952.9919113), ("std::collections::HashSet", 592980557.5957212), ("std::collections::HashSet", 562979743.9763279), ("std::collections::HashSet", 725809471.5882226), ("std::collections::HashSet", 487901894.3399995), ("std::collections::HashSet", 638402115.6866666), ("std::collections::HashSet", 537392276.707261), ("std::collections::HashSet", 749018191.5636986), ("std::collections::HashSet", 768491724.0723815), ("std::collections::HashSet", 542156191.8187469), ("std::collections::HashSet", 491344519.10222775), ("std::collections::HashSet", 382598684.5655223), ("std::collections::HashSet", 524874587.5192725), ("std::collections::HashSet", 839357682.498812), ("std::collections::HashSet", 718370788.2680179), ("std::collections::HashSet", 595999208.2761678), ("std::collections::HashSet", 527916130.0634396), ("std::collections::HashSet", 487331779.38691324), ("std::collections::HashSet", 497033316.621767), ("std::collections::HashSet", 357248141.67066246), ("std::collections::HashSet", 408645851.8247862), ("std::collections::HashSet", 632153062.471757), ("std::collections::HashSet", 583408994.714249), ("std::collections::HashSet", 605390829.6353912), ("std::collections::HashSet", 544843484.4662871), ("std::collections::HashSet", 514355578.4925987), ("std::collections::HashSet", 411403809.7360929), ("std::collections::HashSet", 527681121.3205986), ("std::collections::HashSet", 415347756.0009166), ("std::collections::HashSet", 405754637.76016045), ("std::collections::HashSet", 427016623.7051944), ("std::collections::HashSet", 437843102.41951877), ("std::collections::HashSet", 336064977.9081442), ("std::collections::HashSet", 283306908.0252993), ("std::collections::HashSet", 263304799.10055977), ("std::collections::HashSet", 200621863.06906003), ("std::collections::HashSet", 253744663.39767367), ("std::collections::HashSet", 116333537.75318041), ("std::collections::HashSet", 275073141.24890465), ("std::collections::HashSet", 295073265.6066521), ("std::collections::HashSet", 180556249.9192632), ("std::collections::HashSet", 106351752.20530695), ("std::collections::HashSet", 170190560.189017), ("std::collections::HashSet", 117834180.31854066), ("std::collections::HashSet", 85358413.31682055), ("std::collections::HashSet", 139227567.40315452), ("std::collections::HashSet", 74880447.62552369), ("std::collections::HashSet", 86343543.91856468), ("std::collections::HashSet", 96844913.90065593), ("std::collections::HashSet", 109606395.0163742), ("std::collections::HashSet", 86852737.45103133), ("std::collections::HashSet", 32601254.087835014), ("std::collections::HashSet", 54509683.54402176), ("std::collections::HashSet", 98194139.2209005), ("std::collections::HashSet", 54192406.69608708), ("std::collections::HashSet", 65746006.91337653), ("std::collections::HashSet", 43916345.22281132), ("std::collections::HashSet", 43760048.61016468), ("std::collections::HashSet", 33222356.961647823), ("std::collections::HashSet", 32928872.600074396), ("std::collections::HashSet", 11186942.56421139), ("std::collections::HashSet", 22057554.216239188), ("std::collections::HashSet", 11199125.217847772), ("std::collections::HashSet", 22634877.74519701), ("std::collections::HashSet", 22450497.492614843), ("std::collections::HashSet", 11263492.1982444), ("std::collections::HashSet", 39296528.665190086), ("std::collections::HashSet", 41193080.30365366), ("std::collections::HashSet", 41067711.80159902), ("std::collections::HashSet", 82759677.53260778), ("std::collections::HashSet", 41753745.28767679), ("std::collections::HashSet", 42403825.13853343), ("std::collections::HashSet", 41573555.46917754), ("std::collections::HashSet", 166807496.12811905), ("std::collections::HashSet", 42440379.81326812), ("std::collections::HashSet", 84780736.20719978), ("std::collections::HashSet", 167548702.5051187), ("std::collections::HashSet", 127513063.62022577), ("std::collections::HashSet", 127306037.0403423), ("std::collections::HashSet", 42268065.58548307), ("std::collections::HashSet", 85146189.60183805), ("std::collections::HashSet", 85695836.29994075), ("std::collections::HashSet", 85618191.59481415), ("std::collections::HashSet", 42879954.18320567), ("std::collections::HashSet", 299591708.4329343), ("std::collections::BTreeSet", 127923825.44110066), ("std::collections::BTreeSet", 387447164.3245704), ("std::collections::BTreeSet", 345369524.4248994), ("std::collections::BTreeSet", 257710673.25734758), ("std::collections::BTreeSet", 214334499.27504605), ("std::collections::BTreeSet", 128511361.92488003), ("std::collections::BTreeSet", 129900512.19894314), ("std::collections::BTreeSet", 255922170.82830003), ("std::collections::BTreeSet", 85835212.39878154), ("std::collections::BTreeSet", 346449248.0576864), ("std::collections::BTreeSet", 344616136.3966293), ("std::collections::BTreeSet", 390266697.9406695), ("std::collections::BTreeSet", 432872847.8953817), ("std::collections::BTreeSet", 436570304.79128957), ("std::collections::BTreeSet", 433042756.32563055), ("std::collections::BTreeSet", 779756045.5196104), ("std::collections::BTreeSet", 434717459.28025806), ("std::collections::BTreeSet", 303794049.15814507), ("std::collections::BTreeSet", 307125876.3234408), ("std::collections::BTreeSet", 434511543.59450805), ("std::collections::BTreeSet", 347529179.65986097), ("std::collections::BTreeSet", 261820293.17735207), ("std::collections::BTreeSet", 565721876.9966192), ("std::collections::BTreeSet", 655025240.2728409), ("std::collections::BTreeSet", 611895284.7370425), ("std::collections::BTreeSet", 392686303.26526797), ("std::collections::BTreeSet", 349392797.11415076), ("std::collections::BTreeSet", 566341415.2388064), ("std::collections::BTreeSet", 701210591.7615731), ("std::collections::BTreeSet", 218751779.89881203), ("std::collections::BTreeSet", 395137586.3890006), ("std::collections::BTreeSet", 836534889.6259811), ("std::collections::BTreeSet", 616151493.8590811), ("std::collections::BTreeSet", 438271667.32215846), ("std::collections::BTreeSet", 440878912.4941535), ("std::collections::BTreeSet", 705426168.9096316), ("std::collections::BTreeSet", 220645843.01136732), ("std::collections::BTreeSet", 1324252936.1599512), ("std::collections::BTreeSet", 1103095962.8103392), ("std::collections::BTreeSet", 663892922.7074538), ("std::collections::BTreeSet", 883320365.4901277), ("std::collections::BTreeSet", 614948828.1060648), ("std::collections::BTreeSet", 659594800.5097711), ("std::collections::BTreeSet", 710793096.8715184), ("std::collections::BTreeSet", 574223431.4145958), ("std::collections::BTreeSet", 887522745.197611), ("std::collections::BTreeSet", 750162678.0064492), ("std::collections::BTreeSet", 618524406.052315), ("std::collections::BTreeSet", 884497129.0938947), ("std::collections::BTreeSet", 308359845.8078664), ("std::collections::BTreeSet", 669331612.3464285), ("std::collections::BTreeSet", 531074094.72662854), ("std::collections::BTreeSet", 709202536.3851587), ("std::collections::BTreeSet", 755060011.420183), ("std::collections::BTreeSet", 533436853.4258462), ("std::collections::BTreeSet", 620221369.2507105), ("std::collections::BTreeSet", 311799079.6091949), ("std::collections::BTreeSet", 795321658.5622437), ("std::collections::BTreeSet", 576308723.8515011), ("std::collections::BTreeSet", 627236665.0966454), ("std::collections::BTreeSet", 442725177.99453676), ("std::collections::BTreeSet", 1068168831.8216404), ("std::collections::BTreeSet", 758772717.3226163), ("std::collections::BTreeSet", 1114527227.9579916), ("std::collections::BTreeSet", 668154649.5959224), ("std::collections::BTreeSet", 1027779033.4887637), ("std::collections::BTreeSet", 531375144.07314396), ("std::collections::BTreeSet", 716908135.160299), ("std::collections::BTreeSet", 756812702.4309717), ("std::collections::BTreeSet", 980818573.7315736), ("std::collections::BTreeSet", 893562402.4696388), ("std::collections::BTreeSet", 716326367.3221414), ("std::collections::BTreeSet", 268538784.0690966), ("std::collections::BTreeSet", 445163499.79660153), ("std::collections::BTreeSet", 758842032.1777064), ("std::collections::BTreeSet", 497055449.53330684), ("std::collections::BTreeSet", 714081535.605193), ("std::collections::BTreeSet", 223902645.55532533), ("std::collections::BTreeSet", 494683055.72257495), ("std::collections::BTreeSet", 583438553.212131), ("std::collections::BTreeSet", 899990283.7453657), ("std::collections::BTreeSet", 992353196.2982345), ("std::collections::BTreeSet", 1167310713.4066446), ("std::collections::BTreeSet", 675532362.3545647), ("std::collections::BTreeSet", 944809114.4266576), ("std::collections::BTreeSet", 629336519.6235272), ("std::collections::BTreeSet", 1082413679.6941655), ("std::collections::BTreeSet", 724540056.0256542), ("std::collections::BTreeSet", 988168145.6267031), ("std::collections::BTreeSet", 812852891.0318459), ("std::collections::BTreeSet", 588470746.848601), ("std::collections::BTreeSet", 674274708.5066435), ("std::collections::BTreeSet", 906976320.6598372), ("std::collections::BTreeSet", 1088506593.2232516), ("std::collections::BTreeSet", 818637397.7721083), ("std::collections::BTreeSet", 817660320.66346), ("std::collections::BTreeSet", 770534080.4506704), ("std::collections::BTreeSet", 590459785.9710813), ("std::collections::BTreeSet", 549441592.5307436), ("std::collections::BTreeSet", 542938166.8926169), ("std::collections::BTreeSet", 591669659.7229912), ("std::collections::BTreeSet", 686160066.8039277), ("std::collections::BTreeSet", 503546666.6224302), ("std::collections::BTreeSet", 774189708.8709011), ("std::collections::BTreeSet", 500942445.79063404), ("std::collections::BTreeSet", 730798065.7208416), ("std::collections::BTreeSet", 548890920.8983109), ("std::collections::BTreeSet", 459525338.5803448), ("std::collections::BTreeSet", 639589633.1246612), ("std::collections::BTreeSet", 44994277.45606195), ("std::collections::BTreeSet", 318317906.7842301), ("std::collections::BTreeSet", 367265546.5557839), ("std::collections::BTreeSet", 505211963.366378), ("std::collections::BTreeSet", 598016017.6022567), ("std::collections::BTreeSet", 507412653.4244498), ("std::collections::BTreeSet", 461786726.3855327), ("std::collections::BTreeSet", 508336542.6388016), ("std::collections::BTreeSet", 183604021.06149408), ("std::collections::BTreeSet", 370229092.50915784), ("std::collections::BTreeSet", 460623268.0937863), ("std::collections::BTreeSet", 276180975.56317925), ("std::collections::BTreeSet", 415459175.3576194), ("std::collections::BTreeSet", 324761348.61783665), ("std::collections::BTreeSet", 230974679.99436486), ("std::collections::BTreeSet", 371126611.96473587), ("std::collections::BTreeSet", 92992991.70460656), ("std::collections::BTreeSet", 139387352.70712942), ("std::collections::BTreeSet", 138569243.2964664), ("std::collections::BTreeSet", 45990631.02843586), ("std::collections::BTreeSet", 139517472.37190402), ("std::collections::BTreeSet", 93958336.84170163), ("std::collections::BTreeSet", 94071917.03876331), ("std::collections::BTreeSet", 186782261.48648933), ("std::collections::BTreeSet", 139954331.20439532), ("std::collections::BTreeSet", 139530257.36397532), ("std::collections::BTreeSet", 94089044.04839428), ("std::collections::BTreeSet", 47295396.03238361), ("std::collections::BTreeSet", 93217692.98261993), ("std::collections::BTreeSet", 46270907.981254466), ("std::collections::BTreeSet", 94523600.48636295), ("std::collections::BTreeSet", 47545768.610768445), ("std::collections::BTreeSet", 47285854.23362982), ("std::collections::BTreeSet", 94674272.96113767), ("std::collections::BTreeSet", 47282208.30912151), ("std::collections::BTreeSet", 47585239.25852263), ("std::collections::BTreeSet", 47282961.77621592), ("std::collections::BTreeSet", 93875972.63485973), ("std::collections::BTreeSet", 46970574.089494355), ("std::collections::BTreeSet", 47645695.84491774), ("std::collections::BTreeSet", 47742262.103310645), ("std::collections::BTreeSet", 48395458.868462674)]
[2024-03-25T16:48:12Z DEBUG candelabra::profiler::info] With split index 192, split proper is true
[2024-03-25T16:48:12Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:48:12Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 2.0, avg_n: 6513.0, avg_op_counts: {"first": 0.0, "insert": 10423.5, "clear": 0.0, "nth": 0.0, "push": 0.0, "last": 0.0, "pop": 0.0, "contains": 0.0, "remove": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 6650.5, avg_op_counts: {"pop": 0.0, "first": 0.0, "nth": 0.0, "contains": 0.0, "get": 0.0, "last": 0.0, "insert": 10402.5, "clear": 0.0, "push": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 6827.0, avg_op_counts: {"pop": 0.0, "insert": 10594.0, "push": 0.0, "last": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0, "get": 0.0, "contains": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 6929.0, avg_op_counts: {"pop": 0.0, "last": 0.0, "insert": 11279.0, "nth": 0.0, "get": 0.0, "contains": 0.0, "push": 0.0, "clear": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 7060.0, avg_op_counts: {"nth": 0.0, "clear": 0.0, "pop": 0.0, "get": 0.0, "insert": 11632.666666666668, "push": 0.0, "first": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 7213.916666666667, avg_op_counts: {"get": 0.0, "insert": 11010.666666666666, "first": 0.0, "nth": 0.0, "contains": 0.0, "last": 0.0, "push": 0.0, "remove": 0.0, "clear": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 7380.5, avg_op_counts: {"get": 0.0, "pop": 0.0, "contains": 0.0, "clear": 0.0, "push": 0.0, "last": 0.0, "remove": 0.0, "nth": 0.0, "insert": 11636.77777777778, "first": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 7530.041666666666, avg_op_counts: {"insert": 11014.625, "clear": 0.0, "get": 0.0, "remove": 0.0, "last": 0.0, "nth": 0.0, "first": 0.0, "pop": 0.0, "contains": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 46.0, avg_n: 7673.760869565218, avg_op_counts: {"first": 0.0, "clear": 0.0, "push": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0, "nth": 0.0, "get": 0.0, "last": 0.0, "insert": 11424.913043478262} }, ProfilerPartition { occurences: 123.0, avg_n: 7826.528455284549, avg_op_counts: {"pop": 0.0, "last": 0.0, "remove": 0.0, "push": 0.0, "get": 0.0, "nth": 0.0, "first": 0.0, "clear": 0.0, "insert": 11550.040650406509, "contains": 0.0} }, ProfilerPartition { occurences: 154.0, avg_n: 7974.616883116882, avg_op_counts: {"first": 0.0, "contains": 0.0, "nth": 0.0, "remove": 0.0, "last": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "insert": 11715.168831168829} }, ProfilerPartition { occurences: 205.0, avg_n: 8111.009756097561, avg_op_counts: {"pop": 0.0, "nth": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "contains": 0.0, "clear": 0.0, "remove": 0.0, "last": 0.0, "insert": 11728.8243902439} }, ProfilerPartition { occurences: 323.0, avg_n: 8263.504643962848, avg_op_counts: {"contains": 0.0, "first": 0.0, "last": 0.0, "get": 0.0, "nth": 0.0, "push": 0.0, "clear": 0.0, "remove": 0.0, "insert": 11741.582043343651, "pop": 0.0} }, ProfilerPartition { occurences: 562.0, avg_n: 8418.991103202834, avg_op_counts: {"contains": 0.0, "remove": 0.0, "nth": 0.0, "get": 0.0, "clear": 0.0, "push": 0.0, "insert": 11923.370106761557, "first": 0.0, "pop": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 749.0, avg_n: 8581.232309746329, avg_op_counts: {"first": 0.0, "insert": 12030.515353805067, "clear": 0.0, "get": 0.0, "last": 0.0, "push": 0.0, "pop": 0.0, "remove": 0.0, "contains": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 987.0, avg_n: 8732.64032421479, avg_op_counts: {"contains": 0.0, "nth": 0.0, "remove": 0.0, "clear": 0.0, "insert": 12066.183383991887, "get": 0.0, "first": 0.0, "last": 0.0, "push": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1109.0, avg_n: 8875.040577096477, avg_op_counts: {"contains": 0.0, "clear": 0.0, "pop": 0.0, "nth": 0.0, "first": 0.0, "get": 0.0, "remove": 0.0, "insert": 12129.497745716852, "last": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 1386.0, avg_n: 9011.180375180384, avg_op_counts: {"pop": 0.0, "nth": 0.0, "last": 0.0, "clear": 0.0, "contains": 0.0, "remove": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "insert": 12234.710678210677} }, ProfilerPartition { occurences: 1730.0, avg_n: 9153.336416184971, avg_op_counts: {"pop": 0.0, "push": 0.0, "last": 0.0, "remove": 0.0, "first": 0.0, "contains": 0.0, "nth": 0.0, "clear": 0.0, "get": 0.0, "insert": 12304.128901734117} }, ProfilerPartition { occurences: 1997.0, avg_n: 9298.85327991987, avg_op_counts: {"nth": 0.0, "insert": 12417.01402103156, "first": 0.0, "pop": 0.0, "contains": 0.0, "remove": 0.0, "last": 0.0, "clear": 0.0, "get": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 2230.0, avg_n: 9444.0152466368, avg_op_counts: {"nth": 0.0, "pop": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0, "insert": 12495.20224215245, "push": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 2340.0, avg_n: 9586.564102564113, avg_op_counts: {"push": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0, "contains": 0.0, "remove": 0.0, "first": 0.0, "get": 0.0, "insert": 12588.545726495697, "last": 0.0} }, ProfilerPartition { occurences: 2674.0, avg_n: 9733.564323111435, avg_op_counts: {"clear": 0.0, "push": 0.0, "last": 0.0, "pop": 0.0, "insert": 12671.632385938672, "get": 0.0, "contains": 0.0, "nth": 0.0, "remove": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 2775.0, avg_n: 9895.215855855866, avg_op_counts: {"last": 0.0, "push": 0.0, "nth": 0.0, "get": 0.0, "clear": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0, "insert": 12762.058018018031, "remove": 0.0} }, ProfilerPartition { occurences: 2692.0, avg_n: 10059.015973254063, avg_op_counts: {"first": 0.0, "push": 0.0, "contains": 0.0, "last": 0.0, "pop": 0.0, "get": 0.0, "clear": 0.0, "remove": 0.0, "insert": 12876.619242199076, "nth": 0.0} }, ProfilerPartition { occurences: 2620.0, avg_n: 10227.479007633585, avg_op_counts: {"first": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "insert": 12965.701145038189, "contains": 0.0, "get": 0.0, "last": 0.0, "nth": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 2100.0, avg_n: 10391.046666666653, avg_op_counts: {"remove": 0.0, "contains": 0.0, "first": 0.0, "insert": 13086.277619047612, "nth": 0.0, "pop": 0.0, "clear": 0.0, "get": 0.0, "last": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 1616.0, avg_n: 10543.473391089108, avg_op_counts: {"get": 0.0, "first": 0.0, "push": 0.0, "clear": 0.0, "pop": 0.0, "insert": 13166.605816831692, "nth": 0.0, "remove": 0.0, "contains": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 1150.0, avg_n: 10677.04260869565, avg_op_counts: {"clear": 0.0, "pop": 0.0, "push": 0.0, "nth": 0.0, "get": 0.0, "last": 0.0, "first": 0.0, "insert": 13288.413043478262, "contains": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 878.0, avg_n: 10792.537585421402, avg_op_counts: {"pop": 0.0, "remove": 0.0, "insert": 13369.568337129842, "get": 0.0, "clear": 0.0, "contains": 0.0, "nth": 0.0, "first": 0.0, "last": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 789.0, avg_n: 10910.96831432194, avg_op_counts: {"clear": 0.0, "insert": 13418.711026615969, "remove": 0.0, "push": 0.0, "nth": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 739.0, avg_n: 11033.42760487145, avg_op_counts: {"get": 0.0, "push": 0.0, "contains": 0.0, "last": 0.0, "clear": 0.0, "insert": 13492.217861975649, "pop": 0.0, "nth": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 606.0, avg_n: 11176.343234323444, avg_op_counts: {"contains": 0.0, "push": 0.0, "clear": 0.0, "pop": 0.0, "insert": 13624.21782178219, "remove": 0.0, "get": 0.0, "last": 0.0, "first": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 429.0, avg_n: 11323.193473193476, avg_op_counts: {"pop": 0.0, "nth": 0.0, "last": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "push": 0.0, "contains": 0.0, "clear": 0.0, "insert": 13667.03962703963} }, ProfilerPartition { occurences: 351.0, avg_n: 11483.125356125362, avg_op_counts: {"get": 0.0, "push": 0.0, "first": 0.0, "clear": 0.0, "last": 0.0, "remove": 0.0, "contains": 0.0, "nth": 0.0, "pop": 0.0, "insert": 13775.817663817665} }, ProfilerPartition { occurences: 218.0, avg_n: 11650.0366972477, avg_op_counts: {"insert": 13864.041284403667, "contains": 0.0, "clear": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0, "last": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 131.0, avg_n: 11787.54961832061, avg_op_counts: {"clear": 0.0, "push": 0.0, "pop": 0.0, "contains": 0.0, "nth": 0.0, "get": 0.0, "first": 0.0, "insert": 13960.32824427481, "last": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 91.0, avg_n: 11917.120879120885, avg_op_counts: {"pop": 0.0, "insert": 14073.38461538461, "nth": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "push": 0.0, "contains": 0.0, "clear": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 55.0, avg_n: 12054.909090909096, avg_op_counts: {"get": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0, "last": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "contains": 0.0, "insert": 14188.200000000004} }, ProfilerPartition { occurences: 40.0, avg_n: 12217.624999999998, avg_op_counts: {"last": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "clear": 0.0, "nth": 0.0, "insert": 14278.7, "contains": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 12363.64705882353, avg_op_counts: {"contains": 0.0, "pop": 0.0, "insert": 14590.94117647059, "remove": 0.0, "push": 0.0, "clear": 0.0, "last": 0.0, "get": 0.0, "first": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 12482.125, avg_op_counts: {"contains": 0.0, "last": 0.0, "pop": 0.0, "push": 0.0, "first": 0.0, "insert": 14452.5, "remove": 0.0, "clear": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 12601.4, avg_op_counts: {"nth": 0.0, "pop": 0.0, "insert": 14476.8, "first": 0.0, "last": 0.0, "remove": 0.0, "get": 0.0, "push": 0.0, "clear": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 12751.5, avg_op_counts: {"get": 0.0, "last": 0.0, "nth": 0.0, "first": 0.0, "contains": 0.0, "clear": 0.0, "push": 0.0, "pop": 0.0, "remove": 0.0, "insert": 14256.5} }, ProfilerPartition { occurences: 2.0, avg_n: 13009.5, avg_op_counts: {"remove": 0.0, "insert": 14852.5, "get": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0, "nth": 0.0, "last": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 86183.0, avg_op_counts: {"clear": 0.0, "nth": 0.0, "pop": 0.0, "insert": 120149.0, "remove": 0.0, "get": 0.0, "contains": 0.0, "push": 0.0, "last": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 87652.0, avg_op_counts: {"last": 0.0, "insert": 124355.0, "push": 0.0, "get": 0.0, "pop": 0.0, "first": 0.0, "contains": 0.0, "remove": 0.0, "nth": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 87796.0, avg_op_counts: {"get": 0.0, "nth": 0.0, "push": 0.0, "contains": 0.0, "clear": 0.0, "last": 0.0, "first": 0.0, "remove": 0.0, "pop": 0.0, "insert": 123123.0} }, ProfilerPartition { occurences: 1.0, avg_n: 88187.0, avg_op_counts: {"clear": 0.0, "insert": 121640.0, "remove": 0.0, "first": 0.0, "nth": 0.0, "pop": 0.0, "push": 0.0, "last": 0.0, "get": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 88375.0, avg_op_counts: {"push": 0.0, "last": 0.0, "clear": 0.0, "first": 0.0, "remove": 0.0, "insert": 118912.0, "nth": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 88575.0, avg_op_counts: {"insert": 122323.0, "clear": 0.0, "last": 0.0, "get": 0.0, "remove": 0.0, "contains": 0.0, "push": 0.0, "nth": 0.0, "first": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 88740.0, avg_op_counts: {"get": 0.0, "insert": 122954.5, "clear": 0.0, "last": 0.0, "pop": 0.0, "nth": 0.0, "contains": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 88940.0, avg_op_counts: {"clear": 0.0, "first": 0.0, "nth": 0.0, "contains": 0.0, "pop": 0.0, "insert": 122962.0, "get": 0.0, "last": 0.0, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 89079.0, avg_op_counts: {"remove": 0.0, "pop": 0.0, "last": 0.0, "insert": 127854.0, "get": 0.0, "nth": 0.0, "first": 0.0, "push": 0.0, "contains": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 89260.33333333333, avg_op_counts: {"pop": 0.0, "remove": 0.0, "get": 0.0, "clear": 0.0, "nth": 0.0, "insert": 124329.66666666669, "first": 0.0, "last": 0.0, "push": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 89607.66666666667, avg_op_counts: {"clear": 0.0, "nth": 0.0, "pop": 0.0, "insert": 124196.0, "get": 0.0, "remove": 0.0, "contains": 0.0, "first": 0.0, "push": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 89746.66666666667, avg_op_counts: {"remove": 0.0, "nth": 0.0, "last": 0.0, "first": 0.0, "insert": 125431.0, "get": 0.0, "contains": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 89938.33333333333, avg_op_counts: {"get": 0.0, "contains": 0.0, "first": 0.0, "pop": 0.0, "insert": 123175.66666666669, "nth": 0.0, "push": 0.0, "last": 0.0, "clear": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 90093.16666666666, avg_op_counts: {"last": 0.0, "clear": 0.0, "first": 0.0, "get": 0.0, "insert": 123977.66666666669, "nth": 0.0, "pop": 0.0, "contains": 0.0, "push": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 90280.88888888888, avg_op_counts: {"insert": 122874.88888888888, "first": 0.0, "pop": 0.0, "last": 0.0, "nth": 0.0, "clear": 0.0, "remove": 0.0, "push": 0.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 90515.8, avg_op_counts: {"push": 0.0, "first": 0.0, "remove": 0.0, "insert": 124556.2, "pop": 0.0, "clear": 0.0, "last": 0.0, "nth": 0.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 90635.8, avg_op_counts: {"first": 0.0, "last": 0.0, "push": 0.0, "contains": 0.0, "get": 0.0, "nth": 0.0, "pop": 0.0, "insert": 124360.0, "remove": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 90841.8, avg_op_counts: {"contains": 0.0, "nth": 0.0, "clear": 0.0, "pop": 0.0, "push": 0.0, "get": 0.0, "insert": 123709.0, "remove": 0.0, "first": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 91021.22222222223, avg_op_counts: {"last": 0.0, "remove": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0, "insert": 124758.22222222223, "get": 0.0, "push": 0.0, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 91298.33333333331, avg_op_counts: {"push": 0.0, "first": 0.0, "contains": 0.0, "remove": 0.0, "pop": 0.0, "insert": 125011.66666666669, "last": 0.0, "get": 0.0, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 91410.625, avg_op_counts: {"contains": 0.0, "insert": 125034.5625, "get": 0.0, "remove": 0.0, "clear": 0.0, "nth": 0.0, "last": 0.0, "first": 0.0, "pop": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 91581.0, avg_op_counts: {"nth": 0.0, "get": 0.0, "first": 0.0, "insert": 124896.625, "pop": 0.0, "clear": 0.0, "push": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 91712.0, avg_op_counts: {"clear": 0.0, "nth": 0.0, "push": 0.0, "pop": 0.0, "get": 0.0, "contains": 0.0, "first": 0.0, "insert": 123502.0, "remove": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 19.0, avg_n: 91819.05263157892, avg_op_counts: {"first": 0.0, "pop": 0.0, "push": 0.0, "nth": 0.0, "contains": 0.0, "insert": 125100.52631578948, "get": 0.0, "clear": 0.0, "last": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 92009.66666666669, avg_op_counts: {"first": 0.0, "insert": 124748.55555555556, "pop": 0.0, "contains": 0.0, "clear": 0.0, "get": 0.0, "remove": 0.0, "nth": 0.0, "push": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 92129.71428571428, avg_op_counts: {"get": 0.0, "nth": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0, "insert": 124379.07142857142, "last": 0.0, "push": 0.0, "remove": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 92275.1111111111, avg_op_counts: {"insert": 126244.94444444444, "clear": 0.0, "first": 0.0, "nth": 0.0, "push": 0.0, "last": 0.0, "remove": 0.0, "pop": 0.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 92430.55555555556, avg_op_counts: {"contains": 0.0, "insert": 124890.55555555556, "remove": 0.0, "last": 0.0, "get": 0.0, "pop": 0.0, "nth": 0.0, "push": 0.0, "first": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 21.0, avg_n: 92573.42857142857, avg_op_counts: {"insert": 125889.0, "push": 0.0, "nth": 0.0, "contains": 0.0, "remove": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "get": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 92723.9411764706, avg_op_counts: {"insert": 126348.5294117647, "first": 0.0, "remove": 0.0, "pop": 0.0, "last": 0.0, "get": 0.0, "clear": 0.0, "contains": 0.0, "nth": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 92863.61111111112, avg_op_counts: {"pop": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0, "get": 0.0, "contains": 0.0, "first": 0.0, "nth": 0.0, "insert": 125503.0, "remove": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 92981.57142857142, avg_op_counts: {"remove": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "insert": 125987.14285714286, "get": 0.0, "first": 0.0, "nth": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 26.0, avg_n: 93157.92307692308, avg_op_counts: {"push": 0.0, "last": 0.0, "remove": 0.0, "pop": 0.0, "insert": 125793.46153846156, "clear": 0.0, "nth": 0.0, "contains": 0.0, "get": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 93270.5, avg_op_counts: {"pop": 0.0, "push": 0.0, "last": 0.0, "contains": 0.0, "clear": 0.0, "get": 0.0, "first": 0.0, "nth": 0.0, "insert": 126119.0, "remove": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 93366.95833333331, avg_op_counts: {"get": 0.0, "nth": 0.0, "pop": 0.0, "last": 0.0, "contains": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0, "insert": 126618.95833333331, "remove": 0.0} }, ProfilerPartition { occurences: 37.0, avg_n: 93521.21621621624, avg_op_counts: {"push": 0.0, "insert": 126063.45945945944, "last": 0.0, "nth": 0.0, "first": 0.0, "pop": 0.0, "get": 0.0, "remove": 0.0, "clear": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 37.0, avg_n: 93674.75675675676, avg_op_counts: {"last": 0.0, "first": 0.0, "pop": 0.0, "contains": 0.0, "nth": 0.0, "get": 0.0, "clear": 0.0, "push": 0.0, "remove": 0.0, "insert": 125831.1081081081} }, ProfilerPartition { occurences: 24.0, avg_n: 93839.54166666666, avg_op_counts: {"insert": 125879.41666666669, "push": 0.0, "pop": 0.0, "contains": 0.0, "remove": 0.0, "get": 0.0, "clear": 0.0, "last": 0.0, "nth": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 35.0, avg_n: 93997.05714285716, avg_op_counts: {"remove": 0.0, "last": 0.0, "push": 0.0, "pop": 0.0, "nth": 0.0, "first": 0.0, "contains": 0.0, "insert": 125980.42857142858, "get": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 94156.875, avg_op_counts: {"contains": 0.0, "insert": 125993.25, "first": 0.0, "push": 0.0, "get": 0.0, "remove": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 38.0, avg_n: 94301.94736842108, avg_op_counts: {"last": 0.0, "pop": 0.0, "insert": 126382.34210526312, "first": 0.0, "remove": 0.0, "get": 0.0, "contains": 0.0, "clear": 0.0, "nth": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 37.0, avg_n: 94438.972972973, avg_op_counts: {"clear": 0.0, "get": 0.0, "nth": 0.0, "insert": 126223.7297297297, "last": 0.0, "contains": 0.0, "remove": 0.0, "first": 0.0, "push": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 38.0, avg_n: 94570.0263157895, avg_op_counts: {"insert": 126425.2894736842, "get": 0.0, "nth": 0.0, "contains": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "clear": 0.0, "last": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 94670.58333333331, avg_op_counts: {"first": 0.0, "push": 0.0, "last": 0.0, "contains": 0.0, "insert": 126170.0, "pop": 0.0, "remove": 0.0, "clear": 0.0, "get": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 22.0, avg_n: 94784.54545454544, avg_op_counts: {"last": 0.0, "contains": 0.0, "first": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "insert": 126801.04545454546, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 47.0, avg_n: 94905.23404255322, avg_op_counts: {"remove": 0.0, "first": 0.0, "last": 0.0, "get": 0.0, "nth": 0.0, "clear": 0.0, "push": 0.0, "insert": 126395.12765957446, "pop": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 30.0, avg_n: 95038.03333333334, avg_op_counts: {"last": 0.0, "pop": 0.0, "remove": 0.0, "push": 0.0, "clear": 0.0, "contains": 0.0, "nth": 0.0, "insert": 126948.16666666669, "first": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 47.0, avg_n: 95189.31914893618, avg_op_counts: {"last": 0.0, "get": 0.0, "contains": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0, "remove": 0.0, "insert": 126859.61702127656, "first": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 40.0, avg_n: 95341.42500000005, avg_op_counts: {"first": 0.0, "remove": 0.0, "pop": 0.0, "clear": 0.0, "insert": 126550.225, "last": 0.0, "contains": 0.0, "nth": 0.0, "push": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 49.0, avg_n: 95488.51020408164, avg_op_counts: {"first": 0.0, "nth": 0.0, "push": 0.0, "get": 0.0, "insert": 126452.20408163266, "clear": 0.0, "last": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 59.0, avg_n: 95642.59322033904, avg_op_counts: {"push": 0.0, "contains": 0.0, "first": 0.0, "nth": 0.0, "insert": 126582.0, "get": 0.0, "remove": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 31.0, avg_n: 95773.87096774194, avg_op_counts: {"remove": 0.0, "last": 0.0, "insert": 126684.83870967744, "contains": 0.0, "get": 0.0, "clear": 0.0, "nth": 0.0, "first": 0.0, "push": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 56.0, avg_n: 95881.0, avg_op_counts: {"remove": 0.0, "first": 0.0, "nth": 0.0, "last": 0.0, "get": 0.0, "push": 0.0, "contains": 0.0, "pop": 0.0, "clear": 0.0, "insert": 126907.64285714286} }, ProfilerPartition { occurences: 58.0, avg_n: 96034.46551724136, avg_op_counts: {"nth": 0.0, "first": 0.0, "push": 0.0, "last": 0.0, "insert": 126533.05172413794, "contains": 0.0, "pop": 0.0, "get": 0.0, "remove": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 57.0, avg_n: 96186.3333333333, avg_op_counts: {"contains": 0.0, "first": 0.0, "get": 0.0, "nth": 0.0, "clear": 0.0, "push": 0.0, "remove": 0.0, "pop": 0.0, "insert": 126673.87719298244, "last": 0.0} }, ProfilerPartition { occurences: 54.0, avg_n: 96325.88888888885, avg_op_counts: {"clear": 0.0, "first": 0.0, "nth": 0.0, "pop": 0.0, "insert": 126765.81481481482, "contains": 0.0, "push": 0.0, "last": 0.0, "get": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 52.0, avg_n: 96462.9423076923, avg_op_counts: {"remove": 0.0, "insert": 127307.30769230766, "last": 0.0, "pop": 0.0, "push": 0.0, "contains": 0.0, "nth": 0.0, "first": 0.0, "get": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 66.0, avg_n: 96589.43939393942, avg_op_counts: {"last": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0, "get": 0.0, "insert": 126543.16666666669, "nth": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 56.0, avg_n: 96759.9464285714, avg_op_counts: {"nth": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0, "get": 0.0, "first": 0.0, "clear": 0.0, "insert": 126700.91071428574, "last": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 78.0, avg_n: 96918.53846153844, avg_op_counts: {"insert": 127086.6282051282, "contains": 0.0, "first": 0.0, "push": 0.0, "get": 0.0, "remove": 0.0, "nth": 0.0, "clear": 0.0, "pop": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 63.0, avg_n: 97084.93650793652, avg_op_counts: {"contains": 0.0, "clear": 0.0, "pop": 0.0, "first": 0.0, "nth": 0.0, "get": 0.0, "last": 0.0, "remove": 0.0, "insert": 126913.12698412698, "push": 0.0} }, ProfilerPartition { occurences: 62.0, avg_n: 97221.9516129032, avg_op_counts: {"remove": 0.0, "get": 0.0, "last": 0.0, "pop": 0.0, "nth": 0.0, "clear": 0.0, "push": 0.0, "contains": 0.0, "first": 0.0, "insert": 127391.40322580644} }, ProfilerPartition { occurences: 70.0, avg_n: 97383.42857142857, avg_op_counts: {"remove": 0.0, "push": 0.0, "pop": 0.0, "first": 0.0, "clear": 0.0, "nth": 0.0, "get": 0.0, "insert": 126925.34285714282, "last": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 60.0, avg_n: 97531.9, avg_op_counts: {"remove": 0.0, "get": 0.0, "pop": 0.0, "insert": 127281.53333333335, "last": 0.0, "nth": 0.0, "contains": 0.0, "push": 0.0, "first": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 57.0, avg_n: 97672.66666666669, avg_op_counts: {"nth": 0.0, "last": 0.0, "insert": 127031.47368421052, "clear": 0.0, "get": 0.0, "first": 0.0, "pop": 0.0, "contains": 0.0, "push": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 73.0, avg_n: 97813.91780821914, avg_op_counts: {"get": 0.0, "pop": 0.0, "insert": 127705.15068493152, "remove": 0.0, "clear": 0.0, "last": 0.0, "first": 0.0, "push": 0.0, "nth": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 49.0, avg_n: 97933.61224489794, avg_op_counts: {"push": 0.0, "insert": 127746.65306122448, "get": 0.0, "last": 0.0, "remove": 0.0, "clear": 0.0, "first": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 64.0, avg_n: 98076.92187500004, avg_op_counts: {"clear": 0.0, "get": 0.0, "first": 0.0, "contains": 0.0, "push": 0.0, "nth": 0.0, "insert": 127800.96875, "last": 0.0, "pop": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 54.0, avg_n: 98219.74074074072, avg_op_counts: {"get": 0.0, "first": 0.0, "insert": 127328.66666666666, "nth": 0.0, "contains": 0.0, "clear": 0.0, "last": 0.0, "pop": 0.0, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 75.0, avg_n: 98362.36000000004, avg_op_counts: {"contains": 0.0, "push": 0.0, "insert": 127605.44, "last": 0.0, "nth": 0.0, "remove": 0.0, "first": 0.0, "clear": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 77.0, avg_n: 98528.935064935, avg_op_counts: {"nth": 0.0, "insert": 127320.09090909093, "last": 0.0, "push": 0.0, "first": 0.0, "clear": 0.0, "get": 0.0, "remove": 0.0, "pop": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 54.0, avg_n: 98674.05555555552, avg_op_counts: {"last": 0.0, "get": 0.0, "push": 0.0, "remove": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "clear": 0.0, "first": 0.0, "insert": 127902.29629629632} }, ProfilerPartition { occurences: 49.0, avg_n: 98804.0, avg_op_counts: {"remove": 0.0, "last": 0.0, "clear": 0.0, "insert": 127585.04081632652, "nth": 0.0, "pop": 0.0, "push": 0.0, "first": 0.0, "get": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 38.0, avg_n: 98920.42105263156, avg_op_counts: {"get": 0.0, "nth": 0.0, "push": 0.0, "insert": 127963.94736842104, "contains": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 52.0, avg_n: 99051.73076923078, avg_op_counts: {"first": 0.0, "last": 0.0, "remove": 0.0, "clear": 0.0, "nth": 0.0, "contains": 0.0, "push": 0.0, "insert": 128125.73076923077, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 83.0, avg_n: 99173.51807228918, avg_op_counts: {"clear": 0.0, "first": 0.0, "get": 0.0, "push": 0.0, "contains": 0.0, "nth": 0.0, "pop": 0.0, "insert": 128217.98795180724, "last": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 71.0, avg_n: 99312.6338028169, avg_op_counts: {"remove": 0.0, "last": 0.0, "contains": 0.0, "first": 0.0, "get": 0.0, "pop": 0.0, "push": 0.0, "insert": 128113.35211267605, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 59.0, avg_n: 99461.61016949153, avg_op_counts: {"first": 0.0, "pop": 0.0, "last": 0.0, "insert": 127726.50847457629, "push": 0.0, "nth": 0.0, "remove": 0.0, "clear": 0.0, "get": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 52.0, avg_n: 99589.75, avg_op_counts: {"first": 0.0, "get": 0.0, "remove": 0.0, "clear": 0.0, "pop": 0.0, "nth": 0.0, "contains": 0.0, "push": 0.0, "last": 0.0, "insert": 128209.00000000004} }, ProfilerPartition { occurences: 48.0, avg_n: 99698.91666666669, avg_op_counts: {"get": 0.0, "insert": 128082.125, "last": 0.0, "pop": 0.0, "push": 0.0, "remove": 0.0, "clear": 0.0, "contains": 0.0, "nth": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 49.0, avg_n: 99826.40816326533, avg_op_counts: {"clear": 0.0, "first": 0.0, "get": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "push": 0.0, "last": 0.0, "remove": 0.0, "insert": 127810.55102040817} }, ProfilerPartition { occurences: 35.0, avg_n: 99951.91428571429, avg_op_counts: {"push": 0.0, "insert": 128457.57142857142, "nth": 0.0, "remove": 0.0, "last": 0.0, "pop": 0.0, "clear": 0.0, "contains": 0.0, "get": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 40.0, avg_n: 100053.275, avg_op_counts: {"push": 0.0, "remove": 0.0, "get": 0.0, "insert": 128447.4, "clear": 0.0, "nth": 0.0, "first": 0.0, "pop": 0.0, "contains": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 62.0, avg_n: 100186.87096774195, avg_op_counts: {"nth": 0.0, "pop": 0.0, "push": 0.0, "last": 0.0, "remove": 0.0, "clear": 0.0, "first": 0.0, "insert": 128031.1935483871, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 57.0, avg_n: 100342.05263157892, avg_op_counts: {"clear": 0.0, "contains": 0.0, "push": 0.0, "nth": 0.0, "get": 0.0, "first": 0.0, "last": 0.0, "insert": 128333.84210526316, "remove": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 59.0, avg_n: 100472.74576271189, avg_op_counts: {"remove": 0.0, "first": 0.0, "nth": 0.0, "contains": 0.0, "pop": 0.0, "insert": 128494.8813559322, "last": 0.0, "get": 0.0, "push": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 53.0, avg_n: 100642.35849056602, avg_op_counts: {"push": 0.0, "nth": 0.0, "remove": 0.0, "insert": 128527.45283018867, "contains": 0.0, "pop": 0.0, "last": 0.0, "clear": 0.0, "get": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 50.0, avg_n: 100777.74, avg_op_counts: {"first": 0.0, "insert": 128449.71999999996, "pop": 0.0, "get": 0.0, "contains": 0.0, "push": 0.0, "nth": 0.0, "last": 0.0, "clear": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 40.0, avg_n: 100963.45, avg_op_counts: {"nth": 0.0, "last": 0.0, "insert": 128197.47500000003, "first": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0, "contains": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 51.0, avg_n: 101112.92156862748, avg_op_counts: {"get": 0.0, "nth": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "insert": 128781.64705882355, "contains": 0.0, "first": 0.0, "pop": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 40.0, avg_n: 101270.525, avg_op_counts: {"get": 0.0, "nth": 0.0, "clear": 0.0, "last": 0.0, "contains": 0.0, "remove": 0.0, "insert": 129048.29999999996, "pop": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 39.0, avg_n: 101401.10256410256, avg_op_counts: {"first": 0.0, "get": 0.0, "insert": 129139.46153846156, "remove": 0.0, "nth": 0.0, "contains": 0.0, "last": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 41.0, avg_n: 101520.63414634149, avg_op_counts: {"nth": 0.0, "remove": 0.0, "pop": 0.0, "first": 0.0, "push": 0.0, "get": 0.0, "last": 0.0, "insert": 129129.78048780486, "clear": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 42.0, avg_n: 101652.52380952382, avg_op_counts: {"push": 0.0, "contains": 0.0, "remove": 0.0, "clear": 0.0, "get": 0.0, "first": 0.0, "insert": 129088.92857142857, "pop": 0.0, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 32.0, avg_n: 101818.0, avg_op_counts: {"remove": 0.0, "clear": 0.0, "contains": 0.0, "last": 0.0, "push": 0.0, "first": 0.0, "insert": 129839.96875, "pop": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 27.0, avg_n: 101940.25925925928, avg_op_counts: {"insert": 129575.44444444444, "pop": 0.0, "get": 0.0, "clear": 0.0, "first": 0.0, "last": 0.0, "nth": 0.0, "contains": 0.0, "push": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 25.0, avg_n: 102073.92, avg_op_counts: {"contains": 0.0, "remove": 0.0, "last": 0.0, "pop": 0.0, "nth": 0.0, "insert": 129895.80000000002, "push": 0.0, "first": 0.0, "clear": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 19.0, avg_n: 102211.89473684212, avg_op_counts: {"contains": 0.0, "last": 0.0, "pop": 0.0, "insert": 130055.94736842104, "clear": 0.0, "nth": 0.0, "first": 0.0, "remove": 0.0, "push": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 102370.58333333336, avg_op_counts: {"contains": 0.0, "clear": 0.0, "nth": 0.0, "push": 0.0, "get": 0.0, "last": 0.0, "insert": 130027.37499999996, "remove": 0.0, "first": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 102492.1818181818, avg_op_counts: {"last": 0.0, "get": 0.0, "clear": 0.0, "push": 0.0, "remove": 0.0, "insert": 129914.72727272726, "nth": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 26.0, avg_n: 102605.96153846152, avg_op_counts: {"insert": 129822.61538461538, "remove": 0.0, "pop": 0.0, "get": 0.0, "contains": 0.0, "clear": 0.0, "nth": 0.0, "last": 0.0, "push": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 28.0, avg_n: 102770.14285714284, avg_op_counts: {"last": 0.0, "insert": 129112.5, "get": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0, "push": 0.0, "remove": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 102946.76470588232, avg_op_counts: {"push": 0.0, "get": 0.0, "first": 0.0, "clear": 0.0, "contains": 0.0, "pop": 0.0, "last": 0.0, "insert": 129906.11764705884, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 103071.60000000002, avg_op_counts: {"clear": 0.0, "pop": 0.0, "remove": 0.0, "get": 0.0, "insert": 129925.5, "contains": 0.0, "nth": 0.0, "push": 0.0, "first": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 103199.125, avg_op_counts: {"push": 0.0, "nth": 0.0, "pop": 0.0, "clear": 0.0, "insert": 129789.0, "contains": 0.0, "remove": 0.0, "last": 0.0, "first": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 103362.45454545454, avg_op_counts: {"nth": 0.0, "remove": 0.0, "insert": 130504.54545454546, "contains": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "last": 0.0, "pop": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 103522.5, avg_op_counts: {"contains": 0.0, "nth": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "last": 0.0, "insert": 129790.125, "get": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 103642.07692307692, avg_op_counts: {"push": 0.0, "pop": 0.0, "nth": 0.0, "insert": 130128.61538461538, "get": 0.0, "contains": 0.0, "remove": 0.0, "first": 0.0, "clear": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 103800.85714285714, avg_op_counts: {"first": 0.0, "last": 0.0, "remove": 0.0, "get": 0.0, "nth": 0.0, "insert": 129779.14285714286, "contains": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 103921.875, avg_op_counts: {"nth": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "insert": 130789.875, "clear": 0.0, "pop": 0.0, "last": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 104083.55555555556, avg_op_counts: {"push": 0.0, "insert": 130196.77777777778, "nth": 0.0, "clear": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0, "pop": 0.0, "first": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 104241.9, avg_op_counts: {"get": 0.0, "contains": 0.0, "pop": 0.0, "push": 0.0, "clear": 0.0, "remove": 0.0, "first": 0.0, "insert": 132418.09999999998, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 104368.625, avg_op_counts: {"contains": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "push": 0.0, "last": 0.0, "clear": 0.0, "nth": 0.0, "insert": 131003.0, "pop": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 104512.66666666669, avg_op_counts: {"nth": 0.0, "last": 0.0, "remove": 0.0, "contains": 0.0, "clear": 0.0, "insert": 130950.0, "pop": 0.0, "push": 0.0, "get": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 104637.2, avg_op_counts: {"first": 0.0, "clear": 0.0, "insert": 131214.4, "last": 0.0, "nth": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0, "remove": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 104741.11111111112, avg_op_counts: {"get": 0.0, "pop": 0.0, "remove": 0.0, "insert": 131187.22222222222, "nth": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0, "contains": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 104895.4, avg_op_counts: {"pop": 0.0, "contains": 0.0, "clear": 0.0, "remove": 0.0, "first": 0.0, "last": 0.0, "get": 0.0, "nth": 0.0, "insert": 130130.6, "push": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 105045.66666666669, avg_op_counts: {"pop": 0.0, "insert": 131373.66666666666, "push": 0.0, "nth": 0.0, "clear": 0.0, "first": 0.0, "last": 0.0, "get": 0.0, "remove": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 4.0, avg_n: 105168.5, avg_op_counts: {"nth": 0.0, "contains": 0.0, "first": 0.0, "get": 0.0, "clear": 0.0, "last": 0.0, "remove": 0.0, "push": 0.0, "pop": 0.0, "insert": 131476.75} }, ProfilerPartition { occurences: 4.0, avg_n: 105274.75, avg_op_counts: {"first": 0.0, "nth": 0.0, "contains": 0.0, "insert": 130876.5, "last": 0.0, "clear": 0.0, "get": 0.0, "pop": 0.0, "push": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 105511.66666666669, avg_op_counts: {"nth": 0.0, "insert": 132182.66666666666, "clear": 0.0, "get": 0.0, "last": 0.0, "first": 0.0, "remove": 0.0, "push": 0.0, "contains": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 105820.33333333331, avg_op_counts: {"get": 0.0, "pop": 0.0, "remove": 0.0, "push": 0.0, "last": 0.0, "nth": 0.0, "clear": 0.0, "contains": 0.0, "insert": 130631.0, "first": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 105984.0, avg_op_counts: {"insert": 132931.0, "clear": 0.0, "last": 0.0, "get": 0.0, "contains": 0.0, "pop": 0.0, "nth": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 106076.0, avg_op_counts: {"last": 0.0, "pop": 0.0, "clear": 0.0, "remove": 0.0, "insert": 130937.0, "contains": 0.0, "nth": 0.0, "first": 0.0, "push": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 106245.0, avg_op_counts: {"remove": 0.0, "pop": 0.0, "clear": 0.0, "contains": 0.0, "last": 0.0, "first": 0.0, "get": 0.0, "nth": 0.0, "push": 0.0, "insert": 132746.0} }, ProfilerPartition { occurences: 2.0, avg_n: 106429.0, avg_op_counts: {"contains": 0.0, "clear": 0.0, "push": 0.0, "insert": 133914.0, "first": 0.0, "last": 0.0, "nth": 0.0, "remove": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 106882.5, avg_op_counts: {"first": 0.0, "insert": 132252.0, "get": 0.0, "contains": 0.0, "clear": 0.0, "push": 0.0, "remove": 0.0, "nth": 0.0, "pop": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 107419.0, avg_op_counts: {"first": 0.0, "last": 0.0, "insert": 132028.0, "remove": 0.0, "nth": 0.0, "pop": 0.0, "get": 0.0, "contains": 0.0, "push": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 177743.0, avg_op_counts: {"clear": 0.0, "remove": 0.0, "push": 0.0, "insert": 245941.0, "get": 0.0, "first": 0.0, "contains": 0.0, "last": 0.0, "nth": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 179733.0, avg_op_counts: {"last": 0.0, "push": 0.0, "get": 0.0, "first": 0.0, "insert": 253658.0, "contains": 0.0, "clear": 0.0, "pop": 0.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 181890.0, avg_op_counts: {"clear": 0.0, "push": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0, "insert": 248499.0, "nth": 0.0, "first": 0.0, "get": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 182852.0, avg_op_counts: {"push": 0.0, "get": 0.0, "insert": 248449.5, "nth": 0.0, "last": 0.0, "remove": 0.0, "clear": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 182970.0, avg_op_counts: {"remove": 0.0, "insert": 250456.0, "pop": 0.0, "contains": 0.0, "first": 0.0, "clear": 0.0, "push": 0.0, "get": 0.0, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 183079.0, avg_op_counts: {"get": 0.0, "clear": 0.0, "push": 0.0, "insert": 254132.0, "pop": 0.0, "last": 0.0, "contains": 0.0, "remove": 0.0, "first": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 183235.0, avg_op_counts: {"last": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0, "clear": 0.0, "remove": 0.0, "first": 0.0, "insert": 248843.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 4.0, avg_n: 183634.75, avg_op_counts: {"first": 0.0, "remove": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0, "push": 0.0, "last": 0.0, "insert": 248808.75, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 183784.0, avg_op_counts: {"nth": 0.0, "push": 0.0, "insert": 252911.0, "get": 0.0, "first": 0.0, "last": 0.0, "pop": 0.0, "clear": 0.0, "remove": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 183963.5, avg_op_counts: {"insert": 252248.5, "last": 0.0, "get": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0, "pop": 0.0, "contains": 0.0, "nth": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 4.0, avg_n: 184167.5, avg_op_counts: {"contains": 0.0, "first": 0.0, "pop": 0.0, "push": 0.0, "get": 0.0, "last": 0.0, "remove": 0.0, "insert": 248845.75, "nth": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 184323.33333333337, avg_op_counts: {"contains": 0.0, "last": 0.0, "push": 0.0, "get": 0.0, "first": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0, "insert": 252196.33333333337, "remove": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 184493.0, avg_op_counts: {"insert": 251444.0, "pop": 0.0, "last": 0.0, "get": 0.0, "push": 0.0, "remove": 0.0, "nth": 0.0, "first": 0.0, "contains": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 184698.0, avg_op_counts: {"contains": 0.0, "last": 0.0, "insert": 250041.0, "clear": 0.0, "nth": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "pop": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 184794.5, avg_op_counts: {"pop": 0.0, "get": 0.0, "nth": 0.0, "last": 0.0, "contains": 0.0, "remove": 0.0, "clear": 0.0, "insert": 251650.5, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 184925.0, avg_op_counts: {"pop": 0.0, "remove": 0.0, "first": 0.0, "push": 0.0, "nth": 0.0, "last": 0.0, "clear": 0.0, "insert": 253010.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 185071.5, avg_op_counts: {"pop": 0.0, "contains": 0.0, "push": 0.0, "last": 0.0, "get": 0.0, "insert": 252484.0, "first": 0.0, "clear": 0.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 185266.0, avg_op_counts: {"insert": 252508.0, "push": 0.0, "last": 0.0, "nth": 0.0, "clear": 0.0, "pop": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 185460.28571428577, avg_op_counts: {"get": 0.0, "remove": 0.0, "contains": 0.0, "last": 0.0, "push": 0.0, "clear": 0.0, "nth": 0.0, "insert": 251638.2857142857, "first": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 185621.0, avg_op_counts: {"pop": 0.0, "push": 0.0, "get": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0, "nth": 0.0, "clear": 0.0, "first": 0.0, "insert": 250481.33333333337} }, ProfilerPartition { occurences: 9.0, avg_n: 185984.3333333333, avg_op_counts: {"insert": 252611.55555555556, "pop": 0.0, "push": 0.0, "get": 0.0, "clear": 0.0, "remove": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 186131.125, avg_op_counts: {"pop": 0.0, "contains": 0.0, "push": 0.0, "get": 0.0, "first": 0.0, "clear": 0.0, "last": 0.0, "remove": 0.0, "insert": 253215.75, "nth": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 186289.66666666663, avg_op_counts: {"get": 0.0, "pop": 0.0, "insert": 251812.0, "clear": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0, "first": 0.0, "push": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 186435.8, avg_op_counts: {"first": 0.0, "clear": 0.0, "remove": 0.0, "insert": 251207.0, "nth": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0, "last": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 186660.0, avg_op_counts: {"first": 0.0, "get": 0.0, "pop": 0.0, "push": 0.0, "last": 0.0, "remove": 0.0, "clear": 0.0, "contains": 0.0, "insert": 250868.0, "nth": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 186769.0, avg_op_counts: {"nth": 0.0, "insert": 253499.0, "push": 0.0, "last": 0.0, "pop": 0.0, "contains": 0.0, "get": 0.0, "clear": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 186843.33333333337, avg_op_counts: {"nth": 0.0, "remove": 0.0, "last": 0.0, "push": 0.0, "insert": 249660.0, "clear": 0.0, "get": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 186999.0, avg_op_counts: {"clear": 0.0, "pop": 0.0, "contains": 0.0, "push": 0.0, "remove": 0.0, "nth": 0.0, "insert": 251090.5, "first": 0.0, "last": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 187131.75, avg_op_counts: {"last": 0.0, "pop": 0.0, "clear": 0.0, "first": 0.0, "remove": 0.0, "contains": 0.0, "nth": 0.0, "insert": 253265.5, "push": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 187307.75, avg_op_counts: {"push": 0.0, "get": 0.0, "remove": 0.0, "nth": 0.0, "clear": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0, "insert": 251796.0} }, ProfilerPartition { occurences: 9.0, avg_n: 187471.77777777775, avg_op_counts: {"remove": 0.0, "contains": 0.0, "push": 0.0, "get": 0.0, "insert": 253346.1111111111, "pop": 0.0, "first": 0.0, "nth": 0.0, "last": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 187648.3, avg_op_counts: {"last": 0.0, "remove": 0.0, "nth": 0.0, "clear": 0.0, "contains": 0.0, "insert": 252773.7, "push": 0.0, "get": 0.0, "pop": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 187805.8, avg_op_counts: {"nth": 0.0, "get": 0.0, "first": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0, "insert": 254815.7} }, ProfilerPartition { occurences: 10.0, avg_n: 187976.29999999996, avg_op_counts: {"insert": 252631.1, "pop": 0.0, "get": 0.0, "clear": 0.0, "nth": 0.0, "contains": 0.0, "last": 0.0, "remove": 0.0, "push": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 188140.77777777775, avg_op_counts: {"pop": 0.0, "contains": 0.0, "insert": 252600.38888888888, "clear": 0.0, "first": 0.0, "push": 0.0, "get": 0.0, "nth": 0.0, "last": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 188336.7, avg_op_counts: {"remove": 0.0, "get": 0.0, "push": 0.0, "nth": 0.0, "clear": 0.0, "last": 0.0, "insert": 253341.8, "pop": 0.0, "first": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 188487.57142857145, avg_op_counts: {"nth": 0.0, "insert": 252807.57142857145, "contains": 0.0, "push": 0.0, "remove": 0.0, "last": 0.0, "first": 0.0, "clear": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 188639.2857142857, avg_op_counts: {"insert": 255467.2857142857, "remove": 0.0, "nth": 0.0, "contains": 0.0, "last": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 188782.2, avg_op_counts: {"remove": 0.0, "push": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0, "insert": 252893.4, "nth": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 188938.0, avg_op_counts: {"pop": 0.0, "first": 0.0, "insert": 252720.5, "last": 0.0, "clear": 0.0, "remove": 0.0, "contains": 0.0, "nth": 0.0, "get": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 189029.6666666667, avg_op_counts: {"push": 0.0, "first": 0.0, "last": 0.0, "clear": 0.0, "get": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "insert": 253790.5, "remove": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 189161.61538461535, avg_op_counts: {"insert": 252997.46153846156, "get": 0.0, "remove": 0.0, "pop": 0.0, "first": 0.0, "push": 0.0, "contains": 0.0, "clear": 0.0, "last": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 189277.4, avg_op_counts: {"nth": 0.0, "first": 0.0, "contains": 0.0, "push": 0.0, "insert": 253791.46666666667, "remove": 0.0, "get": 0.0, "clear": 0.0, "pop": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 189440.0, avg_op_counts: {"contains": 0.0, "pop": 0.0, "first": 0.0, "get": 0.0, "push": 0.0, "insert": 253894.85714285713, "last": 0.0, "nth": 0.0, "clear": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 189562.1111111111, avg_op_counts: {"pop": 0.0, "first": 0.0, "remove": 0.0, "get": 0.0, "last": 0.0, "insert": 253369.22222222225, "contains": 0.0, "push": 0.0, "nth": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 189694.25, avg_op_counts: {"pop": 0.0, "nth": 0.0, "insert": 253517.375, "first": 0.0, "contains": 0.0, "push": 0.0, "get": 0.0, "clear": 0.0, "last": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 189774.2307692308, avg_op_counts: {"last": 0.0, "nth": 0.0, "remove": 0.0, "insert": 252823.6923076923, "clear": 0.0, "first": 0.0, "get": 0.0, "pop": 0.0, "push": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 189929.875, avg_op_counts: {"get": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0, "push": 0.0, "insert": 254223.0, "contains": 0.0, "clear": 0.0, "last": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 190103.2, avg_op_counts: {"contains": 0.0, "clear": 0.0, "pop": 0.0, "last": 0.0, "first": 0.0, "insert": 253658.4, "nth": 0.0, "get": 0.0, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 190192.33333333337, avg_op_counts: {"clear": 0.0, "contains": 0.0, "first": 0.0, "push": 0.0, "insert": 254484.33333333337, "get": 0.0, "nth": 0.0, "last": 0.0, "remove": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 19.0, avg_n: 190341.4210526316, avg_op_counts: {"remove": 0.0, "get": 0.0, "insert": 255092.4736842105, "last": 0.0, "pop": 0.0, "nth": 0.0, "push": 0.0, "contains": 0.0, "first": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 190539.07142857145, avg_op_counts: {"get": 0.0, "push": 0.0, "first": 0.0, "contains": 0.0, "insert": 254845.7857142857, "pop": 0.0, "nth": 0.0, "clear": 0.0, "last": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 190656.3, avg_op_counts: {"nth": 0.0, "clear": 0.0, "push": 0.0, "get": 0.0, "contains": 0.0, "pop": 0.0, "last": 0.0, "insert": 253696.0, "remove": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 190776.8, avg_op_counts: {"get": 0.0, "clear": 0.0, "insert": 255116.0, "nth": 0.0, "last": 0.0, "first": 0.0, "push": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 190895.3125, avg_op_counts: {"remove": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "contains": 0.0, "get": 0.0, "first": 0.0, "pop": 0.0, "nth": 0.0, "insert": 255035.50000000003} }, ProfilerPartition { occurences: 5.0, avg_n: 191017.8, avg_op_counts: {"clear": 0.0, "insert": 255176.4, "get": 0.0, "contains": 0.0, "remove": 0.0, "last": 0.0, "first": 0.0, "pop": 0.0, "push": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 30.0, avg_n: 191171.63333333333, avg_op_counts: {"push": 0.0, "last": 0.0, "clear": 0.0, "nth": 0.0, "first": 0.0, "get": 0.0, "insert": 255135.4, "remove": 0.0, "contains": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 25.0, avg_n: 191349.56000000008, avg_op_counts: {"nth": 0.0, "pop": 0.0, "remove": 0.0, "first": 0.0, "get": 0.0, "insert": 254900.28, "last": 0.0, "contains": 0.0, "clear": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 191543.8, avg_op_counts: {"nth": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "insert": 255540.26666666663, "pop": 0.0, "contains": 0.0, "get": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 191719.8500000001, avg_op_counts: {"push": 0.0, "contains": 0.0, "last": 0.0, "pop": 0.0, "nth": 0.0, "remove": 0.0, "insert": 254870.35000000003, "clear": 0.0, "first": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 191876.07142857145, avg_op_counts: {"contains": 0.0, "first": 0.0, "clear": 0.0, "push": 0.0, "remove": 0.0, "insert": 253364.35714285716, "pop": 0.0, "last": 0.0, "get": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 192043.46666666665, avg_op_counts: {"pop": 0.0, "push": 0.0, "clear": 0.0, "get": 0.0, "contains": 0.0, "first": 0.0, "nth": 0.0, "remove": 0.0, "insert": 253518.73333333337, "last": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 192175.93750000003, avg_op_counts: {"remove": 0.0, "last": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0, "contains": 0.0, "first": 0.0, "nth": 0.0, "insert": 256024.0625, "push": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 192306.15384615387, avg_op_counts: {"first": 0.0, "last": 0.0, "insert": 254467.00000000003, "clear": 0.0, "pop": 0.0, "push": 0.0, "nth": 0.0, "remove": 0.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 192472.15, avg_op_counts: {"first": 0.0, "remove": 0.0, "contains": 0.0, "insert": 255525.84999999995, "push": 0.0, "get": 0.0, "last": 0.0, "nth": 0.0, "pop": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 192629.29411764708, avg_op_counts: {"last": 0.0, "clear": 0.0, "nth": 0.0, "pop": 0.0, "first": 0.0, "remove": 0.0, "get": 0.0, "insert": 253977.05882352943, "contains": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 192747.2857142857, avg_op_counts: {"nth": 0.0, "contains": 0.0, "insert": 254195.92857142855, "push": 0.0, "pop": 0.0, "clear": 0.0, "first": 0.0, "get": 0.0, "last": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 192887.75000000003, avg_op_counts: {"pop": 0.0, "get": 0.0, "first": 0.0, "insert": 254348.9, "contains": 0.0, "remove": 0.0, "push": 0.0, "nth": 0.0, "clear": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 193026.57142857145, avg_op_counts: {"last": 0.0, "insert": 253249.7142857143, "remove": 0.0, "get": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 193169.13333333333, avg_op_counts: {"push": 0.0, "last": 0.0, "first": 0.0, "pop": 0.0, "insert": 256425.00000000003, "nth": 0.0, "remove": 0.0, "clear": 0.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 193263.58333333337, avg_op_counts: {"contains": 0.0, "clear": 0.0, "pop": 0.0, "last": 0.0, "insert": 254252.75, "nth": 0.0, "get": 0.0, "first": 0.0, "push": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 193386.31249999997, avg_op_counts: {"insert": 254558.81249999997, "last": 0.0, "get": 0.0, "pop": 0.0, "first": 0.0, "clear": 0.0, "nth": 0.0, "push": 0.0, "contains": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 193520.1764705882, avg_op_counts: {"remove": 0.0, "insert": 254977.8823529412, "get": 0.0, "clear": 0.0, "nth": 0.0, "pop": 0.0, "last": 0.0, "push": 0.0, "contains": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 193667.25, avg_op_counts: {"pop": 0.0, "push": 0.0, "get": 0.0, "insert": 255086.41666666663, "contains": 0.0, "last": 0.0, "first": 0.0, "remove": 0.0, "clear": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 193801.64285714287, avg_op_counts: {"last": 0.0, "pop": 0.0, "insert": 254118.2142857143, "first": 0.0, "remove": 0.0, "get": 0.0, "nth": 0.0, "clear": 0.0, "contains": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 193932.7142857143, avg_op_counts: {"pop": 0.0, "clear": 0.0, "nth": 0.0, "insert": 255405.14285714284, "push": 0.0, "remove": 0.0, "last": 0.0, "first": 0.0, "get": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 194051.27777777775, avg_op_counts: {"push": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "clear": 0.0, "remove": 0.0, "insert": 253264.66666666663, "pop": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 194228.0, avg_op_counts: {"remove": 0.0, "pop": 0.0, "push": 0.0, "contains": 0.0, "clear": 0.0, "first": 0.0, "last": 0.0, "get": 0.0, "nth": 0.0, "insert": 253977.2307692308} }, ProfilerPartition { occurences: 14.0, avg_n: 194373.85714285716, avg_op_counts: {"contains": 0.0, "clear": 0.0, "pop": 0.0, "remove": 0.0, "last": 0.0, "first": 0.0, "push": 0.0, "nth": 0.0, "get": 0.0, "insert": 256568.7142857143} }, ProfilerPartition { occurences: 10.0, avg_n: 194500.6, avg_op_counts: {"last": 0.0, "get": 0.0, "push": 0.0, "first": 0.0, "nth": 0.0, "clear": 0.0, "pop": 0.0, "remove": 0.0, "contains": 0.0, "insert": 253440.4} }, ProfilerPartition { occurences: 24.0, avg_n: 194698.91666666663, avg_op_counts: {"get": 0.0, "contains": 0.0, "insert": 254637.33333333337, "clear": 0.0, "pop": 0.0, "remove": 0.0, "push": 0.0, "last": 0.0, "first": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 194885.0588235294, avg_op_counts: {"get": 0.0, "remove": 0.0, "clear": 0.0, "pop": 0.0, "nth": 0.0, "contains": 0.0, "last": 0.0, "push": 0.0, "insert": 255225.0588235294, "first": 0.0} }, ProfilerPartition { occurences: 25.0, avg_n: 195041.84, avg_op_counts: {"remove": 0.0, "contains": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0, "first": 0.0, "get": 0.0, "insert": 254809.20000000004, "last": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 195172.3333333333, avg_op_counts: {"get": 0.0, "first": 0.0, "last": 0.0, "nth": 0.0, "remove": 0.0, "insert": 254499.53333333335, "clear": 0.0, "contains": 0.0, "pop": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 23.0, avg_n: 195301.04347826084, avg_op_counts: {"last": 0.0, "remove": 0.0, "first": 0.0, "get": 0.0, "push": 0.0, "contains": 0.0, "clear": 0.0, "insert": 255218.5652173913, "pop": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 195400.25, avg_op_counts: {"clear": 0.0, "remove": 0.0, "insert": 252834.5, "nth": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0, "last": 0.0, "push": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 195524.7499999999, avg_op_counts: {"first": 0.0, "push": 0.0, "insert": 255743.31250000003, "last": 0.0, "clear": 0.0, "contains": 0.0, "pop": 0.0, "get": 0.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 195675.35294117645, avg_op_counts: {"first": 0.0, "get": 0.0, "last": 0.0, "contains": 0.0, "pop": 0.0, "nth": 0.0, "push": 0.0, "clear": 0.0, "remove": 0.0, "insert": 253987.35294117648} }, ProfilerPartition { occurences: 22.0, avg_n: 195827.95454545456, avg_op_counts: {"pop": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0, "get": 0.0, "nth": 0.0, "contains": 0.0, "insert": 254242.40909090912} }, ProfilerPartition { occurences: 20.0, avg_n: 196004.95, avg_op_counts: {"insert": 254657.15, "remove": 0.0, "contains": 0.0, "last": 0.0, "first": 0.0, "nth": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 196167.8125, avg_op_counts: {"insert": 255063.6875, "first": 0.0, "push": 0.0, "contains": 0.0, "clear": 0.0, "pop": 0.0, "remove": 0.0, "get": 0.0, "nth": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 196290.16666666663, avg_op_counts: {"contains": 0.0, "last": 0.0, "remove": 0.0, "push": 0.0, "nth": 0.0, "get": 0.0, "insert": 254894.66666666663, "clear": 0.0, "first": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 196401.5, avg_op_counts: {"first": 0.0, "remove": 0.0, "push": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "contains": 0.0, "insert": 253446.1, "nth": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 196529.82352941175, avg_op_counts: {"remove": 0.0, "push": 0.0, "last": 0.0, "contains": 0.0, "pop": 0.0, "get": 0.0, "insert": 254043.70588235292, "clear": 0.0, "first": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 196632.7272727273, avg_op_counts: {"insert": 257092.7272727273, "remove": 0.0, "get": 0.0, "last": 0.0, "clear": 0.0, "pop": 0.0, "push": 0.0, "nth": 0.0, "contains": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 196763.5625, avg_op_counts: {"contains": 0.0, "insert": 253829.625, "first": 0.0, "remove": 0.0, "clear": 0.0, "last": 0.0, "nth": 0.0, "push": 0.0, "pop": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 196899.0, avg_op_counts: {"push": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0, "clear": 0.0, "last": 0.0, "insert": 254586.2, "remove": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 197012.18181818185, avg_op_counts: {"insert": 255587.09090909088, "clear": 0.0, "last": 0.0, "nth": 0.0, "push": 0.0, "remove": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 197127.15384615384, avg_op_counts: {"clear": 0.0, "nth": 0.0, "pop": 0.0, "contains": 0.0, "get": 0.0, "last": 0.0, "push": 0.0, "insert": 254984.07692307697, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 197233.55, avg_op_counts: {"first": 0.0, "pop": 0.0, "push": 0.0, "clear": 0.0, "last": 0.0, "nth": 0.0, "insert": 255585.7, "get": 0.0, "remove": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 22.0, avg_n: 197399.4090909091, avg_op_counts: {"nth": 0.0, "first": 0.0, "contains": 0.0, "remove": 0.0, "get": 0.0, "last": 0.0, "insert": 256074.13636363635, "pop": 0.0, "clear": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 26.0, avg_n: 197591.03846153847, avg_op_counts: {"nth": 0.0, "first": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0, "clear": 0.0, "get": 0.0, "insert": 254739.6923076923, "push": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 197777.59999999995, avg_op_counts: {"clear": 0.0, "contains": 0.0, "pop": 0.0, "insert": 255391.3333333333, "remove": 0.0, "last": 0.0, "first": 0.0, "push": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 21.0, avg_n: 197922.2857142857, avg_op_counts: {"remove": 0.0, "contains": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0, "insert": 255032.76190476184, "first": 0.0, "pop": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 198027.0, avg_op_counts: {"remove": 0.0, "get": 0.0, "contains": 0.0, "clear": 0.0, "last": 0.0, "first": 0.0, "nth": 0.0, "insert": 254739.2142857143, "push": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 198169.75, avg_op_counts: {"insert": 255473.20833333337, "pop": 0.0, "last": 0.0, "contains": 0.0, "remove": 0.0, "nth": 0.0, "get": 0.0, "first": 0.0, "push": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 198332.875, avg_op_counts: {"first": 0.0, "clear": 0.0, "push": 0.0, "contains": 0.0, "insert": 256391.06250000003, "get": 0.0, "nth": 0.0, "remove": 0.0, "last": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 22.0, avg_n: 198482.1818181818, avg_op_counts: {"push": 0.0, "contains": 0.0, "insert": 254204.3636363636, "pop": 0.0, "remove": 0.0, "clear": 0.0, "nth": 0.0, "first": 0.0, "last": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 198669.05555555553, avg_op_counts: {"contains": 0.0, "get": 0.0, "pop": 0.0, "nth": 0.0, "remove": 0.0, "insert": 255435.94444444444, "clear": 0.0, "push": 0.0, "last": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 198793.1538461538, avg_op_counts: {"contains": 0.0, "last": 0.0, "remove": 0.0, "get": 0.0, "insert": 255958.6923076923, "nth": 0.0, "clear": 0.0, "pop": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 198954.2, avg_op_counts: {"first": 0.0, "pop": 0.0, "remove": 0.0, "clear": 0.0, "push": 0.0, "insert": 254058.6, "last": 0.0, "contains": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 20.0, avg_n: 199124.55, avg_op_counts: {"first": 0.0, "remove": 0.0, "contains": 0.0, "get": 0.0, "insert": 256178.50000000003, "pop": 0.0, "last": 0.0, "push": 0.0, "nth": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 24.0, avg_n: 199291.4166666667, avg_op_counts: {"remove": 0.0, "get": 0.0, "last": 0.0, "nth": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0, "first": 0.0, "insert": 256088.0833333333, "contains": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 199444.5, avg_op_counts: {"first": 0.0, "nth": 0.0, "get": 0.0, "insert": 256683.88888888888, "pop": 0.0, "clear": 0.0, "push": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 18.0, avg_n: 199581.2222222222, avg_op_counts: {"first": 0.0, "clear": 0.0, "push": 0.0, "nth": 0.0, "get": 0.0, "last": 0.0, "pop": 0.0, "contains": 0.0, "insert": 256277.38888888885, "remove": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 199729.82352941175, avg_op_counts: {"get": 0.0, "clear": 0.0, "push": 0.0, "pop": 0.0, "remove": 0.0, "contains": 0.0, "first": 0.0, "last": 0.0, "nth": 0.0, "insert": 255604.47058823527} }, ProfilerPartition { occurences: 13.0, avg_n: 199897.3076923077, avg_op_counts: {"contains": 0.0, "insert": 256014.61538461535, "pop": 0.0, "remove": 0.0, "get": 0.0, "push": 0.0, "clear": 0.0, "nth": 0.0, "last": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 200031.75, avg_op_counts: {"insert": 257983.1666666667, "pop": 0.0, "first": 0.0, "get": 0.0, "last": 0.0, "contains": 0.0, "push": 0.0, "clear": 0.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 200180.75000000003, avg_op_counts: {"get": 0.0, "remove": 0.0, "pop": 0.0, "first": 0.0, "contains": 0.0, "clear": 0.0, "insert": 254821.16666666663, "nth": 0.0, "push": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 200303.9230769231, avg_op_counts: {"push": 0.0, "insert": 256241.6153846154, "get": 0.0, "clear": 0.0, "contains": 0.0, "last": 0.0, "remove": 0.0, "first": 0.0, "nth": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 15.0, avg_n: 200433.7333333333, avg_op_counts: {"last": 0.0, "clear": 0.0, "nth": 0.0, "push": 0.0, "get": 0.0, "insert": 257446.53333333333, "contains": 0.0, "first": 0.0, "pop": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 200531.1818181818, avg_op_counts: {"insert": 257560.45454545453, "pop": 0.0, "nth": 0.0, "get": 0.0, "first": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "remove": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 17.0, avg_n: 200663.4117647059, avg_op_counts: {"clear": 0.0, "last": 0.0, "get": 0.0, "remove": 0.0, "push": 0.0, "contains": 0.0, "nth": 0.0, "pop": 0.0, "first": 0.0, "insert": 256133.76470588235} }, ProfilerPartition { occurences: 11.0, avg_n: 200826.00000000003, avg_op_counts: {"nth": 0.0, "remove": 0.0, "push": 0.0, "pop": 0.0, "last": 0.0, "get": 0.0, "clear": 0.0, "insert": 256013.0909090909, "contains": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 16.0, avg_n: 200936.375, avg_op_counts: {"first": 0.0, "contains": 0.0, "insert": 256689.31250000003, "get": 0.0, "last": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0, "push": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 12.0, avg_n: 201080.5, avg_op_counts: {"contains": 0.0, "last": 0.0, "remove": 0.0, "insert": 256954.8333333333, "push": 0.0, "pop": 0.0, "first": 0.0, "nth": 0.0, "get": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 201185.0, avg_op_counts: {"pop": 0.0, "insert": 258066.8, "remove": 0.0, "push": 0.0, "contains": 0.0, "get": 0.0, "first": 0.0, "nth": 0.0, "last": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 14.0, avg_n: 201317.7142857143, avg_op_counts: {"insert": 256467.2142857143, "contains": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "push": 0.0, "nth": 0.0, "get": 0.0, "remove": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 201430.0, avg_op_counts: {"push": 0.0, "insert": 252509.0, "pop": 0.0, "nth": 0.0, "remove": 0.0, "first": 0.0, "get": 0.0, "clear": 0.0, "contains": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 201550.7142857143, avg_op_counts: {"remove": 0.0, "insert": 255113.42857142855, "pop": 0.0, "contains": 0.0, "push": 0.0, "last": 0.0, "first": 0.0, "clear": 0.0, "get": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 201671.25, avg_op_counts: {"contains": 0.0, "insert": 257461.0, "last": 0.0, "get": 0.0, "nth": 0.0, "push": 0.0, "clear": 0.0, "first": 0.0, "pop": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 201801.7272727273, avg_op_counts: {"remove": 0.0, "last": 0.0, "contains": 0.0, "push": 0.0, "nth": 0.0, "insert": 257478.45454545456, "get": 0.0, "first": 0.0, "clear": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 13.0, avg_n: 201966.6153846154, avg_op_counts: {"nth": 0.0, "insert": 257766.0, "first": 0.0, "pop": 0.0, "clear": 0.0, "get": 0.0, "last": 0.0, "contains": 0.0, "remove": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 202139.0909090909, avg_op_counts: {"nth": 0.0, "push": 0.0, "get": 0.0, "remove": 0.0, "insert": 258351.9090909091, "first": 0.0, "pop": 0.0, "contains": 0.0, "clear": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 202338.10000000003, avg_op_counts: {"clear": 0.0, "nth": 0.0, "last": 0.0, "contains": 0.0, "push": 0.0, "insert": 258487.0, "get": 0.0, "remove": 0.0, "pop": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 11.0, avg_n: 202566.18181818185, avg_op_counts: {"last": 0.0, "nth": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0, "insert": 258508.1818181818, "contains": 0.0, "remove": 0.0, "first": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 4.0, avg_n: 202727.5, avg_op_counts: {"contains": 0.0, "nth": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0, "first": 0.0, "insert": 256648.5, "remove": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 8.0, avg_n: 202845.125, avg_op_counts: {"contains": 0.0, "first": 0.0, "last": 0.0, "clear": 0.0, "remove": 0.0, "push": 0.0, "pop": 0.0, "insert": 258673.5, "get": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 10.0, avg_n: 202968.79999999996, avg_op_counts: {"get": 0.0, "last": 0.0, "contains": 0.0, "clear": 0.0, "pop": 0.0, "insert": 257374.0, "first": 0.0, "push": 0.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 6.0, avg_n: 203091.5, avg_op_counts: {"last": 0.0, "nth": 0.0, "remove": 0.0, "contains": 0.0, "insert": 257104.66666666663, "first": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 9.0, avg_n: 203206.55555555556, avg_op_counts: {"remove": 0.0, "insert": 257757.55555555556, "first": 0.0, "push": 0.0, "contains": 0.0, "clear": 0.0, "get": 0.0, "pop": 0.0, "nth": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 7.0, avg_n: 203584.14285714287, avg_op_counts: {"nth": 0.0, "get": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0, "contains": 0.0, "insert": 258777.42857142855, "remove": 0.0, "pop": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 5.0, avg_n: 203775.2, avg_op_counts: {"first": 0.0, "contains": 0.0, "pop": 0.0, "push": 0.0, "remove": 0.0, "last": 0.0, "get": 0.0, "clear": 0.0, "nth": 0.0, "insert": 257524.8} }, ProfilerPartition { occurences: 8.0, avg_n: 203957.375, avg_op_counts: {"last": 0.0, "first": 0.0, "contains": 0.0, "insert": 258483.25, "nth": 0.0, "remove": 0.0, "clear": 0.0, "push": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 204074.5, avg_op_counts: {"remove": 0.0, "nth": 0.0, "insert": 258986.0, "contains": 0.0, "first": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 204201.33333333337, avg_op_counts: {"nth": 0.0, "remove": 0.0, "push": 0.0, "clear": 0.0, "contains": 0.0, "insert": 258703.33333333337, "last": 0.0, "get": 0.0, "pop": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 204350.33333333337, avg_op_counts: {"last": 0.0, "push": 0.0, "get": 0.0, "insert": 257076.33333333337, "pop": 0.0, "nth": 0.0, "remove": 0.0, "first": 0.0, "contains": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 204556.0, avg_op_counts: {"get": 0.0, "contains": 0.0, "insert": 255819.0, "first": 0.0, "push": 0.0, "clear": 0.0, "nth": 0.0, "last": 0.0, "remove": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 204673.0, avg_op_counts: {"remove": 0.0, "first": 0.0, "insert": 258599.0, "push": 0.0, "contains": 0.0, "nth": 0.0, "last": 0.0, "clear": 0.0, "get": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 204916.5, avg_op_counts: {"remove": 0.0, "contains": 0.0, "last": 0.0, "clear": 0.0, "insert": 261051.0, "nth": 0.0, "pop": 0.0, "get": 0.0, "push": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 205068.0, avg_op_counts: {"push": 0.0, "pop": 0.0, "insert": 261254.5, "clear": 0.0, "nth": 0.0, "remove": 0.0, "last": 0.0, "contains": 0.0, "first": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 4.0, avg_n: 205183.25, avg_op_counts: {"contains": 0.0, "get": 0.0, "remove": 0.0, "pop": 0.0, "insert": 259279.25, "first": 0.0, "nth": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 3.0, avg_n: 205312.33333333337, avg_op_counts: {"first": 0.0, "last": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0, "clear": 0.0, "nth": 0.0, "get": 0.0, "push": 0.0, "insert": 258939.66666666663} }, ProfilerPartition { occurences: 3.0, avg_n: 205543.0, avg_op_counts: {"first": 0.0, "pop": 0.0, "nth": 0.0, "last": 0.0, "remove": 0.0, "contains": 0.0, "clear": 0.0, "push": 0.0, "get": 0.0, "insert": 257986.66666666663} }, ProfilerPartition { occurences: 2.0, avg_n: 205645.5, avg_op_counts: {"get": 0.0, "remove": 0.0, "nth": 0.0, "insert": 260875.5, "push": 0.0, "first": 0.0, "clear": 0.0, "contains": 0.0, "pop": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 205757.0, avg_op_counts: {"contains": 0.0, "last": 0.0, "insert": 262184.0, "nth": 0.0, "push": 0.0, "pop": 0.0, "get": 0.0, "first": 0.0, "remove": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 206016.0, avg_op_counts: {"nth": 0.0, "last": 0.0, "clear": 0.0, "insert": 258189.0, "remove": 0.0, "contains": 0.0, "push": 0.0, "first": 0.0, "pop": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 206161.0, avg_op_counts: {"contains": 0.0, "last": 0.0, "get": 0.0, "push": 0.0, "pop": 0.0, "clear": 0.0, "insert": 256212.0, "remove": 0.0, "nth": 0.0, "first": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 206363.0, avg_op_counts: {"get": 0.0, "push": 0.0, "last": 0.0, "nth": 0.0, "remove": 0.0, "contains": 0.0, "insert": 261549.5, "first": 0.0, "clear": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 206538.0, avg_op_counts: {"remove": 0.0, "first": 0.0, "get": 0.0, "contains": 0.0, "insert": 262991.0, "clear": 0.0, "last": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 206701.0, avg_op_counts: {"pop": 0.0, "last": 0.0, "first": 0.0, "contains": 0.0, "get": 0.0, "remove": 0.0, "push": 0.0, "clear": 0.0, "nth": 0.0, "insert": 261433.0} }, ProfilerPartition { occurences: 2.0, avg_n: 206882.5, avg_op_counts: {"nth": 0.0, "insert": 261582.5, "clear": 0.0, "last": 0.0, "push": 0.0, "first": 0.0, "contains": 0.0, "pop": 0.0, "get": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 207086.0, avg_op_counts: {"pop": 0.0, "get": 0.0, "push": 0.0, "insert": 261129.0, "nth": 0.0, "contains": 0.0, "last": 0.0, "clear": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 207273.0, avg_op_counts: {"pop": 0.0, "clear": 0.0, "first": 0.0, "contains": 0.0, "push": 0.0, "get": 0.0, "remove": 0.0, "nth": 0.0, "last": 0.0, "insert": 262664.0} }, ProfilerPartition { occurences: 1.0, avg_n: 207381.0, avg_op_counts: {"push": 0.0, "insert": 260916.0, "first": 0.0, "last": 0.0, "remove": 0.0, "contains": 0.0, "nth": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0} }, ProfilerPartition { occurences: 2.0, avg_n: 207624.0, avg_op_counts: {"first": 0.0, "insert": 258835.0, "nth": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0, "get": 0.0, "remove": 0.0, "contains": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 207943.0, avg_op_counts: {"remove": 0.0, "get": 0.0, "insert": 258782.0, "clear": 0.0, "last": 0.0, "nth": 0.0, "pop": 0.0, "push": 0.0, "first": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 208167.0, avg_op_counts: {"push": 0.0, "first": 0.0, "remove": 0.0, "contains": 0.0, "get": 0.0, "pop": 0.0, "clear": 0.0, "insert": 262336.0, "nth": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 208644.0, avg_op_counts: {"last": 0.0, "push": 0.0, "first": 0.0, "clear": 0.0, "pop": 0.0, "contains": 0.0, "insert": 262515.0, "remove": 0.0, "nth": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 208852.0, avg_op_counts: {"nth": 0.0, "contains": 0.0, "remove": 0.0, "first": 0.0, "clear": 0.0, "push": 0.0, "insert": 265951.0, "pop": 0.0, "get": 0.0, "last": 0.0} }]
[2024-03-25T16:48:12Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashSet", [835182.1211514242, 833651.9898410423, 424603.21982710407, 452123.88156075304, 2798344.8695250647, 5298674.709466821, 8402170.58179247, 10606514.604563557, 21091463.929415707, 57029355.19237383, 72442328.28367327, 96569131.46970369, 152363658.6032867, 269286924.7382512, 362228298.29550236, 478887584.7583321, 541060471.8250359, 682260242.6386924, 856681682.2727008, 998280505.6185629, 1122128083.0655954, 1186649520.4836104, 1365426820.3954163, 1427639701.6350727, 1397903887.4791484, 1370474352.9609125, 1109124005.4649541, 859056683.4993172, 617193715.0768694, 474229270.2325115, 427853213.7791842, 403061448.7143024, 333878827.1990646, 237194269.74001324, 195696070.1609404, 122377017.1001901, 74077090.17711803, 51893461.309061274, 31632246.159427423, 23162672.474126372, 10063610.626782289, 4692490.241602294, 2938760.1288184146, 1158128.0163984683, 1207475.3147546938, 8374773.408306993, 8789408.594518254, 8714220.922964763, 8641245.5244924, 8462530.32026488, 8721815.69319172, 17561164.7064452, 8797805.052996075, 9159902.947143987, 26768274.478693962, 26827853.561427355, 27130430.502263583, 26691169.67513085, 53809025.62630541, 80138441.96120514, 45231434.886270955, 45211735.89066629, 45063238.30336547, 81941474.295206, 27441541.433383405, 146538131.74262434, 73306954.57833911, 18144698.227650203, 174783673.31994176, 82709212.27635393, 128424341.15238246, 167826085.90662396, 166271424.44127536, 195800242.803025, 159311645.77819157, 167777030.8480212, 131143843.2456703, 243587111.82615152, 18806109.58729381, 226776133.34136528, 348591111.1706644, 348457792.16937876, 226468615.48082805, 331028042.9855373, 227359625.5915463, 361597165.5331035, 352098916.17345345, 362645053.26291156, 228795580.92363748, 211007245.718835, 449862158.2077461, 288767633.21194285, 452739262.813812, 384927835.7466359, 471832261.8738693, 569543425.8092636, 299869691.93639886, 543207127.4983975, 561767819.3498658, 553497203.5247511, 525444807.3521465, 508809492.7608094, 642694833.8036926, 546884712.2953124, 765207137.72833, 618187907.4018685, 611466189.6134596, 688898952.9919113, 592980557.5957212, 562979743.9763279, 725809471.5882226, 487901894.3399995, 638402115.6866666, 537392276.707261, 749018191.5636986, 768491724.0723815, 542156191.8187469, 491344519.10222775, 382598684.5655223, 524874587.5192725, 839357682.498812, 718370788.2680179, 595999208.2761678, 527916130.0634396, 487331779.38691324, 497033316.621767, 357248141.67066246, 408645851.8247862, 632153062.471757, 583408994.714249, 605390829.6353912, 544843484.4662871, 514355578.4925987, 411403809.7360929, 527681121.3205986, 415347756.0009166, 405754637.76016045, 427016623.7051944, 437843102.41951877, 336064977.9081442, 283306908.0252993, 263304799.10055977, 200621863.06906003, 253744663.39767367, 116333537.75318041, 275073141.24890465, 295073265.6066521, 180556249.9192632, 106351752.20530695, 170190560.189017, 117834180.31854066, 85358413.31682055, 139227567.40315452, 74880447.62552369, 86343543.91856468, 96844913.90065593, 109606395.0163742, 86852737.45103133, 32601254.087835014, 54509683.54402176, 98194139.2209005, 54192406.69608708, 65746006.91337653, 43916345.22281132, 43760048.61016468, 33222356.961647823, 32928872.600074396, 11186942.56421139, 22057554.216239188, 11199125.217847772, 22634877.74519701, 22450497.492614843, 11263492.1982444, 39296528.665190086, 41193080.30365366, 41067711.80159902, 82759677.53260778, 41753745.28767679, 42403825.13853343, 41573555.46917754, 166807496.12811905, 42440379.81326812, 84780736.20719978, 167548702.5051187, 127513063.62022577, 127306037.0403423, 42268065.58548307, 85146189.60183805, 85695836.29994075, 85618191.59481415, 42879954.18320567, 299591708.4329343, 127970671.5751138, 388304040.9985032, 346390947.0934688, 258680507.60525024, 215300329.214173, 129236977.8067967, 130705995.76033352, 257605868.6923768, 86467908.14594357, 349237023.3292583, 347697940.40929455, 394082727.9209442, 437494705.2157997, 441581982.47661424, 438390233.151009, 790038765.8045413, 440884437.329568, 308337512.3932311, 311956898.8665122, 441663212.07040256, 353525574.66711336, 266460366.36649507, 576128969.2390368, 667462515.266067, 624021887.9569595, 400713610.4424016, 356771043.4888726, 578532567.9730647, 716862917.9523109, 223828612.03789353, 404488152.48173434, 856968722.6490811, 631825237.5961859, 449683445.2344729, 452630539.07039034, 724657352.7347511, 226799448.2369867, 1362228557.1595306, 1135735036.8399346, 684197464.7963641, 911133072.9029348, 634804039.7574353, 681457811.4121463, 734836167.6126621, 594030598.1575623, 918892895.389024, 777282871.1479676, 641260268.3030099, 917647696.3576181, 320136912.9072032, 695385357.3093455, 552003903.7043226, 737599761.1078768, 785812960.3517148, 555566630.3529873, 646380049.5280346, 325159823.6320356, 829886657.7047733, 601879359.5675199, 655537790.4699187, 462989919.4818319, 1118152506.764758, 795005965.8451887, 1168648746.8879964, 701049518.3410859, 1079060787.9093118, 558160183.4510291, 753505444.9940214, 796034757.4555852, 1032421678.7790706, 941390566.1040341, 755269838.7440449, 283307596.8649199, 469901933.7095341, 801514749.3421605, 525270941.6159421, 755099011.9616472, 236920431.55682343, 523733337.0674298, 618047563.0860072, 953871622.9131012, 1052614822.0888478, 1239353155.2528617, 717875576.4868143, 1004737929.3423247, 669595936.5956547, 1152456385.159153, 772036448.119863, 1053710002.5920322, 867553051.6962903, 628449461.1075637, 720645029.5697906, 970150021.9449093, 1165265527.201725, 877015230.304995, 876547925.2995124, 826621275.3908094, 633952154.7383898, 590295725.7016968, 583728369.3122569, 636499093.2381327, 738611005.0771186, 542293066.9661974, 834292634.1687685, 540255108.2889329, 788568027.3020213, 592691859.0994337, 496444413.5333642, 691416339.9139795, 48666466.474350736, 344496961.9647779, 397700217.25880736, 547420662.0933272, 648490815.5005085, 550695273.0193301, 501655415.6614915, 552827343.1566308, 199827603.85089397, 403169859.5052829, 501903311.1036203, 301108133.2164256, 453206010.67550486, 354906473.9619633, 252644232.03854534, 406297270.42587596, 101862457.3531099, 152773973.98855373, 151984948.09906444, 50492583.85915167, 153259771.49346215, 103332482.37293391, 103531767.57760875, 205677397.05189478, 154206596.6689409, 153907379.17130572, 103834290.92736584, 52221545.70481505, 103053096.99422021, 51188010.835786045, 104668192.79576972, 52692034.805808745, 52444285.23526072, 105092180.81449509, 52535444.857734844, 52918696.66227476, 52609259.07842364, 104570231.4564334, 52399856.741200164, 53208904.36977208, 53436047.12004686, 54219898.53192844]), ("std::collections::BTreeSet", [1611378.5393701917, 1611904.7953785497, 823212.3770195701, 877909.1802425239, 5444150.502387831, 10331368.283662885, 16420934.312000334, 20771584.754874073, 41384840.91431523, 112125520.16317935, 142700405.49186614, 190553761.5633446, 301216335.740182, 533370434.41639894, 718836201.3915637, 952013739.4674629, 1077353959.976245, 1360575416.0284967, 1711074302.6999466, 1997018920.2178447, 2248216770.0649176, 2381007079.724069, 2743830999.0327835, 2873489649.1336803, 2818160759.661931, 2767339098.1686916, 2243059044.384349, 1739780154.6063597, 1251472503.4671245, 962581424.5842819, 869357488.0395521, 819857317.3083594, 679968038.6310923, 483662091.5933762, 399572844.8340162, 250209509.2792839, 151623222.82445344, 106325638.19302188, 64881376.81711989, 47568373.36172246, 20689951.21061495, 9655830.171588989, 6052412.78997779, 2387755.494297795, 2494018.381682663, 14755720.298420224, 15357279.579613905, 15213382.3821096, 15052267.074498348, 14725092.618737694, 15158864.053921107, 30493120.179736428, 15258929.769743035, 15874267.562685989, 46341526.21318146, 46351897.22198868, 46837145.87965671, 46027923.489397764, 92708791.18796165, 137922771.65611708, 77740251.30508918, 77652495.71616527, 77305256.16428731, 140423325.10101616, 46951192.50296995, 250556685.36592522, 125219296.75597304, 30970313.568161614, 298144458.70612836, 140928495.2280166, 218670006.49014282, 285518413.38200104, 282617782.61533815, 332532344.41130716, 270325800.575438, 284458583.4606196, 222195788.87945125, 412283138.8754109, 31809363.24743679, 383361828.2892711, 588757814.172953, 588005037.4388757, 381786577.7170092, 557541810.4770306, 382577995.6561906, 607943114.8696147, 591499265.9556867, 608748539.8261671, 383837981.27406776, 353759105.90862715, 753672112.2979252, 483407371.6319521, 757229377.8482172, 643236833.7724979, 787778566.8449944, 950058421.254815, 499828520.8186261, 904858047.3749675, 934931884.4335587, 920344869.6857212, 872982710.8511399, 844662846.5754489, 1066128431.0032163, 906284043.6618274, 1266898195.9350777, 1022485662.9794672, 1010551111.7963403, 1137437883.7579336, 978210073.6075281, 927947886.96956, 1195339403.786385, 802960325.0059347, 1049755599.5410627, 882914705.2151341, 1229570811.9679015, 1260296078.5077555, 888351832.0039866, 804475422.293871, 625995049.3234183, 858114781.636393, 1371272357.4340582, 1172647492.5174806, 972033411.4867857, 860341083.4078668, 793687336.0168958, 808876026.1757329, 580955976.9618806, 664139410.3807704, 1026573883.1430328, 946544812.0892503, 981447369.3326694, 882400254.1506363, 832354194.4238757, 665018856.9783181, 852219601.1396135, 670170117.3147999, 654183503.7821943, 687974340.1416392, 704864044.835534, 540483766.2435368, 455303179.67788076, 422821334.42057633, 321899096.7665869, 406750572.69754255, 186346728.51830575, 440322396.1192405, 471875879.58269686, 288438671.4982942, 169770635.33539608, 271470937.5121432, 187774393.24838293, 135892986.091005, 221496207.39836192, 119014055.88065849, 137134336.874253, 153664757.6280499, 173749290.05401045, 137575856.76016384, 51596430.53913494, 86205737.08429568, 155195335.16618794, 85571954.75672059, 103722430.43426862, 69232639.26874997, 68942475.12806389, 52266670.24059286, 51709485.78827873, 17550113.882308718, 34584942.46053653, 17541835.656344946, 35415331.76488672, 35031705.52604251, 17519207.83048438, 40906562.91498345, 42439873.25382853, 41842532.69234529, 83905857.23648262, 42306434.10761891, 42941145.72429141, 42066754.52833927, 168441724.04126942, 42823508.26834695, 85467724.04340339, 168730644.23976648, 128310578.27978787, 127991532.32118857, 42451315.18937663, 85473333.9813303, 85967983.33260162, 85826114.23214118, 42941608.80123573, 299726500.3323944, 127923825.44110066, 387447164.3245704, 345369524.4248994, 257710673.25734758, 214334499.27504605, 128511361.92488003, 129900512.19894314, 255922170.82830003, 85835212.39878154, 346449248.0576864, 344616136.3966293, 390266697.9406695, 432872847.8953817, 436570304.79128957, 433042756.32563055, 779756045.5196104, 434717459.28025806, 303794049.15814507, 307125876.3234408, 434511543.59450805, 347529179.65986097, 261820293.17735207, 565721876.9966192, 655025240.2728409, 611895284.7370425, 392686303.26526797, 349392797.11415076, 566341415.2388064, 701210591.7615731, 218751779.89881203, 395137586.3890006, 836534889.6259811, 616151493.8590811, 438271667.32215846, 440878912.4941535, 705426168.9096316, 220645843.01136732, 1324252936.1599512, 1103095962.8103392, 663892922.7074538, 883320365.4901277, 614948828.1060648, 659594800.5097711, 710793096.8715184, 574223431.4145958, 887522745.197611, 750162678.0064492, 618524406.052315, 884497129.0938947, 308359845.8078664, 669331612.3464285, 531074094.72662854, 709202536.3851587, 755060011.420183, 533436853.4258462, 620221369.2507105, 311799079.6091949, 795321658.5622437, 576308723.8515011, 627236665.0966454, 442725177.99453676, 1068168831.8216404, 758772717.3226163, 1114527227.9579916, 668154649.5959224, 1027779033.4887637, 531375144.07314396, 716908135.160299, 756812702.4309717, 980818573.7315736, 893562402.4696388, 716326367.3221414, 268538784.0690966, 445163499.79660153, 758842032.1777064, 497055449.53330684, 714081535.605193, 223902645.55532533, 494683055.72257495, 583438553.212131, 899990283.7453657, 992353196.2982345, 1167310713.4066446, 675532362.3545647, 944809114.4266576, 629336519.6235272, 1082413679.6941655, 724540056.0256542, 988168145.6267031, 812852891.0318459, 588470746.848601, 674274708.5066435, 906976320.6598372, 1088506593.2232516, 818637397.7721083, 817660320.66346, 770534080.4506704, 590459785.9710813, 549441592.5307436, 542938166.8926169, 591669659.7229912, 686160066.8039277, 503546666.6224302, 774189708.8709011, 500942445.79063404, 730798065.7208416, 548890920.8983109, 459525338.5803448, 639589633.1246612, 44994277.45606195, 318317906.7842301, 367265546.5557839, 505211963.366378, 598016017.6022567, 507412653.4244498, 461786726.3855327, 508336542.6388016, 183604021.06149408, 370229092.50915784, 460623268.0937863, 276180975.56317925, 415459175.3576194, 324761348.61783665, 230974679.99436486, 371126611.96473587, 92992991.70460656, 139387352.70712942, 138569243.2964664, 45990631.02843586, 139517472.37190402, 93958336.84170163, 94071917.03876331, 186782261.48648933, 139954331.20439532, 139530257.36397532, 94089044.04839428, 47295396.03238361, 93217692.98261993, 46270907.981254466, 94523600.48636295, 47545768.610768445, 47285854.23362982, 94674272.96113767, 47282208.30912151, 47585239.25852263, 47282961.77621592, 93875972.63485973, 46970574.089494355, 47645695.84491774, 47742262.103310645, 48395458.868462674])]
[2024-03-25T16:48:12Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::HashSet", 835182.1211514242), ("std::collections::HashSet", 833651.9898410423), ("std::collections::HashSet", 424603.21982710407), ("std::collections::HashSet", 452123.88156075304), ("std::collections::HashSet", 2798344.8695250647), ("std::collections::HashSet", 5298674.709466821), ("std::collections::HashSet", 8402170.58179247), ("std::collections::HashSet", 10606514.604563557), ("std::collections::HashSet", 21091463.929415707), ("std::collections::HashSet", 57029355.19237383), ("std::collections::HashSet", 72442328.28367327), ("std::collections::HashSet", 96569131.46970369), ("std::collections::HashSet", 152363658.6032867), ("std::collections::HashSet", 269286924.7382512), ("std::collections::HashSet", 362228298.29550236), ("std::collections::HashSet", 478887584.7583321), ("std::collections::HashSet", 541060471.8250359), ("std::collections::HashSet", 682260242.6386924), ("std::collections::HashSet", 856681682.2727008), ("std::collections::HashSet", 998280505.6185629), ("std::collections::HashSet", 1122128083.0655954), ("std::collections::HashSet", 1186649520.4836104), ("std::collections::HashSet", 1365426820.3954163), ("std::collections::HashSet", 1427639701.6350727), ("std::collections::HashSet", 1397903887.4791484), ("std::collections::HashSet", 1370474352.9609125), ("std::collections::HashSet", 1109124005.4649541), ("std::collections::HashSet", 859056683.4993172), ("std::collections::HashSet", 617193715.0768694), ("std::collections::HashSet", 474229270.2325115), ("std::collections::HashSet", 427853213.7791842), ("std::collections::HashSet", 403061448.7143024), ("std::collections::HashSet", 333878827.1990646), ("std::collections::HashSet", 237194269.74001324), ("std::collections::HashSet", 195696070.1609404), ("std::collections::HashSet", 122377017.1001901), ("std::collections::HashSet", 74077090.17711803), ("std::collections::HashSet", 51893461.309061274), ("std::collections::HashSet", 31632246.159427423), ("std::collections::HashSet", 23162672.474126372), ("std::collections::HashSet", 10063610.626782289), ("std::collections::HashSet", 4692490.241602294), ("std::collections::HashSet", 2938760.1288184146), ("std::collections::HashSet", 1158128.0163984683), ("std::collections::HashSet", 1207475.3147546938), ("std::collections::HashSet", 8374773.408306993), ("std::collections::HashSet", 8789408.594518254), ("std::collections::HashSet", 8714220.922964763), ("std::collections::HashSet", 8641245.5244924), ("std::collections::HashSet", 8462530.32026488), ("std::collections::HashSet", 8721815.69319172), ("std::collections::HashSet", 17561164.7064452), ("std::collections::HashSet", 8797805.052996075), ("std::collections::HashSet", 9159902.947143987), ("std::collections::HashSet", 26768274.478693962), ("std::collections::HashSet", 26827853.561427355), ("std::collections::HashSet", 27130430.502263583), ("std::collections::HashSet", 26691169.67513085), ("std::collections::HashSet", 53809025.62630541), ("std::collections::HashSet", 80138441.96120514), ("std::collections::HashSet", 45231434.886270955), ("std::collections::HashSet", 45211735.89066629), ("std::collections::HashSet", 45063238.30336547), ("std::collections::HashSet", 81941474.295206), ("std::collections::HashSet", 27441541.433383405), ("std::collections::HashSet", 146538131.74262434), ("std::collections::HashSet", 73306954.57833911), ("std::collections::HashSet", 18144698.227650203), ("std::collections::HashSet", 174783673.31994176), ("std::collections::HashSet", 82709212.27635393), ("std::collections::HashSet", 128424341.15238246), ("std::collections::HashSet", 167826085.90662396), ("std::collections::HashSet", 166271424.44127536), ("std::collections::HashSet", 195800242.803025), ("std::collections::HashSet", 159311645.77819157), ("std::collections::HashSet", 167777030.8480212), ("std::collections::HashSet", 131143843.2456703), ("std::collections::HashSet", 243587111.82615152), ("std::collections::HashSet", 18806109.58729381), ("std::collections::HashSet", 226776133.34136528), ("std::collections::HashSet", 348591111.1706644), ("std::collections::HashSet", 348457792.16937876), ("std::collections::HashSet", 226468615.48082805), ("std::collections::HashSet", 331028042.9855373), ("std::collections::HashSet", 227359625.5915463), ("std::collections::HashSet", 361597165.5331035), ("std::collections::HashSet", 352098916.17345345), ("std::collections::HashSet", 362645053.26291156), ("std::collections::HashSet", 228795580.92363748), ("std::collections::HashSet", 211007245.718835), ("std::collections::HashSet", 449862158.2077461), ("std::collections::HashSet", 288767633.21194285), ("std::collections::HashSet", 452739262.813812), ("std::collections::HashSet", 384927835.7466359), ("std::collections::HashSet", 471832261.8738693), ("std::collections::HashSet", 569543425.8092636), ("std::collections::HashSet", 299869691.93639886), ("std::collections::HashSet", 543207127.4983975), ("std::collections::HashSet", 561767819.3498658), ("std::collections::HashSet", 553497203.5247511), ("std::collections::HashSet", 525444807.3521465), ("std::collections::HashSet", 508809492.7608094), ("std::collections::HashSet", 642694833.8036926), ("std::collections::HashSet", 546884712.2953124), ("std::collections::HashSet", 765207137.72833), ("std::collections::HashSet", 618187907.4018685), ("std::collections::HashSet", 611466189.6134596), ("std::collections::HashSet", 688898952.9919113), ("std::collections::HashSet", 592980557.5957212), ("std::collections::HashSet", 562979743.9763279), ("std::collections::HashSet", 725809471.5882226), ("std::collections::HashSet", 487901894.3399995), ("std::collections::HashSet", 638402115.6866666), ("std::collections::HashSet", 537392276.707261), ("std::collections::HashSet", 749018191.5636986), ("std::collections::HashSet", 768491724.0723815), ("std::collections::HashSet", 542156191.8187469), ("std::collections::HashSet", 491344519.10222775), ("std::collections::HashSet", 382598684.5655223), ("std::collections::HashSet", 524874587.5192725), ("std::collections::HashSet", 839357682.498812), ("std::collections::HashSet", 718370788.2680179), ("std::collections::HashSet", 595999208.2761678), ("std::collections::HashSet", 527916130.0634396), ("std::collections::HashSet", 487331779.38691324), ("std::collections::HashSet", 497033316.621767), ("std::collections::HashSet", 357248141.67066246), ("std::collections::HashSet", 408645851.8247862), ("std::collections::HashSet", 632153062.471757), ("std::collections::HashSet", 583408994.714249), ("std::collections::HashSet", 605390829.6353912), ("std::collections::HashSet", 544843484.4662871), ("std::collections::HashSet", 514355578.4925987), ("std::collections::HashSet", 411403809.7360929), ("std::collections::HashSet", 527681121.3205986), ("std::collections::HashSet", 415347756.0009166), ("std::collections::HashSet", 405754637.76016045), ("std::collections::HashSet", 427016623.7051944), ("std::collections::HashSet", 437843102.41951877), ("std::collections::HashSet", 336064977.9081442), ("std::collections::HashSet", 283306908.0252993), ("std::collections::HashSet", 263304799.10055977), ("std::collections::HashSet", 200621863.06906003), ("std::collections::HashSet", 253744663.39767367), ("std::collections::HashSet", 116333537.75318041), ("std::collections::HashSet", 275073141.24890465), ("std::collections::HashSet", 295073265.6066521), ("std::collections::HashSet", 180556249.9192632), ("std::collections::HashSet", 106351752.20530695), ("std::collections::HashSet", 170190560.189017), ("std::collections::HashSet", 117834180.31854066), ("std::collections::HashSet", 85358413.31682055), ("std::collections::HashSet", 139227567.40315452), ("std::collections::HashSet", 74880447.62552369), ("std::collections::HashSet", 86343543.91856468), ("std::collections::HashSet", 96844913.90065593), ("std::collections::HashSet", 109606395.0163742), ("std::collections::HashSet", 86852737.45103133), ("std::collections::HashSet", 32601254.087835014), ("std::collections::HashSet", 54509683.54402176), ("std::collections::HashSet", 98194139.2209005), ("std::collections::HashSet", 54192406.69608708), ("std::collections::HashSet", 65746006.91337653), ("std::collections::HashSet", 43916345.22281132), ("std::collections::HashSet", 43760048.61016468), ("std::collections::HashSet", 33222356.961647823), ("std::collections::HashSet", 32928872.600074396), ("std::collections::HashSet", 11186942.56421139), ("std::collections::HashSet", 22057554.216239188), ("std::collections::HashSet", 11199125.217847772), ("std::collections::HashSet", 22634877.74519701), ("std::collections::HashSet", 22450497.492614843), ("std::collections::HashSet", 11263492.1982444), ("std::collections::HashSet", 39296528.665190086), ("std::collections::HashSet", 41193080.30365366), ("std::collections::HashSet", 41067711.80159902), ("std::collections::HashSet", 82759677.53260778), ("std::collections::HashSet", 41753745.28767679), ("std::collections::HashSet", 42403825.13853343), ("std::collections::HashSet", 41573555.46917754), ("std::collections::HashSet", 166807496.12811905), ("std::collections::HashSet", 42440379.81326812), ("std::collections::HashSet", 84780736.20719978), ("std::collections::HashSet", 167548702.5051187), ("std::collections::HashSet", 127513063.62022577), ("std::collections::HashSet", 127306037.0403423), ("std::collections::HashSet", 42268065.58548307), ("std::collections::HashSet", 85146189.60183805), ("std::collections::HashSet", 85695836.29994075), ("std::collections::HashSet", 85618191.59481415), ("std::collections::HashSet", 42879954.18320567), ("std::collections::HashSet", 299591708.4329343), ("std::collections::BTreeSet", 127923825.44110066), ("std::collections::BTreeSet", 387447164.3245704), ("std::collections::BTreeSet", 345369524.4248994), ("std::collections::BTreeSet", 257710673.25734758), ("std::collections::BTreeSet", 214334499.27504605), ("std::collections::BTreeSet", 128511361.92488003), ("std::collections::BTreeSet", 129900512.19894314), ("std::collections::BTreeSet", 255922170.82830003), ("std::collections::BTreeSet", 85835212.39878154), ("std::collections::BTreeSet", 346449248.0576864), ("std::collections::BTreeSet", 344616136.3966293), ("std::collections::BTreeSet", 390266697.9406695), ("std::collections::BTreeSet", 432872847.8953817), ("std::collections::BTreeSet", 436570304.79128957), ("std::collections::BTreeSet", 433042756.32563055), ("std::collections::BTreeSet", 779756045.5196104), ("std::collections::BTreeSet", 434717459.28025806), ("std::collections::BTreeSet", 303794049.15814507), ("std::collections::BTreeSet", 307125876.3234408), ("std::collections::BTreeSet", 434511543.59450805), ("std::collections::BTreeSet", 347529179.65986097), ("std::collections::BTreeSet", 261820293.17735207), ("std::collections::BTreeSet", 565721876.9966192), ("std::collections::BTreeSet", 655025240.2728409), ("std::collections::BTreeSet", 611895284.7370425), ("std::collections::BTreeSet", 392686303.26526797), ("std::collections::BTreeSet", 349392797.11415076), ("std::collections::BTreeSet", 566341415.2388064), ("std::collections::BTreeSet", 701210591.7615731), ("std::collections::BTreeSet", 218751779.89881203), ("std::collections::BTreeSet", 395137586.3890006), ("std::collections::BTreeSet", 836534889.6259811), ("std::collections::BTreeSet", 616151493.8590811), ("std::collections::BTreeSet", 438271667.32215846), ("std::collections::BTreeSet", 440878912.4941535), ("std::collections::BTreeSet", 705426168.9096316), ("std::collections::BTreeSet", 220645843.01136732), ("std::collections::BTreeSet", 1324252936.1599512), ("std::collections::BTreeSet", 1103095962.8103392), ("std::collections::BTreeSet", 663892922.7074538), ("std::collections::BTreeSet", 883320365.4901277), ("std::collections::BTreeSet", 614948828.1060648), ("std::collections::BTreeSet", 659594800.5097711), ("std::collections::BTreeSet", 710793096.8715184), ("std::collections::BTreeSet", 574223431.4145958), ("std::collections::BTreeSet", 887522745.197611), ("std::collections::BTreeSet", 750162678.0064492), ("std::collections::BTreeSet", 618524406.052315), ("std::collections::BTreeSet", 884497129.0938947), ("std::collections::BTreeSet", 308359845.8078664), ("std::collections::BTreeSet", 669331612.3464285), ("std::collections::BTreeSet", 531074094.72662854), ("std::collections::BTreeSet", 709202536.3851587), ("std::collections::BTreeSet", 755060011.420183), ("std::collections::BTreeSet", 533436853.4258462), ("std::collections::BTreeSet", 620221369.2507105), ("std::collections::BTreeSet", 311799079.6091949), ("std::collections::BTreeSet", 795321658.5622437), ("std::collections::BTreeSet", 576308723.8515011), ("std::collections::BTreeSet", 627236665.0966454), ("std::collections::BTreeSet", 442725177.99453676), ("std::collections::BTreeSet", 1068168831.8216404), ("std::collections::BTreeSet", 758772717.3226163), ("std::collections::BTreeSet", 1114527227.9579916), ("std::collections::BTreeSet", 668154649.5959224), ("std::collections::BTreeSet", 1027779033.4887637), ("std::collections::BTreeSet", 531375144.07314396), ("std::collections::BTreeSet", 716908135.160299), ("std::collections::BTreeSet", 756812702.4309717), ("std::collections::BTreeSet", 980818573.7315736), ("std::collections::BTreeSet", 893562402.4696388), ("std::collections::BTreeSet", 716326367.3221414), ("std::collections::BTreeSet", 268538784.0690966), ("std::collections::BTreeSet", 445163499.79660153), ("std::collections::BTreeSet", 758842032.1777064), ("std::collections::BTreeSet", 497055449.53330684), ("std::collections::BTreeSet", 714081535.605193), ("std::collections::BTreeSet", 223902645.55532533), ("std::collections::BTreeSet", 494683055.72257495), ("std::collections::BTreeSet", 583438553.212131), ("std::collections::BTreeSet", 899990283.7453657), ("std::collections::BTreeSet", 992353196.2982345), ("std::collections::BTreeSet", 1167310713.4066446), ("std::collections::BTreeSet", 675532362.3545647), ("std::collections::BTreeSet", 944809114.4266576), ("std::collections::BTreeSet", 629336519.6235272), ("std::collections::BTreeSet", 1082413679.6941655), ("std::collections::BTreeSet", 724540056.0256542), ("std::collections::BTreeSet", 988168145.6267031), ("std::collections::BTreeSet", 812852891.0318459), ("std::collections::BTreeSet", 588470746.848601), ("std::collections::BTreeSet", 674274708.5066435), ("std::collections::BTreeSet", 906976320.6598372), ("std::collections::BTreeSet", 1088506593.2232516), ("std::collections::BTreeSet", 818637397.7721083), ("std::collections::BTreeSet", 817660320.66346), ("std::collections::BTreeSet", 770534080.4506704), ("std::collections::BTreeSet", 590459785.9710813), ("std::collections::BTreeSet", 549441592.5307436), ("std::collections::BTreeSet", 542938166.8926169), ("std::collections::BTreeSet", 591669659.7229912), ("std::collections::BTreeSet", 686160066.8039277), ("std::collections::BTreeSet", 503546666.6224302), ("std::collections::BTreeSet", 774189708.8709011), ("std::collections::BTreeSet", 500942445.79063404), ("std::collections::BTreeSet", 730798065.7208416), ("std::collections::BTreeSet", 548890920.8983109), ("std::collections::BTreeSet", 459525338.5803448), ("std::collections::BTreeSet", 639589633.1246612), ("std::collections::BTreeSet", 44994277.45606195), ("std::collections::BTreeSet", 318317906.7842301), ("std::collections::BTreeSet", 367265546.5557839), ("std::collections::BTreeSet", 505211963.366378), ("std::collections::BTreeSet", 598016017.6022567), ("std::collections::BTreeSet", 507412653.4244498), ("std::collections::BTreeSet", 461786726.3855327), ("std::collections::BTreeSet", 508336542.6388016), ("std::collections::BTreeSet", 183604021.06149408), ("std::collections::BTreeSet", 370229092.50915784), ("std::collections::BTreeSet", 460623268.0937863), ("std::collections::BTreeSet", 276180975.56317925), ("std::collections::BTreeSet", 415459175.3576194), ("std::collections::BTreeSet", 324761348.61783665), ("std::collections::BTreeSet", 230974679.99436486), ("std::collections::BTreeSet", 371126611.96473587), ("std::collections::BTreeSet", 92992991.70460656), ("std::collections::BTreeSet", 139387352.70712942), ("std::collections::BTreeSet", 138569243.2964664), ("std::collections::BTreeSet", 45990631.02843586), ("std::collections::BTreeSet", 139517472.37190402), ("std::collections::BTreeSet", 93958336.84170163), ("std::collections::BTreeSet", 94071917.03876331), ("std::collections::BTreeSet", 186782261.48648933), ("std::collections::BTreeSet", 139954331.20439532), ("std::collections::BTreeSet", 139530257.36397532), ("std::collections::BTreeSet", 94089044.04839428), ("std::collections::BTreeSet", 47295396.03238361), ("std::collections::BTreeSet", 93217692.98261993), ("std::collections::BTreeSet", 46270907.981254466), ("std::collections::BTreeSet", 94523600.48636295), ("std::collections::BTreeSet", 47545768.610768445), ("std::collections::BTreeSet", 47285854.23362982), ("std::collections::BTreeSet", 94674272.96113767), ("std::collections::BTreeSet", 47282208.30912151), ("std::collections::BTreeSet", 47585239.25852263), ("std::collections::BTreeSet", 47282961.77621592), ("std::collections::BTreeSet", 93875972.63485973), ("std::collections::BTreeSet", 46970574.089494355), ("std::collections::BTreeSet", 47645695.84491774), ("std::collections::BTreeSet", 47742262.103310645), ("std::collections::BTreeSet", 48395458.868462674)]
[2024-03-25T16:48:12Z DEBUG candelabra::profiler::info] With split index 192, split proper is true
[2024-03-25T16:48:12Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_09
[2024-03-25T16:48:12Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs
[2024-03-25T16:48:12Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:48:12Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:48:12Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:48:12Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:48:12Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:48:12Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:48:13Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
[2024-03-25T16:48:13Z INFO  candelabra_cli::select] Saved best choices
[2024-03-25T16:48:13Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs", "Set"): std::collections::HashSet}
[2024-03-25T16:48:13Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_09
[2024-03-25T16:48:13Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs
[2024-03-25T16:48:13Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:48:13Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:48:13Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:48:13Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:48:13Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:48:13Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:48:13Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_09)
    Finished bench [optimized] target(s) in 3.20s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-1449f11de19001f3)
[2024-03-25T16:49:19Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs", "Set"): std::collections::BTreeSet}
[2024-03-25T16:49:19Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_09
[2024-03-25T16:49:19Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs
[2024-03-25T16:49:19Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:49:19Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:49:19Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:49:19Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:49:19Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:49:19Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:49:19Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_09)
    Finished bench [optimized] target(s) in 3.18s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-1449f11de19001f3)
[2024-03-25T16:50:29Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs", "Set"): std::collections::HashSet until n=185540, then std::collections::BTreeSet}
[2024-03-25T16:50:29Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_09
[2024-03-25T16:50:29Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs
[2024-03-25T16:50:29Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:50:29Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:50:29Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:50:29Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:50:29Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:50:29Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:50:29Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_09 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_09)
warning: unnecessary parentheses around type
 --> aoc_2022_09/src/types.rs:9:114
  |
9 |     ::primrose_library::AdaptiveContainer::<185540, std::collections::HashSet<T>, std::collections::BTreeSet<T>, (T)>::default()
  |                                                                                                                  ^ ^
  |
  = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
  |
9 -     ::primrose_library::AdaptiveContainer::<185540, std::collections::HashSet<T>, std::collections::BTreeSet<T>, (T)>::default()
9 +     ::primrose_library::AdaptiveContainer::<185540, std::collections::HashSet<T>, std::collections::BTreeSet<T>, T>::default()
  |

warning: `aoc_2022_09` (lib) generated 1 warning (run `cargo fix --lib -p aoc_2022_09` to apply 1 suggestion)
    Finished bench [optimized] target(s) in 3.75s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-1449f11de19001f3)
┌───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┬───────────────────────┬────────────────────────┬────────────────────────┬───────────────────────┬────────────────────────┬────────────────────────┬──────────┐
│                                                                                                                                               │ aoc_2022_09-part1/100 │ aoc_2022_09-part1/1000 │ aoc_2022_09-part1/2000 │ aoc_2022_09-part2/100 │ aoc_2022_09-part2/1000 │ aoc_2022_09-part2/2000 │ total    │
├───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┼───────────────────────┼────────────────────────┼────────────────────────┼───────────────────────┼────────────────────────┼────────────────────────┼──────────┤
│ {("/opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs", "Set"): std::collections::HashSet until n=185540, then std::collections::BTreeSet} │ 550310                │ 6334600                │ 30820000               │ 1087500               │ 11552000               │ 40646000               │ 90990410 │
│ {("/opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs", "Set"): std::collections::HashSet}                                                 │ 542070                │ 6161000                │ 13340000               │ 1107600               │ 12499000               │ 24090000               │ 57739670 │
│ {("/opt/candelabra/src/tests/aoc_2022_09/src/types.pr.rs", "Set"): std::collections::BTreeSet}                                                │ 866900                │ 10385000               │ 21656000               │ 1355700               │ 15368000               │ 32198000               │ 81829600 │
└───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┴───────────────────────┴────────────────────────┴────────────────────────┴───────────────────────┴────────────────────────┴────────────────────────┴──────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|c|c|c|c|}
 & aoc\_2022\_09-part1/100 & aoc\_2022\_09-part1/1000 & aoc\_2022\_09-part1/2000 & aoc\_2022\_09-part2/100 & aoc\_2022\_09-part2/1000 & aoc\_2022\_09-part2/2000 & total \\
\hline
\{("/opt/candelabra/src/tests/aoc\_2022\_09/src/types.pr.rs", "Set"): std::collections::HashSet until n=185540, then std::collections::BTreeSet\} & 550310 & 6334600 & 30820000 & 1087500 & 11552000 & 40646000 & 90990410 \\
\{("/opt/candelabra/src/tests/aoc\_2022\_09/src/types.pr.rs", "Set"): std::collections::HashSet\} & 542070 & 6161000 & 13340000 & 1107600 & 12499000 & 24090000 & 57739670 \\
\{("/opt/candelabra/src/tests/aoc\_2022\_09/src/types.pr.rs", "Set"): std::collections::BTreeSet\} & 866900 & 10385000 & 21656000 & 1355700 & 15368000 & 32198000 & 81829600 \\
\end{tabular}
\end{center}
section_end:1711385499:compare-aoc_2022_09

section_start:1711385499:compare-aoc_2022_14
compare-aoc_2022_14
/run/current-system/sw/bin/candelabra-cli -l --manifest-path /opt/candelabra/src/tests/Cargo.toml -p aoc_2022_14 select --compare
[2024-03-25T16:51:39Z INFO  candelabra_cli] Using source dir: "/nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source"
[2024-03-25T16:51:39Z DEBUG candelabra::candidates] Initialised candidate cacher with hash 6543311679163142612
[2024-03-25T16:51:39Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs. Continuing anyway.
[2024-03-25T16:51:39Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs. Continuing anyway.
[2024-03-25T16:51:39Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs. Continuing anyway.
[2024-03-25T16:51:39Z DEBUG candelabra::cost] Initialised benchmark cacher with hash 6543311679163142612
[2024-03-25T16:51:39Z INFO  candelabra_cli::select] Processing project aoc_2022_14
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 99022.0, avg_n: 29.192028034174125, avg_op_counts: {"nth": 0.0, "clear": 0.0, "get": 0.0, "insert": 29.192028034174125, "push": 0.0, "first": 0.0, "pop": 0.0, "last": 0.0, "contains": 372.2773222112264, "remove": 0.0} }, ProfilerPartition { occurences: 26.0, avg_n: 26360.0, avg_op_counts: {"contains": 5107130.0, "get": 0.0, "push": 0.0, "pop": 0.0, "last": 0.0, "insert": 26360.0, "remove": 0.0, "clear": 0.0, "first": 0.0, "nth": 0.0} }]
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashSet", [1674077076.6974382, 15974321226.296566]), ("std::collections::BTreeSet", [2082158082.8687127, 21354823978.304924])]
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::HashSet", 1674077076.6974382), ("std::collections::HashSet", 15974321226.296566)]
┌──────┬──────────────────────────────┬────────────────────┬───────────────────────────────────────────────────────┐
│ name │ implementation               │ estimated cost     │ file                                                  │
├──────┼──────────────────────────────┼────────────────────┼───────────────────────────────────────────────────────┤
│ Set  │ std::collections::HashSet    │ 17648398302.994003 │ /opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs │
│ Set  │ std::collections::BTreeSet   │ 23436982061.173637 │ /opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs │
│ List │ std::vec::Vec                │ 287403.5813059762  │ /opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs │
│ List │ std::collections::LinkedList │ 233734.21651701306 │ /opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs │
└──────┴──────────────────────────────┴────────────────────┴───────────────────────────────────────────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|}
name & implementation & estimated cost & file \\
\hline
Set & std::collections::HashSet & 17648398302.994003 & /opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs \\
Set & std::collections::BTreeSet & 23436982061.173637 & /opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs \\
List & std::vec::Vec & 287403.5813059762 & /opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs \\
List & std::collections::LinkedList & 233734.21651701306 & /opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs \\
\end{tabular}
\end{center}
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 266433.0, avg_n: 5.293814955354618, avg_op_counts: {"insert": 0.08577766267691815, "nth": 0.0, "remove": 0.0, "pop": 0.0, "push": 0.0, "contains": 0.0, "last": 0.0, "first": 0.0, "get": 0.0, "clear": 0.0} }]
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::LinkedList", [233734.21651701306]), ("std::vec::Vec", [287403.5813059762])]
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::LinkedList", 233734.21651701306)]
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 99022.0, avg_n: 29.192028034174125, avg_op_counts: {"nth": 0.0, "push": 0.0, "pop": 0.0, "first": 0.0, "last": 0.0, "contains": 372.2773222112264, "remove": 0.0, "clear": 0.0, "get": 0.0, "insert": 29.192028034174125} }, ProfilerPartition { occurences: 26.0, avg_n: 26360.0, avg_op_counts: {"push": 0.0, "clear": 0.0, "contains": 5107130.0, "nth": 0.0, "last": 0.0, "remove": 0.0, "get": 0.0, "pop": 0.0, "first": 0.0, "insert": 26360.0} }]
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashSet", [1674077076.6974382, 15974321226.296566]), ("std::collections::BTreeSet", [2082158082.8687127, 21354823978.304924])]
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::HashSet", 1674077076.6974382), ("std::collections::HashSet", 15974321226.296566)]
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 266433.0, avg_n: 5.293814955354618, avg_op_counts: {"pop": 0.0, "insert": 0.08577766267691815, "push": 0.0, "last": 0.0, "nth": 0.0, "contains": 0.0, "get": 0.0, "first": 0.0, "clear": 0.0, "remove": 0.0} }]
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::LinkedList", [233734.21651701306]), ("std::vec::Vec", [287403.5813059762])]
[2024-03-25T16:51:39Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::LinkedList", 233734.21651701306)]
[2024-03-25T16:51:39Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_14
[2024-03-25T16:51:39Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs
[2024-03-25T16:51:39Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:51:39Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:51:39Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:51:39Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:51:39Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:51:39Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:51:39Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
[2024-03-25T16:51:39Z INFO  candelabra_cli::select] Saved best choices
[2024-03-25T16:51:39Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "List"): std::vec::Vec, ("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "Set"): std::collections::HashSet}
[2024-03-25T16:51:39Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_14
[2024-03-25T16:51:39Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs
[2024-03-25T16:51:39Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:51:39Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:51:39Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:51:39Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:51:39Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:51:39Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:51:39Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_14 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_14)
warning: unused imports: `SeedableRng`, `rngs::StdRng`
 --> aoc_2022_14/benches/main.rs:3:12
  |
3 | use rand::{rngs::StdRng, SeedableRng};
  |            ^^^^^^^^^^^^  ^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

warning: `aoc_2022_14` (bench "main") generated 1 warning (run `cargo fix --bench "main"` to apply 1 suggestion)
    Finished bench [optimized] target(s) in 3.37s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-c5ccfc54f1fe7c38)
[2024-03-25T16:52:23Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "Set"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "List"): std::vec::Vec}
[2024-03-25T16:52:23Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_14
[2024-03-25T16:52:23Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs
[2024-03-25T16:52:23Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:52:23Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:52:23Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:52:23Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:52:23Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:52:23Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:52:23Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_14 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_14)
warning: unused imports: `SeedableRng`, `rngs::StdRng`
 --> aoc_2022_14/benches/main.rs:3:12
  |
3 | use rand::{rngs::StdRng, SeedableRng};
  |            ^^^^^^^^^^^^  ^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

warning: `aoc_2022_14` (bench "main") generated 1 warning (run `cargo fix --bench "main"` to apply 1 suggestion)
    Finished bench [optimized] target(s) in 3.33s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-c5ccfc54f1fe7c38)
[2024-03-25T16:53:08Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "Set"): std::collections::HashSet, ("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "List"): std::collections::LinkedList}
[2024-03-25T16:53:08Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_14
[2024-03-25T16:53:08Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs
[2024-03-25T16:53:08Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:53:08Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:53:08Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:53:08Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:53:08Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:53:08Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:53:08Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_14 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_14)
warning: unused imports: `SeedableRng`, `rngs::StdRng`
 --> aoc_2022_14/benches/main.rs:3:12
  |
3 | use rand::{rngs::StdRng, SeedableRng};
  |            ^^^^^^^^^^^^  ^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

warning: `aoc_2022_14` (bench "main") generated 1 warning (run `cargo fix --bench "main"` to apply 1 suggestion)
    Finished bench [optimized] target(s) in 3.24s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-c5ccfc54f1fe7c38)
[2024-03-25T16:53:58Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "Set"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "List"): std::collections::LinkedList}
[2024-03-25T16:53:58Z DEBUG candelabra::confirmation] Saving choices for project aoc_2022_14
[2024-03-25T16:53:58Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs
[2024-03-25T16:53:58Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:53:58Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:53:58Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:53:58Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:53:58Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:53:58Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:53:58Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling aoc_2022_14 v0.1.0 (/opt/candelabra/src/tests/aoc_2022_14)
warning: unused imports: `SeedableRng`, `rngs::StdRng`
 --> aoc_2022_14/benches/main.rs:3:12
  |
3 | use rand::{rngs::StdRng, SeedableRng};
  |            ^^^^^^^^^^^^  ^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

warning: `aoc_2022_14` (bench "main") generated 1 warning (run `cargo fix --bench "main"` to apply 1 suggestion)
    Finished bench [optimized] target(s) in 3.22s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-c5ccfc54f1fe7c38)
┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┬─────────────────────────┬─────────────────────────┬─────────────────────────┬─────────────────────────┬────────────────────┐
│                                                                                                                                                                                                 │ aoc_2022_14-part1/large │ aoc_2022_14-part1/small │ aoc_2022_14-part2/large │ aoc_2022_14-part2/small │ total              │
├─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┼─────────────────────────┼─────────────────────────┼─────────────────────────┼─────────────────────────┼────────────────────┤
│ {("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "Set"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "List"): std::collections::LinkedList} │ 1504.6                  │ 6203.5                  │ 342020000               │ 41503                   │ 342069211.1        │
│ {("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "Set"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "List"): std::vec::Vec}                │ 1235.4                  │ 4816.099999999999       │ 273230000               │ 32722                   │ 273268773.5        │
│ {("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "Set"): std::collections::HashSet, ("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "List"): std::collections::LinkedList}  │ 1191                    │ 11296                   │ 350190000               │ 64620.00000000001       │ 350267107          │
│ {("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "List"): std::vec::Vec, ("/opt/candelabra/src/tests/aoc_2022_14/src/types.pr.rs", "Set"): std::collections::HashSet}                 │ 1649.3                  │ 9967.4                  │ 266380000               │ 53478                   │ 266445094.70000002 │
└─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┴─────────────────────────┴─────────────────────────┴─────────────────────────┴─────────────────────────┴────────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|c|c|}
 & aoc\_2022\_14-part1/large & aoc\_2022\_14-part1/small & aoc\_2022\_14-part2/large & aoc\_2022\_14-part2/small & total \\
\hline
\{("/opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs", "Set"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs", "List"): std::collections::LinkedList\} & 1504.6 & 6203.5 & 342020000 & 41503 & 342069211.1 \\
\{("/opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs", "Set"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs", "List"): std::vec::Vec\} & 1235.4 & 4816.099999999999 & 273230000 & 32722 & 273268773.5 \\
\{("/opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs", "Set"): std::collections::HashSet, ("/opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs", "List"): std::collections::LinkedList\} & 1191 & 11296 & 350190000 & 64620.00000000001 & 350267107 \\
\{("/opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs", "List"): std::vec::Vec, ("/opt/candelabra/src/tests/aoc\_2022\_14/src/types.pr.rs", "Set"): std::collections::HashSet\} & 1649.3 & 9967.4 & 266380000 & 53478 & 266445094.70000002 \\
\end{tabular}
\end{center}
section_end:1711385689:compare-aoc_2022_14

section_start:1711385689:compare-example_mapping
compare-example_mapping
/run/current-system/sw/bin/candelabra-cli -l --manifest-path /opt/candelabra/src/tests/Cargo.toml -p example_mapping select --compare
[2024-03-25T16:54:49Z INFO  candelabra_cli] Using source dir: "/nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source"
[2024-03-25T16:54:49Z DEBUG candelabra::candidates] Initialised candidate cacher with hash 6543311679163142612
[2024-03-25T16:54:49Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs. Continuing anyway.
[2024-03-25T16:54:49Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs. Continuing anyway.
[2024-03-25T16:54:49Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs. Continuing anyway.
[2024-03-25T16:54:49Z DEBUG candelabra::cost] Initialised benchmark cacher with hash 6543311679163142612
[2024-03-25T16:54:49Z INFO  candelabra_cli::select] Processing project example_mapping
┌──────┬──────────────────────────────────────────────────────────────────────┬────────────────────┬───────────────────────────────────────────────────────────┐
│ name │ implementation                                                       │ estimated cost     │ file                                                      │
├──────┼──────────────────────────────────────────────────────────────────────┼────────────────────┼───────────────────────────────────────────────────────────┤
│ Map  │ std::collections::BTreeMap                                           │ 46141037803.309296 │ /opt/candelabra/src/tests/example_mapping/src/types.pr.rs │
│ Map  │ primrose_library::SortedVecMap                                       │ 119641351289.06035 │ /opt/candelabra/src/tests/example_mapping/src/types.pr.rs │
│ Map  │ primrose_library::VecMap                                             │ 721919577813.2703  │ /opt/candelabra/src/tests/example_mapping/src/types.pr.rs │
│ Map  │ std::collections::HashMap                                            │ 28506056746.59253  │ /opt/candelabra/src/tests/example_mapping/src/types.pr.rs │
│ Map  │ primrose_library::VecMap until n=225, then std::collections::HashMap │ 26525686623.524624 │ /opt/candelabra/src/tests/example_mapping/src/types.pr.rs │
└──────┴──────────────────────────────────────────────────────────────────────┴────────────────────┴───────────────────────────────────────────────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|}
name & implementation & estimated cost & file \\
\hline
Map & std::collections::BTreeMap & 46141037803.309296 & /opt/candelabra/src/tests/example\_mapping/src/types.pr.rs \\
Map & primrose\_library::SortedVecMap & 119641351289.06035 & /opt/candelabra/src/tests/example\_mapping/src/types.pr.rs \\
Map & primrose\_library::VecMap & 721919577813.2703 & /opt/candelabra/src/tests/example\_mapping/src/types.pr.rs \\
Map & std::collections::HashMap & 28506056746.59253 & /opt/candelabra/src/tests/example\_mapping/src/types.pr.rs \\
Map & primrose\_library::VecMap until n=225, then std::collections::HashMap & 26525686623.524624 & /opt/candelabra/src/tests/example\_mapping/src/types.pr.rs \\
\end{tabular}
\end{center}
[2024-03-25T16:54:49Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:54:49Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 209540.0, avg_n: 50.0, avg_op_counts: {"clear": 0.0, "push": 0.0, "nth": 0.0, "pop": 0.0, "get": 100.0, "last": 0.0, "contains": 0.0, "insert": 50.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 53905.0, avg_n: 150.0, avg_op_counts: {"insert": 150.0, "first": 0.0, "pop": 0.0, "remove": 0.0, "nth": 0.0, "get": 300.0, "contains": 0.0, "last": 0.0, "clear": 0.0, "push": 0.0} }, ProfilerPartition { occurences: 6898.0, avg_n: 2500.0, avg_op_counts: {"push": 0.0, "last": 0.0, "clear": 0.0, "pop": 0.0, "contains": 0.0, "first": 0.0, "get": 5000.0, "nth": 0.0, "insert": 2500.0, "remove": 0.0} }, ProfilerPartition { occurences: 14532.0, avg_n: 7500.0, avg_op_counts: {"remove": 0.0, "get": 15000.0, "pop": 0.0, "insert": 7500.0, "clear": 0.0, "push": 0.0, "last": 0.0, "nth": 0.0, "first": 0.0, "contains": 0.0} }]
[2024-03-25T16:54:49Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashMap", [1379383260.593158, 1145589452.1164875, 3068214218.402198, 22912869815.480682]), ("primrose_library::SortedVecMap", [1206074045.7825513, 781306636.890812, 5489170244.925119, 112164800361.46187]), ("primrose_library::VecMap", [544593008.4231915, 0.0, 25689330964.74701, 695685653840.1]), ("std::collections::BTreeMap", [1840053452.8899245, 1680935548.3905444, 5118928650.207806, 37501120151.82103])]
[2024-03-25T16:54:49Z DEBUG candelabra::profiler::info] Top by partition: [("primrose_library::VecMap", 544593008.4231915), ("primrose_library::VecMap", 0.0), ("std::collections::HashMap", 3068214218.402198), ("std::collections::HashMap", 22912869815.480682)]
[2024-03-25T16:54:49Z DEBUG candelabra::profiler::info] With split index 2, split proper is true
[2024-03-25T16:54:49Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:54:49Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 209540.0, avg_n: 50.0, avg_op_counts: {"push": 0.0, "remove": 0.0, "nth": 0.0, "clear": 0.0, "last": 0.0, "pop": 0.0, "first": 0.0, "contains": 0.0, "insert": 50.0, "get": 100.0} }, ProfilerPartition { occurences: 53905.0, avg_n: 150.0, avg_op_counts: {"last": 0.0, "remove": 0.0, "clear": 0.0, "get": 300.0, "contains": 0.0, "first": 0.0, "nth": 0.0, "insert": 150.0, "push": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 6898.0, avg_n: 2500.0, avg_op_counts: {"pop": 0.0, "clear": 0.0, "last": 0.0, "insert": 2500.0, "push": 0.0, "get": 5000.0, "remove": 0.0, "first": 0.0, "nth": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 14532.0, avg_n: 7500.0, avg_op_counts: {"get": 15000.0, "push": 0.0, "contains": 0.0, "last": 0.0, "insert": 7500.0, "nth": 0.0, "pop": 0.0, "first": 0.0, "clear": 0.0, "remove": 0.0} }]
[2024-03-25T16:54:49Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashMap", [1379383260.593158, 1145589452.1164875, 3068214218.402198, 22912869815.480682]), ("primrose_library::VecMap", [544593008.4231915, 0.0, 25689330964.74701, 695685653840.1]), ("std::collections::BTreeMap", [1840053452.8899245, 1680935548.3905444, 5118928650.207806, 37501120151.82103]), ("primrose_library::SortedVecMap", [1206074045.7825513, 781306636.890812, 5489170244.925119, 112164800361.46187])]
[2024-03-25T16:54:49Z DEBUG candelabra::profiler::info] Top by partition: [("primrose_library::VecMap", 544593008.4231915), ("primrose_library::VecMap", 0.0), ("std::collections::HashMap", 3068214218.402198), ("std::collections::HashMap", 22912869815.480682)]
[2024-03-25T16:54:49Z DEBUG candelabra::profiler::info] With split index 2, split proper is true
[2024-03-25T16:54:49Z DEBUG candelabra::confirmation] Saving choices for project example_mapping
[2024-03-25T16:54:49Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_mapping/src/types.pr.rs
[2024-03-25T16:54:49Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:54:49Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:54:49Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:54:49Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:54:49Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:54:49Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:54:50Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
[2024-03-25T16:54:50Z INFO  candelabra_cli::select] Saved best choices
[2024-03-25T16:54:50Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/example_mapping/src/types.pr.rs", "Map"): std::collections::BTreeMap}
[2024-03-25T16:54:50Z DEBUG candelabra::confirmation] Saving choices for project example_mapping
[2024-03-25T16:54:50Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_mapping/src/types.pr.rs
[2024-03-25T16:54:50Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:54:50Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:54:50Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:54:50Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:54:50Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:54:50Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:54:50Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling example_mapping v0.1.0 (/opt/candelabra/src/tests/example_mapping)
    Finished bench [optimized] target(s) in 3.09s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-2ea61f050d4d0ca4)
[2024-03-25T16:55:38Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/example_mapping/src/types.pr.rs", "Map"): primrose_library::SortedVecMap}
[2024-03-25T16:55:38Z DEBUG candelabra::confirmation] Saving choices for project example_mapping
[2024-03-25T16:55:38Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_mapping/src/types.pr.rs
[2024-03-25T16:55:38Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:55:38Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:55:38Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:55:38Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:55:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:55:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:55:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling example_mapping v0.1.0 (/opt/candelabra/src/tests/example_mapping)
    Finished bench [optimized] target(s) in 2.67s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-2ea61f050d4d0ca4)
[2024-03-25T16:56:26Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/example_mapping/src/types.pr.rs", "Map"): primrose_library::VecMap}
[2024-03-25T16:56:26Z DEBUG candelabra::confirmation] Saving choices for project example_mapping
[2024-03-25T16:56:26Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_mapping/src/types.pr.rs
[2024-03-25T16:56:26Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:56:26Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:56:26Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:56:26Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:56:26Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:56:26Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:56:26Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling example_mapping v0.1.0 (/opt/candelabra/src/tests/example_mapping)
    Finished bench [optimized] target(s) in 2.62s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-2ea61f050d4d0ca4)
[2024-03-25T16:57:18Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/example_mapping/src/types.pr.rs", "Map"): std::collections::HashMap}
[2024-03-25T16:57:18Z DEBUG candelabra::confirmation] Saving choices for project example_mapping
[2024-03-25T16:57:18Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_mapping/src/types.pr.rs
[2024-03-25T16:57:18Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:57:18Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:57:18Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:57:18Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:57:18Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:57:18Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:57:18Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling example_mapping v0.1.0 (/opt/candelabra/src/tests/example_mapping)
    Finished bench [optimized] target(s) in 3.11s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-2ea61f050d4d0ca4)
[2024-03-25T16:58:05Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/example_mapping/src/types.pr.rs", "Map"): primrose_library::VecMap until n=225, then std::collections::HashMap}
[2024-03-25T16:58:05Z DEBUG candelabra::confirmation] Saving choices for project example_mapping
[2024-03-25T16:58:05Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_mapping/src/types.pr.rs
[2024-03-25T16:58:05Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:58:05Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:58:05Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:58:05Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:58:05Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:58:05Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:58:05Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling example_mapping v0.1.0 (/opt/candelabra/src/tests/example_mapping)
    Finished bench [optimized] target(s) in 2.72s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-2ea61f050d4d0ca4)
┌──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┬───────┬───────┬───────┬────────┬────────┬─────────┬────────┬─────────┬──────────┬────────────────────┬────────────┐
│                                                                                                                                              │ l17   │ l18   │ l19   │ l26    │ l27    │ l28     │ l37    │ l38     │ l40      │ l8                 │ total      │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┼───────┼───────┼───────┼────────┼────────┼─────────┼────────┼─────────┼──────────┼────────────────────┼────────────┤
│ {("/opt/candelabra/src/tests/example_mapping/src/types.pr.rs", "Map"): primrose_library::SortedVecMap}                                       │       │ 13169 │       │        │        │ 638070  │        │ 7095600 │          │ 3310.9             │ 7750149.9  │
│ {("/opt/candelabra/src/tests/example_mapping/src/types.pr.rs", "Map"): primrose_library::VecMap}                                             │       │ 33414 │       │        │        │ 8849600 │        │         │ 77782000 │ 4810.900000000001  │ 86669824.9 │
│ {("/opt/candelabra/src/tests/example_mapping/src/types.pr.rs", "Map"): primrose_library::VecMap until n=225, then std::collections::HashMap} │ 33393 │       │       │ 186610 │        │         │ 598190 │         │          │ 4652.599999999999  │ 822845.6   │
│ {("/opt/candelabra/src/tests/example_mapping/src/types.pr.rs", "Map"): std::collections::BTreeMap}                                           │       │       │ 11955 │        │        │ 269170  │ 876430 │         │          │ 3120.2000000000003 │ 1160675.2  │
│ {("/opt/candelabra/src/tests/example_mapping/src/types.pr.rs", "Map"): std::collections::HashMap}                                            │ 11301 │       │       │        │ 186270 │         │        │ 595450  │          │ 3734.5             │ 796755.5   │
└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┴───────┴───────┴───────┴────────┴────────┴─────────┴────────┴─────────┴──────────┴────────────────────┴────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|c|c|c|c|c|c|c|c|}
 & l17 & l18 & l19 & l26 & l27 & l28 & l37 & l38 & l40 & l8 & total \\
\hline
\{("/opt/candelabra/src/tests/example\_mapping/src/types.pr.rs", "Map"): primrose\_library::SortedVecMap\} &  & 13169 &  &  &  & 638070 &  & 7095600 &  & 3310.9 & 7750149.9 \\
\{("/opt/candelabra/src/tests/example\_mapping/src/types.pr.rs", "Map"): primrose\_library::VecMap\} &  & 33414 &  &  &  & 8849600 &  &  & 77782000 & 4810.900000000001 & 86669824.9 \\
\{("/opt/candelabra/src/tests/example\_mapping/src/types.pr.rs", "Map"): primrose\_library::VecMap until n=225, then std::collections::HashMap\} & 33393 &  &  & 186610 &  &  & 598190 &  &  & 4652.599999999999 & 822845.6 \\
\{("/opt/candelabra/src/tests/example\_mapping/src/types.pr.rs", "Map"): std::collections::BTreeMap\} &  &  & 11955 &  &  & 269170 & 876430 &  &  & 3120.2000000000003 & 1160675.2 \\
\{("/opt/candelabra/src/tests/example\_mapping/src/types.pr.rs", "Map"): std::collections::HashMap\} & 11301 &  &  &  & 186270 &  &  & 595450 &  & 3734.5 & 796755.5 \\
\end{tabular}
\end{center}
section_end:1711385934:compare-example_mapping

section_start:1711385934:compare-example_sets
compare-example_sets
/run/current-system/sw/bin/candelabra-cli -l --manifest-path /opt/candelabra/src/tests/Cargo.toml -p example_sets select --compare
[2024-03-25T16:58:54Z INFO  candelabra_cli] Using source dir: "/nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source"
[2024-03-25T16:58:54Z DEBUG candelabra::candidates] Initialised candidate cacher with hash 6543311679163142612
[2024-03-25T16:58:54Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs. Continuing anyway.
[2024-03-25T16:58:54Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs. Continuing anyway.
[2024-03-25T16:58:54Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs. Continuing anyway.
[2024-03-25T16:58:54Z DEBUG candelabra::cost] Initialised benchmark cacher with hash 6543311679163142612
[2024-03-25T16:58:54Z INFO  candelabra_cli::select] Processing project example_sets
┌──────┬────────────────────────────┬────────────────────┬────────────────────────────────────────────────────────┐
│ name │ implementation             │ estimated cost     │ file                                                   │
├──────┼────────────────────────────┼────────────────────┼────────────────────────────────────────────────────────┤
│ Set  │ std::collections::HashSet  │ 14600867290.768051 │ /opt/candelabra/src/tests/example_sets/src/types.pr.rs │
│ Set  │ std::collections::BTreeSet │ 21329213278.665424 │ /opt/candelabra/src/tests/example_sets/src/types.pr.rs │
└──────┴────────────────────────────┴────────────────────┴────────────────────────────────────────────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|}
name & implementation & estimated cost & file \\
\hline
Set & std::collections::HashSet & 14600867290.768051 & /opt/candelabra/src/tests/example\_sets/src/types.pr.rs \\
Set & std::collections::BTreeSet & 21329213278.665424 & /opt/candelabra/src/tests/example\_sets/src/types.pr.rs \\
\end{tabular}
\end{center}
[2024-03-25T16:58:54Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:58:54Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 69344.0, avg_n: 50.0, avg_op_counts: {"get": 0.0, "last": 0.0, "insert": 50.0, "remove": 0.0, "first": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0, "contains": 100.0, "nth": 0.0} }, ProfilerPartition { occurences: 41775.0, avg_n: 150.0, avg_op_counts: {"nth": 0.0, "remove": 0.0, "first": 0.0, "insert": 150.0, "get": 0.0, "push": 0.0, "pop": 0.0, "last": 0.0, "contains": 300.0, "clear": 0.0} }, ProfilerPartition { occurences: 4891.0, avg_n: 2500.0, avg_op_counts: {"insert": 2500.0, "nth": 0.0, "contains": 5000.0, "pop": 0.0, "first": 0.0, "push": 0.0, "get": 0.0, "clear": 0.0, "last": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 5973.0, avg_n: 7500.0, avg_op_counts: {"remove": 0.0, "nth": 0.0, "contains": 15000.0, "pop": 0.0, "last": 0.0, "insert": 7500.0, "push": 0.0, "clear": 0.0, "first": 0.0, "get": 0.0} }]
[2024-03-25T16:58:54Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::BTreeSet", [581630428.2607172, 1319325246.1831577, 3844072464.1425066, 15584185140.079044]), ("std::collections::HashSet", [467806452.2478616, 965178935.5062613, 2541474529.362616, 10626407373.651312])]
[2024-03-25T16:58:54Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::HashSet", 467806452.2478616), ("std::collections::HashSet", 965178935.5062613), ("std::collections::HashSet", 2541474529.362616), ("std::collections::HashSet", 10626407373.651312)]
[2024-03-25T16:58:54Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T16:58:54Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 69344.0, avg_n: 50.0, avg_op_counts: {"push": 0.0, "get": 0.0, "remove": 0.0, "last": 0.0, "clear": 0.0, "insert": 50.0, "first": 0.0, "contains": 100.0, "nth": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 41775.0, avg_n: 150.0, avg_op_counts: {"clear": 0.0, "insert": 150.0, "get": 0.0, "nth": 0.0, "contains": 300.0, "pop": 0.0, "last": 0.0, "push": 0.0, "first": 0.0, "remove": 0.0} }, ProfilerPartition { occurences: 4891.0, avg_n: 2500.0, avg_op_counts: {"insert": 2500.0, "contains": 5000.0, "clear": 0.0, "remove": 0.0, "last": 0.0, "pop": 0.0, "push": 0.0, "nth": 0.0, "first": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 5973.0, avg_n: 7500.0, avg_op_counts: {"insert": 7500.0, "clear": 0.0, "nth": 0.0, "last": 0.0, "remove": 0.0, "pop": 0.0, "first": 0.0, "push": 0.0, "get": 0.0, "contains": 15000.0} }]
[2024-03-25T16:58:54Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashSet", [467806452.2478616, 965178935.5062613, 2541474529.362616, 10626407373.651312]), ("std::collections::BTreeSet", [581630428.2607172, 1319325246.1831577, 3844072464.1425066, 15584185140.079044])]
[2024-03-25T16:58:54Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::HashSet", 467806452.2478616), ("std::collections::HashSet", 965178935.5062613), ("std::collections::HashSet", 2541474529.362616), ("std::collections::HashSet", 10626407373.651312)]
[2024-03-25T16:58:54Z DEBUG candelabra::confirmation] Saving choices for project example_sets
[2024-03-25T16:58:54Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_sets/src/types.pr.rs
[2024-03-25T16:58:54Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:58:55Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:58:55Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:58:55Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:58:55Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:58:55Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:58:55Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
[2024-03-25T16:58:55Z INFO  candelabra_cli::select] Saved best choices
[2024-03-25T16:58:55Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/example_sets/src/types.pr.rs", "Set"): std::collections::HashSet}
[2024-03-25T16:58:55Z DEBUG candelabra::confirmation] Saving choices for project example_sets
[2024-03-25T16:58:55Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_sets/src/types.pr.rs
[2024-03-25T16:58:55Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:58:55Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:58:55Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:58:55Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:58:55Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:58:55Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:58:55Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling example_sets v0.1.0 (/opt/candelabra/src/tests/example_sets)
    Finished bench [optimized] target(s) in 2.90s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-4274d8fe7defaf49)
[2024-03-25T16:59:43Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/example_sets/src/types.pr.rs", "Set"): std::collections::BTreeSet}
[2024-03-25T16:59:43Z DEBUG candelabra::confirmation] Saving choices for project example_sets
[2024-03-25T16:59:43Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_sets/src/types.pr.rs
[2024-03-25T16:59:43Z DEBUG primrose::selector] Setting up directories
[2024-03-25T16:59:43Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T16:59:43Z DEBUG primrose::selector] Running type checker
[2024-03-25T16:59:43Z DEBUG primrose::selector] Running analysis
[2024-03-25T16:59:43Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T16:59:43Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T16:59:43Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling example_sets v0.1.0 (/opt/candelabra/src/tests/example_sets)
    Finished bench [optimized] target(s) in 2.81s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-4274d8fe7defaf49)
┌─────────────────────────────────────────────────────────────────────────────────────────────────┬───────┬───────┬────────┬────────┬────────┬─────────┬────────────────────┬──────────┐
│                                                                                                 │ l18   │ l19   │ l28    │ l30    │ l37    │ l40     │ l8                 │ total    │
├─────────────────────────────────────────────────────────────────────────────────────────────────┼───────┼───────┼────────┼────────┼────────┼─────────┼────────────────────┼──────────┤
│ {("/opt/candelabra/src/tests/example_sets/src/types.pr.rs", "Set"): std::collections::HashSet}  │       │ 11940 │        │ 193820 │ 640250 │         │ 3899.7000000000003 │ 849909.7 │
│ {("/opt/candelabra/src/tests/example_sets/src/types.pr.rs", "Set"): std::collections::BTreeSet} │ 20039 │       │ 492650 │        │        │ 1672200 │ 6000               │ 2190889  │
└─────────────────────────────────────────────────────────────────────────────────────────────────┴───────┴───────┴────────┴────────┴────────┴─────────┴────────────────────┴──────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|c|c|c|c|c|}
 & l18 & l19 & l28 & l30 & l37 & l40 & l8 & total \\
\hline
\{("/opt/candelabra/src/tests/example\_sets/src/types.pr.rs", "Set"): std::collections::HashSet\} &  & 11940 &  & 193820 & 640250 &  & 3899.7000000000003 & 849909.7 \\
\{("/opt/candelabra/src/tests/example\_sets/src/types.pr.rs", "Set"): std::collections::BTreeSet\} & 20039 &  & 492650 &  &  & 1672200 & 6000 & 2190889 \\
\end{tabular}
\end{center}
section_end:1711386038:compare-example_sets

section_start:1711386038:compare-example_stack
compare-example_stack
/run/current-system/sw/bin/candelabra-cli -l --manifest-path /opt/candelabra/src/tests/Cargo.toml -p example_stack select --compare
[2024-03-25T17:00:38Z INFO  candelabra_cli] Using source dir: "/nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source"
[2024-03-25T17:00:38Z DEBUG candelabra::candidates] Initialised candidate cacher with hash 6543311679163142612
[2024-03-25T17:00:38Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs. Continuing anyway.
[2024-03-25T17:00:38Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs. Continuing anyway.
[2024-03-25T17:00:38Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs. Continuing anyway.
[2024-03-25T17:00:38Z DEBUG candelabra::cost] Initialised benchmark cacher with hash 6543311679163142612
[2024-03-25T17:00:38Z INFO  candelabra_cli::select] Processing project example_stack
┌──────────┬──────────────────────────────┬────────────────────┬─────────────────────────────────────────────────────────┐
│ name     │ implementation               │ estimated cost     │ file                                                    │
├──────────┼──────────────────────────────┼────────────────────┼─────────────────────────────────────────────────────────┤
│ StackCon │ std::vec::Vec                │ 1623281693.429239  │ /opt/candelabra/src/tests/example_stack/src/types.pr.rs │
│ StackCon │ std::collections::LinkedList │ 12115438988.988811 │ /opt/candelabra/src/tests/example_stack/src/types.pr.rs │
└──────────┴──────────────────────────────┴────────────────────┴─────────────────────────────────────────────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|}
name & implementation & estimated cost & file \\
\hline
StackCon & std::vec::Vec & 1623281693.429239 & /opt/candelabra/src/tests/example\_stack/src/types.pr.rs \\
StackCon & std::collections::LinkedList & 12115438988.988811 & /opt/candelabra/src/tests/example\_stack/src/types.pr.rs \\
\end{tabular}
\end{center}
[2024-03-25T17:00:38Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T17:00:38Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 261513.0, avg_n: 10.0, avg_op_counts: {"remove": 0.0, "push": 10.0, "pop": 10.0, "contains": 0.0, "last": 0.0, "first": 0.0, "clear": 0.0, "nth": 0.0, "insert": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 54426.0, avg_n: 1000.0, avg_op_counts: {"nth": 0.0, "remove": 0.0, "push": 1000.0, "first": 0.0, "pop": 1000.0, "insert": 0.0, "clear": 0.0, "get": 0.0, "last": 0.0, "contains": 0.0} }, ProfilerPartition { occurences: 38921.0, avg_n: 10000.0, avg_op_counts: {"last": 0.0, "first": 0.0, "contains": 0.0, "pop": 10000.0, "remove": 0.0, "push": 10000.0, "get": 0.0, "clear": 0.0, "insert": 0.0, "nth": 0.0} }]
[2024-03-25T17:00:38Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::vec::Vec", [40925757.191425145, 259987504.43913752, 1322368431.7986765]), ("std::collections::LinkedList", [59142275.223214686, 1456150862.390552, 10600145851.375044])]
[2024-03-25T17:00:38Z DEBUG candelabra::profiler::info] Top by partition: [("std::vec::Vec", 40925757.191425145), ("std::vec::Vec", 259987504.43913752), ("std::vec::Vec", 1322368431.7986765)]
[2024-03-25T17:00:38Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T17:00:38Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 261513.0, avg_n: 10.0, avg_op_counts: {"clear": 0.0, "last": 0.0, "push": 10.0, "contains": 0.0, "first": 0.0, "insert": 0.0, "get": 0.0, "pop": 10.0, "remove": 0.0, "nth": 0.0} }, ProfilerPartition { occurences: 54426.0, avg_n: 1000.0, avg_op_counts: {"nth": 0.0, "insert": 0.0, "remove": 0.0, "push": 1000.0, "first": 0.0, "pop": 1000.0, "clear": 0.0, "last": 0.0, "contains": 0.0, "get": 0.0} }, ProfilerPartition { occurences: 38921.0, avg_n: 10000.0, avg_op_counts: {"contains": 0.0, "get": 0.0, "insert": 0.0, "clear": 0.0, "remove": 0.0, "pop": 10000.0, "push": 10000.0, "first": 0.0, "nth": 0.0, "last": 0.0} }]
[2024-03-25T17:00:38Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::LinkedList", [59142275.223214686, 1456150862.390552, 10600145851.375044]), ("std::vec::Vec", [40925757.191425145, 259987504.43913752, 1322368431.7986765])]
[2024-03-25T17:00:38Z DEBUG candelabra::profiler::info] Top by partition: [("std::vec::Vec", 40925757.191425145), ("std::vec::Vec", 259987504.43913752), ("std::vec::Vec", 1322368431.7986765)]
[2024-03-25T17:00:38Z DEBUG candelabra::confirmation] Saving choices for project example_stack
[2024-03-25T17:00:38Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_stack/src/types.pr.rs
[2024-03-25T17:00:38Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:00:38Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:00:38Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:00:38Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:00:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:00:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:00:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
[2024-03-25T17:00:38Z INFO  candelabra_cli::select] Saved best choices
[2024-03-25T17:00:38Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/example_stack/src/types.pr.rs", "StackCon"): std::vec::Vec}
[2024-03-25T17:00:38Z DEBUG candelabra::confirmation] Saving choices for project example_stack
[2024-03-25T17:00:38Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_stack/src/types.pr.rs
[2024-03-25T17:00:38Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:00:38Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:00:38Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:00:38Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:00:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:00:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:00:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling example_stack v0.1.0 (/opt/candelabra/src/tests/example_stack)
    Finished bench [optimized] target(s) in 2.77s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-3694756a33adc5ee)
[2024-03-25T17:01:14Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/example_stack/src/types.pr.rs", "StackCon"): std::collections::LinkedList}
[2024-03-25T17:01:14Z DEBUG candelabra::confirmation] Saving choices for project example_stack
[2024-03-25T17:01:14Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/example_stack/src/types.pr.rs
[2024-03-25T17:01:14Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:01:14Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:01:14Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:01:14Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:01:14Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:01:14Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:01:14Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling example_stack v0.1.0 (/opt/candelabra/src/tests/example_stack)
    Finished bench [optimized] target(s) in 2.41s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-3694756a33adc5ee)
┌─────────────────────────────────────────────────────────────────────────────────────────────────────────┬────────┬────────┬───────┬────────┬───────────┐
│                                                                                                         │ l15    │ l22    │ l24   │ l8     │ total     │
├─────────────────────────────────────────────────────────────────────────────────────────────────────────┼────────┼────────┼───────┼────────┼───────────┤
│ {("/opt/candelabra/src/tests/example_stack/src/types.pr.rs", "StackCon"): std::vec::Vec}                │ 1650.8 │        │ 17099 │ 135.14 │ 18884.94  │
│ {("/opt/candelabra/src/tests/example_stack/src/types.pr.rs", "StackCon"): std::collections::LinkedList} │ 33561  │ 352760 │       │ 158.44 │ 386479.44 │
└─────────────────────────────────────────────────────────────────────────────────────────────────────────┴────────┴────────┴───────┴────────┴───────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|c|c|}
 & l15 & l22 & l24 & l8 & total \\
\hline
\{("/opt/candelabra/src/tests/example\_stack/src/types.pr.rs", "StackCon"): std::vec::Vec\} & 1650.8 &  & 17099 & 135.14 & 18884.94 \\
\{("/opt/candelabra/src/tests/example\_stack/src/types.pr.rs", "StackCon"): std::collections::LinkedList\} & 33561 & 352760 &  & 158.44 & 386479.44 \\
\end{tabular}
\end{center}
section_end:1711386112:compare-example_stack

section_start:1711386112:compare-prime_sieve
compare-prime_sieve
/run/current-system/sw/bin/candelabra-cli -l --manifest-path /opt/candelabra/src/tests/Cargo.toml -p prime_sieve select --compare
[2024-03-25T17:01:52Z INFO  candelabra_cli] Using source dir: "/nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source"
[2024-03-25T17:01:52Z DEBUG candelabra::candidates] Initialised candidate cacher with hash 6543311679163142612
[2024-03-25T17:01:52Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs. Continuing anyway.
[2024-03-25T17:01:52Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs. Continuing anyway.
[2024-03-25T17:01:52Z DEBUG primrose::library_specs] Failed to process library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs. Continuing anyway.
[2024-03-25T17:01:52Z DEBUG candelabra::cost] Initialised benchmark cacher with hash 6543311679163142612
[2024-03-25T17:01:52Z INFO  candelabra_cli::select] Processing project prime_sieve
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 104982.0, avg_n: 48.0, avg_op_counts: {"first": 0.0, "last": 0.0, "remove": 60.0, "clear": 0.0, "get": 0.0, "pop": 16.0, "nth": 0.0, "push": 48.0, "contains": 0.0, "insert": 0.0} }, ProfilerPartition { occurences: 13150.0, avg_n: 498.0, avg_op_counts: {"nth": 0.0, "get": 0.0, "clear": 0.0, "first": 0.0, "contains": 0.0, "insert": 0.0, "push": 498.0, "last": 0.0, "pop": 96.0, "remove": 911.0} }, ProfilerPartition { occurences: 1.0, avg_n: 49998.0, avg_op_counts: {"last": 0.0, "contains": 0.0, "first": 0.0, "pop": 5134.0, "nth": 0.0, "insert": 0.0, "remove": 124819.0, "clear": 0.0, "push": 49998.0, "get": 0.0} }]
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::vec::Vec", [920139229.3349389, 21990816690.846436, 3240282778.622847]), ("std::collections::LinkedList", [82913976.14030395, 116745975.12099935, 13979811404.371206])]
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::LinkedList", 82913976.14030395), ("std::collections::LinkedList", 116745975.12099935), ("std::vec::Vec", 3240282778.622847)]
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] With split index 2, split proper is true
┌────────┬───────────────────────────────────────────────────────────────────────┬────────────────────┬───────────────────────────────────────────────────────┐
│ name   │ implementation                                                        │ estimated cost     │ file                                                  │
├────────┼───────────────────────────────────────────────────────────────────────┼────────────────────┼───────────────────────────────────────────────────────┤
│ Sieve  │ std::collections::LinkedList                                          │ 14179471355.63251  │ /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs │
│ Sieve  │ std::vec::Vec                                                         │ 26151238698.804222 │ /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs │
│ Sieve  │ std::collections::LinkedList until n=747, then std::vec::Vec          │ 3439947390.524084  │ /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs │
│ Primes │ std::collections::HashSet                                             │ 117005368.29596505 │ /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs │
│ Primes │ primrose_library::SortedVec                                           │ 112421356.45100729 │ /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs │
│ Primes │ std::collections::BTreeSet                                            │ 108931859.57624152 │ /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs │
│ Primes │ std::collections::BTreeSet until n=34, then std::collections::HashSet │ 108753014.4614856  │ /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs │
└────────┴───────────────────────────────────────────────────────────────────────┴────────────────────┴───────────────────────────────────────────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|}
name & implementation & estimated cost & file \\
\hline
Sieve & std::collections::LinkedList & 14179471355.63251 & /opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs \\
Sieve & std::vec::Vec & 26151238698.804222 & /opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs \\
Sieve & std::collections::LinkedList until n=747, then std::vec::Vec & 3439947390.524084 & /opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs \\
Primes & std::collections::HashSet & 117005368.29596505 & /opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs \\
Primes & primrose\_library::SortedVec & 112421356.45100729 & /opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs \\
Primes & std::collections::BTreeSet & 108931859.57624152 & /opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs \\
Primes & std::collections::BTreeSet until n=34, then std::collections::HashSet & 108753014.4614856 & /opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs \\
\end{tabular}
\end{center}
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 118132.0, avg_n: 22.905292384789895, avg_op_counts: {"get": 0.0, "pop": 0.0, "clear": 0.0, "push": 0.0, "contains": 0.0, "nth": 0.0, "remove": 0.0, "insert": 23.905292384789895, "first": 0.0, "last": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 5132.0, avg_op_counts: {"contains": 0.0, "clear": 0.0, "remove": 0.0, "first": 0.0, "push": 0.0, "get": 0.0, "insert": 5133.0, "nth": 0.0, "pop": 0.0, "last": 0.0} }]
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashSet", [116800020.83819024, 205347.45777480432]), ("primrose_library::SortedVec", [111243970.25679907, 1177386.194208213]), ("std::collections::BTreeSet", [108545396.49787714, 386463.0783643916])]
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::BTreeSet", 108545396.49787714), ("std::collections::HashSet", 205347.45777480432)]
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] With split index 1, split proper is true
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 104982.0, avg_n: 48.0, avg_op_counts: {"last": 0.0, "get": 0.0, "push": 48.0, "pop": 16.0, "clear": 0.0, "nth": 0.0, "contains": 0.0, "insert": 0.0, "remove": 60.0, "first": 0.0} }, ProfilerPartition { occurences: 13150.0, avg_n: 498.0, avg_op_counts: {"contains": 0.0, "nth": 0.0, "remove": 911.0, "last": 0.0, "pop": 96.0, "clear": 0.0, "first": 0.0, "get": 0.0, "push": 498.0, "insert": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 49998.0, avg_op_counts: {"push": 49998.0, "remove": 124819.0, "get": 0.0, "insert": 0.0, "first": 0.0, "pop": 5134.0, "last": 0.0, "nth": 0.0, "contains": 0.0, "clear": 0.0} }]
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::vec::Vec", [920139229.3349389, 21990816690.846436, 3240282778.622847]), ("std::collections::LinkedList", [82913976.14030395, 116745975.12099935, 13979811404.371206])]
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::LinkedList", 82913976.14030395), ("std::collections::LinkedList", 116745975.12099935), ("std::vec::Vec", 3240282778.622847)]
[2024-03-25T17:01:52Z DEBUG candelabra::profiler::info] With split index 2, split proper is true
[2024-03-25T17:01:53Z DEBUG candelabra::profiler::info] Checking for nsplit
[2024-03-25T17:01:53Z DEBUG candelabra::profiler::info] Partitions: [ProfilerPartition { occurences: 118132.0, avg_n: 22.905292384789895, avg_op_counts: {"get": 0.0, "nth": 0.0, "insert": 23.905292384789895, "remove": 0.0, "contains": 0.0, "last": 0.0, "push": 0.0, "first": 0.0, "clear": 0.0, "pop": 0.0} }, ProfilerPartition { occurences: 1.0, avg_n: 5132.0, avg_op_counts: {"clear": 0.0, "remove": 0.0, "first": 0.0, "nth": 0.0, "pop": 0.0, "get": 0.0, "last": 0.0, "insert": 5133.0, "contains": 0.0, "push": 0.0} }]
[2024-03-25T17:01:53Z DEBUG candelabra::profiler::info] Costs by partitions: [("std::collections::HashSet", [116800020.83819024, 205347.45777480432]), ("primrose_library::SortedVec", [111243970.25679907, 1177386.194208213]), ("std::collections::BTreeSet", [108545396.49787714, 386463.0783643916])]
[2024-03-25T17:01:53Z DEBUG candelabra::profiler::info] Top by partition: [("std::collections::BTreeSet", 108545396.49787714), ("std::collections::HashSet", 205347.45777480432)]
[2024-03-25T17:01:53Z DEBUG candelabra::profiler::info] With split index 1, split proper is true
[2024-03-25T17:01:53Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:01:53Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:01:53Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:01:53Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:01:53Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:01:53Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:01:53Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:01:53Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:01:53Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
[2024-03-25T17:01:53Z INFO  candelabra_cli::select] Saved best choices
[2024-03-25T17:01:53Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::HashSet}
[2024-03-25T17:01:53Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:01:53Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:01:53Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:01:53Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:01:53Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:01:53Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:01:53Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:01:53Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:01:53Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
    Finished bench [optimized] target(s) in 2.79s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:04:50Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::HashSet, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec}
[2024-03-25T17:04:50Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:04:50Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:04:50Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:04:50Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:04:50Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:04:50Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:04:50Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:04:50Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:04:50Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
    Finished bench [optimized] target(s) in 2.85s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:05:37Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::HashSet}
[2024-03-25T17:05:37Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:05:37Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:05:37Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:05:37Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:05:37Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:05:37Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:05:37Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:05:37Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:05:37Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
warning: unnecessary parentheses around type
  --> prime_sieve/src/types.rs:11:101
   |
11 |     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, (S)>::default()
   |                                                                                                     ^ ^
   |
   = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
   |
11 -     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, (S)>::default()
11 +     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, S>::default()
   |

warning: `prime_sieve` (lib) generated 1 warning (run `cargo fix --lib -p prime_sieve` to apply 1 suggestion)
    Finished bench [optimized] target(s) in 2.86s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:06:24Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): primrose_library::SortedVec}
[2024-03-25T17:06:24Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:06:24Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:06:24Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:06:24Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:06:24Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:06:24Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:06:24Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:06:24Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:06:24Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
    Finished bench [optimized] target(s) in 2.69s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:09:40Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): primrose_library::SortedVec}
[2024-03-25T17:09:40Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:09:40Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:09:40Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:09:40Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:09:40Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:09:40Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:09:40Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:09:40Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:09:40Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
    Finished bench [optimized] target(s) in 3.05s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:10:30Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): primrose_library::SortedVec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec}
[2024-03-25T17:10:30Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:10:30Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:10:30Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:10:30Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:10:30Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:10:30Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:10:30Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:10:30Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:10:30Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
warning: unnecessary parentheses around type
  --> prime_sieve/src/types.rs:18:101
   |
18 |     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, (S)>::default()
   |                                                                                                     ^ ^
   |
   = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
   |
18 -     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, (S)>::default()
18 +     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, S>::default()
   |

warning: `prime_sieve` (lib) generated 1 warning (run `cargo fix --lib -p prime_sieve` to apply 1 suggestion)
    Finished bench [optimized] target(s) in 3.00s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:11:17Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList}
[2024-03-25T17:11:17Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:11:17Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:11:17Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:11:17Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:11:17Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:11:17Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:11:17Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:11:17Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:11:17Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
    Finished bench [optimized] target(s) in 2.63s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:20:49Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet}
[2024-03-25T17:20:49Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:20:49Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:20:49Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:20:49Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:20:49Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:20:49Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:20:49Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:20:49Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:20:49Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
    Finished bench [optimized] target(s) in 2.93s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:21:38Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet}
[2024-03-25T17:21:38Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:21:38Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:21:38Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:21:38Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:21:38Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:21:38Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:21:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:21:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:21:38Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
warning: unnecessary parentheses around type
  --> prime_sieve/src/types.rs:11:101
   |
11 |     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, (S)>::default()
   |                                                                                                     ^ ^
   |
   = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
   |
11 -     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, (S)>::default()
11 +     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, S>::default()
   |

warning: `prime_sieve` (lib) generated 1 warning (run `cargo fix --lib -p prime_sieve` to apply 1 suggestion)
    Finished bench [optimized] target(s) in 2.97s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:22:25Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet until n=34, then std::collections::HashSet}
[2024-03-25T17:22:25Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:22:25Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:22:25Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:22:25Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:22:25Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:22:25Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:22:25Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:22:25Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:22:25Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
warning: unnecessary parentheses around type
  --> prime_sieve/src/types.rs:18:110
   |
18 |     ::primrose_library::AdaptiveContainer::<34, std::collections::BTreeSet<S>, std::collections::HashSet<S>, (S)>::default()
   |                                                                                                              ^ ^
   |
   = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
   |
18 -     ::primrose_library::AdaptiveContainer::<34, std::collections::BTreeSet<S>, std::collections::HashSet<S>, (S)>::default()
18 +     ::primrose_library::AdaptiveContainer::<34, std::collections::BTreeSet<S>, std::collections::HashSet<S>, S>::default()
   |

warning: `prime_sieve` (lib) generated 1 warning (run `cargo fix --lib -p prime_sieve` to apply 1 suggestion)
    Finished bench [optimized] target(s) in 3.07s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:25:37Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet until n=34, then std::collections::HashSet}
[2024-03-25T17:25:37Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:25:37Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:25:37Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:25:37Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:25:37Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:25:37Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:25:37Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:25:37Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:25:37Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
warning: unnecessary parentheses around type
  --> prime_sieve/src/types.rs:18:110
   |
18 |     ::primrose_library::AdaptiveContainer::<34, std::collections::BTreeSet<S>, std::collections::HashSet<S>, (S)>::default()
   |                                                                                                              ^ ^
   |
   = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
   |
18 -     ::primrose_library::AdaptiveContainer::<34, std::collections::BTreeSet<S>, std::collections::HashSet<S>, (S)>::default()
18 +     ::primrose_library::AdaptiveContainer::<34, std::collections::BTreeSet<S>, std::collections::HashSet<S>, S>::default()
   |

warning: `prime_sieve` (lib) generated 1 warning (run `cargo fix --lib -p prime_sieve` to apply 1 suggestion)
    Finished bench [optimized] target(s) in 2.94s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
[2024-03-25T17:26:24Z INFO  candelabra_cli::select] Running benchmarks with {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet until n=34, then std::collections::HashSet}
[2024-03-25T17:26:24Z DEBUG candelabra::confirmation] Saving choices for project prime_sieve
[2024-03-25T17:26:24Z DEBUG candelabra::confirmation] Saving choices for /opt/candelabra/src/tests/prime_sieve/src/types.pr.rs
[2024-03-25T17:26:24Z DEBUG primrose::selector] Setting up directories
[2024-03-25T17:26:24Z DEBUG primrose::selector] Parsing into blocks
[2024-03-25T17:26:24Z DEBUG primrose::selector] Running type checker
[2024-03-25T17:26:24Z DEBUG primrose::selector] Running analysis
[2024-03-25T17:26:24Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/adaptive.rs
[2024-03-25T17:26:24Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/profiler.rs
[2024-03-25T17:26:24Z DEBUG primrose::library_specs] Ignoring invalid library module /nix/store/n9bab5lfpka22cpsfrvdsg454dn0kkdn-source/crates/library/src/traits.rs
   Compiling prime_sieve v0.1.0 (/opt/candelabra/src/tests/prime_sieve)
warning: unnecessary parentheses around type
  --> prime_sieve/src/types.rs:11:101
   |
11 |     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, (S)>::default()
   |                                                                                                     ^ ^
   |
   = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
   |
11 -     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, (S)>::default()
11 +     ::primrose_library::AdaptiveContainer::<747, std::collections::LinkedList<S>, std::vec::Vec<S>, S>::default()
   |

warning: unnecessary parentheses around type
  --> prime_sieve/src/types.rs:18:110
   |
18 |     ::primrose_library::AdaptiveContainer::<34, std::collections::BTreeSet<S>, std::collections::HashSet<S>, (S)>::default()
   |                                                                                                              ^ ^
   |
help: remove these parentheses
   |
18 -     ::primrose_library::AdaptiveContainer::<34, std::collections::BTreeSet<S>, std::collections::HashSet<S>, (S)>::default()
18 +     ::primrose_library::AdaptiveContainer::<34, std::collections::BTreeSet<S>, std::collections::HashSet<S>, S>::default()
   |

warning: `prime_sieve` (lib) generated 2 warnings (run `cargo fix --lib -p prime_sieve` to apply 2 suggestions)
    Finished bench [optimized] target(s) in 3.04s
     Running benches/main.rs (/opt/candelabra/src/tests/target/release/deps/main-6d95aa0223cdf8a8)
┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┬────────────────────┬─────────────────┬───────────────────┬───────────────────┐
│                                                                                                                                                                                                                                                                                │ prime_sieve/50     │ prime_sieve/500 │ prime_sieve/50000 │ total             │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┼────────────────────┼─────────────────┼───────────────────┼───────────────────┤
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::HashSet}                                             │ 2623.9             │ 209230          │ 763900000         │ 764111853.9       │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::HashSet}                                                                             │ 2577.1000000000004 │ 213460          │ 7129000000        │ 7129216037.1      │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): primrose_library::SortedVec}                                                                                          │ 1313               │ 82645           │ 790850000         │ 790933958         │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): primrose_library::SortedVec}                                                                           │ 2236.2000000000003 │ 201420          │ 8012399999.999999 │ 8012603656.199999 │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet}                                                                                           │ 1198.8000000000002 │ 75429           │ 771060000         │ 771136627.8       │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet}                                            │ 2382.6             │ 196290          │ 765020000         │ 765218672.6       │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet until n=34, then std::collections::HashSet} │ 2284               │ 206280          │ 762020000         │ 762228564         │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList}                                                                            │ 2286.6             │ 195830          │ 26859000000       │ 26859198116.6     │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet until n=34, then std::collections::HashSet}                                 │ 2257.2000000000003 │ 209810          │ 7862700000        │ 7862912067.2      │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): primrose_library::SortedVec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec}                                           │ 2246.1000000000004 │ 204560          │ 770080000         │ 770286806.1       │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::HashSet, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec}                                                                                            │ 1594.4             │ 79392           │ 766010000         │ 766090986.4       │
│ {("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec, ("/opt/candelabra/src/tests/prime_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet until n=34, then std::collections::HashSet}                                                │ 1442.7             │ 84993           │ 785170000         │ 785256435.7       │
└────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┴────────────────────┴─────────────────┴───────────────────┴───────────────────┘
\begin{center}
\begin{tabular}{|c|c|c|c|c|}
 & prime\_sieve/50 & prime\_sieve/500 & prime\_sieve/50000 & total \\
\hline
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): std::collections::HashSet\} & 2623.9 & 209230 & 763900000 & 764111853.9 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): std::collections::HashSet\} & 2577.1000000000004 & 213460 & 7129000000 & 7129216037.1 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): primrose\_library::SortedVec\} & 1313 & 82645 & 790850000 & 790933958 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): primrose\_library::SortedVec\} & 2236.2000000000003 & 201420 & 8012399999.999999 & 8012603656.199999 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet\} & 1198.8000000000002 & 75429 & 771060000 & 771136627.8 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet\} & 2382.6 & 196290 & 765020000 & 765218672.6 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet until n=34, then std::collections::HashSet\} & 2284 & 206280 & 762020000 & 762228564 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList\} & 2286.6 & 195830 & 26859000000 & 26859198116.6 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet until n=34, then std::collections::HashSet\} & 2257.2000000000003 & 209810 & 7862700000 & 7862912067.2 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): primrose\_library::SortedVec, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::collections::LinkedList until n=747, then std::vec::Vec\} & 2246.1000000000004 & 204560 & 770080000 & 770286806.1 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): std::collections::HashSet, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec\} & 1594.4 & 79392 & 766010000 & 766090986.4 \\
\{("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Sieve"): std::vec::Vec, ("/opt/candelabra/src/tests/prime\_sieve/src/types.pr.rs", "Primes"): std::collections::BTreeSet until n=34, then std::collections::HashSet\} & 1442.7 & 84993 & 785170000 & 785256435.7 \\
\end{tabular}
\end{center}
section_end:1711387631:compare-prime_sieve


section_end:1711387632:step_script
section_start:1711387632:cleanup_file_variables
Cleaning up project directory and file based variables

section_end:1711387632:cleanup_file_variables
Job succeeded