-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcall_graph.txt
3529 lines (3502 loc) · 817 KB
/
call_graph.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Call graph (explanation follows)
granularity: each sample hit covers 4 byte(s) no time propagated
index % time self children called name
0.00 0.00 1/26187 std::__detail::_Hash_node<int, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<int, false> > >::_M_allocate_node<int const&>(int const&) [619]
0.00 0.00 1/26187 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<int, false> >::construct<int, int const&>(int*, int const&) [466]
0.00 0.00 2/26187 std::__detail::_Hash_node<std::pair<int const, int>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [435]
0.00 0.00 2/26187 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> >::construct<std::pair<int const, int>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, int>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [371]
0.00 0.00 2/26187 pugi::xml_document::_create() [678]
0.00 0.00 3/26187 void __gnu_cxx::new_allocator<AStarNode>::construct<AStarNode, AStarNode const&>(AStarNode*, AStarNode const&) [317]
0.00 0.00 3/26187 std::__detail::_Hash_node<std::pair<int const, double>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [354]
0.00 0.00 3/26187 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> >::construct<std::pair<int const, double>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, double>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [321]
0.00 0.00 690/26187 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [194]
0.00 0.00 690/26187 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [175]
0.00 0.00 695/26187 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
0.00 0.00 695/26187 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [145]
0.00 0.00 3166/26187 void __gnu_cxx::new_allocator<int>::construct<int, int const&>(int*, int const&) [58]
0.00 0.00 3783/26187 pugi::impl::(anonymous namespace)::allocate_node(pugi::impl::(anonymous namespace)::xml_allocator&, pugi::xml_node_type) [891]
0.00 0.00 16451/26187 pugi::impl::(anonymous namespace)::allocate_attribute(pugi::impl::(anonymous namespace)::xml_allocator&) [1076]
[8] 0.0 0.00 0.00 26187 operator new(unsigned long, void*) [8]
-----------------------------------------------
0.00 0.00 1/9330 std::__detail::_Hash_code_base<int, std::pair<int const, double>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, double>, false> const&, unsigned long) const [493]
0.00 0.00 1/9330 std::__detail::_Hash_code_base<int, std::pair<int const, int>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, int>, false> const&, unsigned long) const [494]
0.00 0.00 4/9330 std::__detail::_Hash_code_base<int, std::pair<int const, int>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(unsigned long, unsigned long) const [303]
0.00 0.00 5/9330 std::__detail::_Hash_code_base<int, int, std::__detail::_Identity, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(unsigned long, unsigned long) const [280]
0.00 0.00 8/9330 std::__detail::_Hash_code_base<int, std::pair<int const, double>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(unsigned long, unsigned long) const [241]
0.00 0.00 1508/9330 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(unsigned long, unsigned long) const [90]
0.00 0.00 1941/9330 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&, unsigned long) const [88]
0.00 0.00 2279/9330 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&, unsigned long) const [81]
0.00 0.00 3583/9330 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(unsigned long, unsigned long) const [40]
[9] 0.0 0.00 0.00 9330 std::__detail::_Mod_range_hashing::operator()(unsigned long, unsigned long) const [9]
-----------------------------------------------
0.00 0.00 4/9313 std::__detail::_Hash_code_base<int, std::pair<int const, int>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [302]
0.00 0.00 4/9313 std::__detail::_Hash_code_base<int, int, std::__detail::_Identity, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [305]
0.00 0.00 8/9313 std::__detail::_Hash_code_base<int, std::pair<int const, double>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [240]
0.00 0.00 3442/9313 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [48]
0.00 0.00 5855/9313 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [23]
[10] 0.0 0.00 0.00 9313 std::hash<int>::operator()(int) const [10]
-----------------------------------------------
0.00 0.00 4/9313 std::__detail::_Hash_code_base<int, std::pair<int const, int>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash() const [304]
0.00 0.00 4/9313 std::__detail::_Hash_code_base<int, int, std::__detail::_Identity, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash() const [306]
0.00 0.00 8/9313 std::__detail::_Hash_code_base<int, std::pair<int const, double>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash() const [242]
0.00 0.00 3442/9313 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash() const [49]
0.00 0.00 5855/9313 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash() const [24]
[11] 0.0 0.00 0.00 9313 std::__detail::_Hashtable_ebo_helper<1, std::hash<int>, true>::_M_cget() const [11]
-----------------------------------------------
0.00 0.00 1/9175 std::pair<std::__detail::_Node_iterator<int, true, false>, bool> std::_Hashtable<int, int, std::allocator<int>, std::__detail::_Identity, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, true, true> >::_M_insert<int const&, std::__detail::_AllocNode<std::allocator<std::__detail::_Hash_node<int, false> > > >(int const&, std::__detail::_AllocNode<std::allocator<std::__detail::_Hash_node<int, false> > > const&, std::integral_constant<bool, true>) [543]
0.00 0.00 1/9175 std::__detail::_Hash_node<int, false>* std::__detail::_AllocNode<std::allocator<std::__detail::_Hash_node<int, false> > >::operator()<int const&>(int const&) const [491]
0.00 0.00 1/9175 std::__detail::_Hash_node<int, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<int, false> > >::_M_allocate_node<int const&>(int const&) [619]
0.00 0.00 1/9175 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<int, false> > >::construct<int, int const&>(std::allocator<std::__detail::_Hash_node<int, false> >&, int*, int const&) [575]
0.00 0.00 1/9175 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<int, false> >::construct<int, int const&>(int*, int const&) [466]
0.00 0.00 2/9175 int const& std::__detail::_Identity::operator()<int const&>(int const&) const [400]
0.00 0.00 2/9175 std::pair<int const, int>::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [429]
0.00 0.00 3/9175 std::pair<int const, double>::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [351]
0.00 0.00 690/9175 std::pair<int const, std::vector<int, std::allocator<int> > >::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [190]
0.00 0.00 695/9175 std::pair<int const, Node>::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [159]
0.00 0.00 1446/9175 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
0.00 0.00 3166/9175 void std::allocator_traits<std::allocator<int> >::construct<int, int const&>(std::allocator<int>&, int*, int const&) [59]
0.00 0.00 3166/9175 void __gnu_cxx::new_allocator<int>::construct<int, int const&>(int*, int const&) [58]
[12] 0.0 0.00 0.00 9175 int const& std::forward<int const&>(std::remove_reference<int const&>::type&) [12]
-----------------------------------------------
0.00 0.00 8676/8676 int* std::__relocate_a<int*, int*, std::allocator<int> >(int*, int*, int*, std::allocator<int>&) [71]
[13] 0.0 0.00 0.00 8676 int* std::__niter_base<int*>(int*) [13]
-----------------------------------------------
0.00 0.00 1664/7448 parseOSM(char const*, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >&, std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > >&) [452]
0.00 0.00 5784/7448 std::vector<int, std::allocator<int> >::_M_check_len(unsigned long, char const*) const [104]
[14] 0.0 0.00 0.00 7448 std::vector<int, std::allocator<int> >::size() const [14]
-----------------------------------------------
0.00 0.00 6065/6065 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_valptr() const [19]
[15] 0.0 0.00 0.00 6065 __gnu_cxx::__aligned_buffer<std::pair<int const, Node> >::_M_ptr() const [15]
0.00 0.00 6065/6065 __gnu_cxx::__aligned_buffer<std::pair<int const, Node> >::_M_addr() const [16]
-----------------------------------------------
0.00 0.00 6065/6065 __gnu_cxx::__aligned_buffer<std::pair<int const, Node> >::_M_ptr() const [15]
[16] 0.0 0.00 0.00 6065 __gnu_cxx::__aligned_buffer<std::pair<int const, Node> >::_M_addr() const [16]
-----------------------------------------------
0.00 0.00 2279/6065 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&, unsigned long) const [81]
0.00 0.00 3786/6065 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [36]
[17] 0.0 0.00 0.00 6065 decltype ((get<0>)((forward<std::pair<int const, Node> const&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<int const, Node> const&>(std::pair<int const, Node> const&) const [17]
0.00 0.00 6065/6065 std::tuple_element<0ul, std::pair<int const, Node> >::type const& std::get<0ul, int const, Node>(std::pair<int const, Node> const&) [21]
0.00 0.00 6065/6065 std::pair<int const, Node> const& std::forward<std::pair<int const, Node> const&>(std::remove_reference<std::pair<int const, Node> const&>::type&) [22]
-----------------------------------------------
0.00 0.00 2279/6065 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&, unsigned long) const [81]
0.00 0.00 3786/6065 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [36]
[18] 0.0 0.00 0.00 6065 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_v() const [18]
0.00 0.00 6065/6065 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_valptr() const [19]
-----------------------------------------------
0.00 0.00 6065/6065 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_v() const [18]
[19] 0.0 0.00 0.00 6065 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_valptr() const [19]
0.00 0.00 6065/6065 __gnu_cxx::__aligned_buffer<std::pair<int const, Node> >::_M_ptr() const [15]
-----------------------------------------------
0.00 0.00 6065/6065 std::tuple_element<0ul, std::pair<int const, Node> >::type const& std::get<0ul, int const, Node>(std::pair<int const, Node> const&) [21]
[20] 0.0 0.00 0.00 6065 int const& std::__pair_get<0ul>::__const_get<int const, Node>(std::pair<int const, Node> const&) [20]
-----------------------------------------------
0.00 0.00 6065/6065 decltype ((get<0>)((forward<std::pair<int const, Node> const&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<int const, Node> const&>(std::pair<int const, Node> const&) const [17]
[21] 0.0 0.00 0.00 6065 std::tuple_element<0ul, std::pair<int const, Node> >::type const& std::get<0ul, int const, Node>(std::pair<int const, Node> const&) [21]
0.00 0.00 6065/6065 int const& std::__pair_get<0ul>::__const_get<int const, Node>(std::pair<int const, Node> const&) [20]
-----------------------------------------------
0.00 0.00 6065/6065 decltype ((get<0>)((forward<std::pair<int const, Node> const&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<int const, Node> const&>(std::pair<int const, Node> const&) const [17]
[22] 0.0 0.00 0.00 6065 std::pair<int const, Node> const& std::forward<std::pair<int const, Node> const&>(std::remove_reference<std::pair<int const, Node> const&>::type&) [22]
-----------------------------------------------
0.00 0.00 10/5855 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) const [226]
0.00 0.00 1374/5855 std::__detail::_Map_base<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [125]
0.00 0.00 2192/5855 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) [84]
0.00 0.00 2279/5855 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&, unsigned long) const [81]
[23] 0.0 0.00 0.00 5855 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [23]
0.00 0.00 5855/5855 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash() const [24]
0.00 0.00 5855/9313 std::hash<int>::operator()(int) const [10]
-----------------------------------------------
0.00 0.00 5855/5855 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [23]
[24] 0.0 0.00 0.00 5855 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash() const [24]
0.00 0.00 5855/9313 std::__detail::_Hashtable_ebo_helper<1, std::hash<int>, true>::_M_cget() const [11]
-----------------------------------------------
0.00 0.00 2/5796 bool __gnu_cxx::operator==<int*, std::vector<int, std::allocator<int> > >(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&, __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&) [474]
0.00 0.00 4/5796 bool __gnu_cxx::operator< <int*, std::vector<int, std::allocator<int> > >(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&, __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&) [376]
0.00 0.00 6/5796 bool __gnu_cxx::operator!=<int*, std::vector<int, std::allocator<int> > >(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&, __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&) [324]
0.00 0.00 2892/5796 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
0.00 0.00 2892/5796 __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >::difference_type __gnu_cxx::operator-<int*, std::vector<int, std::allocator<int> > >(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&, __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&) [103]
[25] 0.0 0.00 0.00 5796 __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >::base() const [25]
-----------------------------------------------
0.00 0.00 2/5560 std::_Hashtable<int, std::pair<int const, int>, std::allocator<std::pair<int const, int> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [408]
0.00 0.00 2/5560 std::__detail::_Hash_node<std::pair<int const, int>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [435]
0.00 0.00 2/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> > >::construct<std::pair<int const, int>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> >&, std::pair<int const, int>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [428]
0.00 0.00 2/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> >::construct<std::pair<int const, int>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, int>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [371]
0.00 0.00 3/5560 std::_Hashtable<int, std::pair<int const, double>, std::allocator<std::pair<int const, double> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [333]
0.00 0.00 3/5560 std::__detail::_Hash_node<std::pair<int const, double>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [354]
0.00 0.00 3/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> > >::construct<std::pair<int const, double>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> >&, std::pair<int const, double>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [349]
0.00 0.00 3/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> >::construct<std::pair<int const, double>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, double>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [321]
0.00 0.00 690/5560 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [180]
0.00 0.00 690/5560 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [194]
0.00 0.00 690/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [188]
0.00 0.00 690/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [175]
0.00 0.00 695/5560 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [149]
0.00 0.00 695/5560 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
0.00 0.00 695/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [157]
0.00 0.00 695/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [145]
[26] 0.0 0.00 0.00 5560 std::piecewise_construct_t const& std::forward<std::piecewise_construct_t const&>(std::remove_reference<std::piecewise_construct_t const&>::type&) [26]
-----------------------------------------------
0.00 0.00 2/5560 std::_Hashtable<int, std::pair<int const, int>, std::allocator<std::pair<int const, int> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [408]
0.00 0.00 2/5560 std::__detail::_Hash_node<std::pair<int const, int>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [435]
0.00 0.00 2/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> > >::construct<std::pair<int const, int>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> >&, std::pair<int const, int>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [428]
0.00 0.00 2/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> >::construct<std::pair<int const, int>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, int>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [371]
0.00 0.00 3/5560 std::_Hashtable<int, std::pair<int const, double>, std::allocator<std::pair<int const, double> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [333]
0.00 0.00 3/5560 std::__detail::_Hash_node<std::pair<int const, double>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [354]
0.00 0.00 3/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> > >::construct<std::pair<int const, double>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> >&, std::pair<int const, double>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [349]
0.00 0.00 3/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> >::construct<std::pair<int const, double>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, double>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [321]
0.00 0.00 690/5560 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [180]
0.00 0.00 690/5560 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [194]
0.00 0.00 690/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [188]
0.00 0.00 690/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [175]
0.00 0.00 695/5560 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [149]
0.00 0.00 695/5560 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
0.00 0.00 695/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [157]
0.00 0.00 695/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [145]
[27] 0.0 0.00 0.00 5560 std::tuple<>&& std::forward<std::tuple<> >(std::remove_reference<std::tuple<> >::type&) [27]
-----------------------------------------------
0.00 0.00 2/5560 std::_Hashtable<int, std::pair<int const, int>, std::allocator<std::pair<int const, int> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [408]
0.00 0.00 2/5560 std::__detail::_Hash_node<std::pair<int const, int>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [435]
0.00 0.00 2/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> > >::construct<std::pair<int const, int>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> >&, std::pair<int const, int>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [428]
0.00 0.00 2/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> >::construct<std::pair<int const, int>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, int>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [371]
0.00 0.00 3/5560 std::_Hashtable<int, std::pair<int const, double>, std::allocator<std::pair<int const, double> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [333]
0.00 0.00 3/5560 std::__detail::_Hash_node<std::pair<int const, double>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [354]
0.00 0.00 3/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> > >::construct<std::pair<int const, double>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> >&, std::pair<int const, double>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [349]
0.00 0.00 3/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> >::construct<std::pair<int const, double>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, double>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [321]
0.00 0.00 690/5560 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [180]
0.00 0.00 690/5560 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [194]
0.00 0.00 690/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [188]
0.00 0.00 690/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [175]
0.00 0.00 695/5560 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [149]
0.00 0.00 695/5560 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
0.00 0.00 695/5560 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [157]
0.00 0.00 695/5560 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [145]
[28] 0.0 0.00 0.00 5560 std::tuple<int const&>&& std::forward<std::tuple<int const&> >(std::remove_reference<std::tuple<int const&> >::type&) [28]
-----------------------------------------------
0.00 0.00 1/5182 std::__detail::_Hashtable_base<int, std::pair<int const, int>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_eq() const [496]
0.00 0.00 1/5182 std::__detail::_Hashtable_base<int, int, std::__detail::_Identity, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, true, true> >::_M_eq() const [498]
0.00 0.00 4/5182 std::__detail::_Hashtable_base<int, std::pair<int const, double>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_eq() const [307]
0.00 0.00 1390/5182 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_eq() const [111]
0.00 0.00 3786/5182 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_eq() const [35]
[29] 0.0 0.00 0.00 5182 std::__detail::_Hashtable_ebo_helper<0, std::equal_to<int>, true>::_M_cget() const [29]
-----------------------------------------------
0.00 0.00 1/5182 std::__detail::_Hashtable_base<int, std::pair<int const, int>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, int>, false> const&) const [497]
0.00 0.00 1/5182 std::__detail::_Hashtable_base<int, int, std::__detail::_Identity, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, true, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<int, false> const&) const [499]
0.00 0.00 4/5182 std::__detail::_Hashtable_base<int, std::pair<int const, double>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, double>, false> const&) const [308]
0.00 0.00 1390/5182 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [112]
0.00 0.00 3786/5182 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [36]
[30] 0.0 0.00 0.00 5182 std::equal_to<int>::operator()(int const&, int const&) const [30]
-----------------------------------------------
0.00 0.00 10/5089 std::__detail::_Node_const_iterator<std::pair<int const, Node>, false, false>::_Node_const_iterator(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [231]
0.00 0.00 5079/5089 std::__detail::_Node_iterator<std::pair<int const, Node>, false, false>::_Node_iterator(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [32]
[31] 0.0 0.00 0.00 5089 std::__detail::_Node_iterator_base<std::pair<int const, Node>, false>::_Node_iterator_base(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [31]
-----------------------------------------------
0.00 0.00 695/5079 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [151]
0.00 0.00 2192/5079 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) [84]
0.00 0.00 2192/5079 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::end() [83]
[32] 0.0 0.00 0.00 5079 std::__detail::_Node_iterator<std::pair<int const, Node>, false, false>::_Node_iterator(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [32]
0.00 0.00 5079/5089 std::__detail::_Node_iterator_base<std::pair<int const, Node>, false>::_Node_iterator_base(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [31]
-----------------------------------------------
0.00 0.00 2/4388 bool __gnu_cxx::operator==<int const*, std::vector<int, std::allocator<int> > >(__gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > > const&, __gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > > const&) [473]
0.00 0.00 4386/4388 bool __gnu_cxx::operator!=<int const*, std::vector<int, std::allocator<int> > >(__gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > > const&, __gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > > const&) [82]
[33] 0.0 0.00 0.00 4388 __gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > >::base() const [33]
-----------------------------------------------
0.00 0.00 1446/4338 __gnu_cxx::new_allocator<int>::allocate(unsigned long, void const*) [102]
0.00 0.00 2892/4338 __gnu_cxx::new_allocator<int>::max_size() const [64]
[34] 0.0 0.00 0.00 4338 __gnu_cxx::new_allocator<int>::_M_max_size() const [34]
-----------------------------------------------
0.00 0.00 3786/3786 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [36]
[35] 0.0 0.00 0.00 3786 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_eq() const [35]
0.00 0.00 3786/5182 std::__detail::_Hashtable_ebo_helper<0, std::equal_to<int>, true>::_M_cget() const [29]
-----------------------------------------------
0.00 0.00 3786/3786 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_before_node(unsigned long, int const&, unsigned long) const [42]
[36] 0.0 0.00 0.00 3786 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [36]
0.00 0.00 3786/3786 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_S_equals(unsigned long, std::__detail::_Hash_node_code_cache<false> const&) [37]
0.00 0.00 3786/3786 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_eq() const [35]
0.00 0.00 3786/6065 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_v() const [18]
0.00 0.00 3786/6065 decltype ((get<0>)((forward<std::pair<int const, Node> const&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<int const, Node> const&>(std::pair<int const, Node> const&) const [17]
0.00 0.00 3786/5182 std::equal_to<int>::operator()(int const&, int const&) const [30]
-----------------------------------------------
0.00 0.00 3786/3786 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [36]
[37] 0.0 0.00 0.00 3786 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_S_equals(unsigned long, std::__detail::_Hash_node_code_cache<false> const&) [37]
-----------------------------------------------
0.00 0.00 856/3748 std::vector<int, std::allocator<int> >::~vector() [133]
0.00 0.00 2892/3748 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
[38] 0.0 0.00 0.00 3748 std::_Vector_base<int, std::allocator<int> >::_M_get_Tp_allocator() [38]
-----------------------------------------------
0.00 0.00 7/3583 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [151]
0.00 0.00 10/3583 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) const [226]
0.00 0.00 1374/3583 std::__detail::_Map_base<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [125]
0.00 0.00 2192/3583 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) [84]
[39] 0.0 0.00 0.00 3583 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(unsigned long) const [39]
0.00 0.00 3583/3583 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(unsigned long, unsigned long) const [40]
-----------------------------------------------
0.00 0.00 3583/3583 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(unsigned long) const [39]
[40] 0.0 0.00 0.00 3583 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(unsigned long, unsigned long) const [40]
0.00 0.00 3583/9330 std::__detail::_Mod_range_hashing::operator()(unsigned long, unsigned long) const [9]
-----------------------------------------------
0.00 0.00 10/3576 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) const [226]
0.00 0.00 1374/3576 std::__detail::_Map_base<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [125]
0.00 0.00 2192/3576 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) [84]
[41] 0.0 0.00 0.00 3576 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_node(unsigned long, int const&, unsigned long) const [41]
0.00 0.00 3576/3576 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_before_node(unsigned long, int const&, unsigned long) const [42]
-----------------------------------------------
0.00 0.00 3576/3576 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_node(unsigned long, int const&, unsigned long) const [41]
[42] 0.0 0.00 0.00 3576 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_before_node(unsigned long, int const&, unsigned long) const [42]
0.00 0.00 3786/3786 std::__detail::_Hashtable_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [36]
0.00 0.00 1463/3535 std::__detail::_Hash_node<std::pair<int const, Node>, false>::_M_next() const [47]
0.00 0.00 902/1253 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [126]
-----------------------------------------------
0.00 0.00 3571/3571 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_valptr() [45]
[43] 0.0 0.00 0.00 3571 __gnu_cxx::__aligned_buffer<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_ptr() [43]
0.00 0.00 3571/3571 __gnu_cxx::__aligned_buffer<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_addr() [44]
-----------------------------------------------
0.00 0.00 3571/3571 __gnu_cxx::__aligned_buffer<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_ptr() [43]
[44] 0.0 0.00 0.00 3571 __gnu_cxx::__aligned_buffer<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_addr() [44]
-----------------------------------------------
0.00 0.00 1/3571 std::__detail::_Node_const_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::operator->() const [500]
0.00 0.00 690/3571 std::__detail::_Node_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::operator->() const [178]
0.00 0.00 690/3571 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [194]
0.00 0.00 690/3571 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_deallocate_node(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [195]
0.00 0.00 1500/3571 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_v() [96]
[45] 0.0 0.00 0.00 3571 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_valptr() [45]
0.00 0.00 3571/3571 __gnu_cxx::__aligned_buffer<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_ptr() [43]
-----------------------------------------------
0.00 0.00 341/3554 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_bucket_begin(unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [183]
0.00 0.00 690/3554 std::__detail::_Node_iterator_base<std::pair<int const, std::vector<int, std::allocator<int> > >, false>::_M_incr() [197]
0.00 0.00 690/3554 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_deallocate_nodes(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [606]
0.00 0.00 807/3554 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_before_node(unsigned long, int const&, unsigned long) const [94]
0.00 0.00 1026/3554 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_rehash_aux(unsigned long, std::integral_constant<bool, true>) [256]
[46] 0.0 0.00 0.00 3554 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>::_M_next() const [46]
-----------------------------------------------
0.00 0.00 351/3535 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_bucket_begin(unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [152]
0.00 0.00 695/3535 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_nodes(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [603]
0.00 0.00 1026/3535 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_rehash_aux(unsigned long, std::integral_constant<bool, true>) [253]
0.00 0.00 1463/3535 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_before_node(unsigned long, int const&, unsigned long) const [42]
[47] 0.0 0.00 0.00 3535 std::__detail::_Hash_node<std::pair<int const, Node>, false>::_M_next() const [47]
-----------------------------------------------
0.00 0.00 1/3442 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) const [481]
0.00 0.00 1500/3442 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
0.00 0.00 1941/3442 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&, unsigned long) const [88]
[48] 0.0 0.00 0.00 3442 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [48]
0.00 0.00 3442/3442 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash() const [49]
0.00 0.00 3442/9313 std::hash<int>::operator()(int) const [10]
-----------------------------------------------
0.00 0.00 3442/3442 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [48]
[49] 0.0 0.00 0.00 3442 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash() const [49]
0.00 0.00 3442/9313 std::__detail::_Hashtable_ebo_helper<1, std::hash<int>, true>::_M_cget() const [11]
-----------------------------------------------
0.00 0.00 3331/3331 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_valptr() const [54]
[50] 0.0 0.00 0.00 3331 __gnu_cxx::__aligned_buffer<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_ptr() const [50]
0.00 0.00 3331/3331 __gnu_cxx::__aligned_buffer<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_addr() const [51]
-----------------------------------------------
0.00 0.00 3331/3331 __gnu_cxx::__aligned_buffer<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_ptr() const [50]
[51] 0.0 0.00 0.00 3331 __gnu_cxx::__aligned_buffer<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_addr() const [51]
-----------------------------------------------
0.00 0.00 1390/3331 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [112]
0.00 0.00 1941/3331 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&, unsigned long) const [88]
[52] 0.0 0.00 0.00 3331 decltype ((get<0>)((forward<std::pair<int const, std::vector<int, std::allocator<int> > > const&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<int const, std::vector<int, std::allocator<int> > > const&>(std::pair<int const, std::vector<int, std::allocator<int> > > const&) const [52]
0.00 0.00 3331/3331 std::pair<int const, std::vector<int, std::allocator<int> > > const& std::forward<std::pair<int const, std::vector<int, std::allocator<int> > > const&>(std::remove_reference<std::pair<int const, std::vector<int, std::allocator<int> > > const&>::type&) [57]
0.00 0.00 3331/3331 std::tuple_element<0ul, std::pair<int const, std::vector<int, std::allocator<int> > > >::type const& std::get<0ul, int const, std::vector<int, std::allocator<int> > >(std::pair<int const, std::vector<int, std::allocator<int> > > const&) [56]
-----------------------------------------------
0.00 0.00 1390/3331 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [112]
0.00 0.00 1941/3331 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&, unsigned long) const [88]
[53] 0.0 0.00 0.00 3331 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_v() const [53]
0.00 0.00 3331/3331 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_valptr() const [54]
-----------------------------------------------
0.00 0.00 3331/3331 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_v() const [53]
[54] 0.0 0.00 0.00 3331 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_valptr() const [54]
0.00 0.00 3331/3331 __gnu_cxx::__aligned_buffer<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_ptr() const [50]
-----------------------------------------------
0.00 0.00 3331/3331 std::tuple_element<0ul, std::pair<int const, std::vector<int, std::allocator<int> > > >::type const& std::get<0ul, int const, std::vector<int, std::allocator<int> > >(std::pair<int const, std::vector<int, std::allocator<int> > > const&) [56]
[55] 0.0 0.00 0.00 3331 int const& std::__pair_get<0ul>::__const_get<int const, std::vector<int, std::allocator<int> > >(std::pair<int const, std::vector<int, std::allocator<int> > > const&) [55]
-----------------------------------------------
0.00 0.00 3331/3331 decltype ((get<0>)((forward<std::pair<int const, std::vector<int, std::allocator<int> > > const&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<int const, std::vector<int, std::allocator<int> > > const&>(std::pair<int const, std::vector<int, std::allocator<int> > > const&) const [52]
[56] 0.0 0.00 0.00 3331 std::tuple_element<0ul, std::pair<int const, std::vector<int, std::allocator<int> > > >::type const& std::get<0ul, int const, std::vector<int, std::allocator<int> > >(std::pair<int const, std::vector<int, std::allocator<int> > > const&) [56]
0.00 0.00 3331/3331 int const& std::__pair_get<0ul>::__const_get<int const, std::vector<int, std::allocator<int> > >(std::pair<int const, std::vector<int, std::allocator<int> > > const&) [55]
-----------------------------------------------
0.00 0.00 3331/3331 decltype ((get<0>)((forward<std::pair<int const, std::vector<int, std::allocator<int> > > const&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<int const, std::vector<int, std::allocator<int> > > const&>(std::pair<int const, std::vector<int, std::allocator<int> > > const&) const [52]
[57] 0.0 0.00 0.00 3331 std::pair<int const, std::vector<int, std::allocator<int> > > const& std::forward<std::pair<int const, std::vector<int, std::allocator<int> > > const&>(std::remove_reference<std::pair<int const, std::vector<int, std::allocator<int> > > const&>::type&) [57]
-----------------------------------------------
0.00 0.00 3166/3166 void std::allocator_traits<std::allocator<int> >::construct<int, int const&>(std::allocator<int>&, int*, int const&) [59]
[58] 0.0 0.00 0.00 3166 void __gnu_cxx::new_allocator<int>::construct<int, int const&>(int*, int const&) [58]
0.00 0.00 3166/9175 int const& std::forward<int const&>(std::remove_reference<int const&>::type&) [12]
0.00 0.00 3166/26187 operator new(unsigned long, void*) [8]
-----------------------------------------------
0.00 0.00 1446/3166 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
0.00 0.00 1720/3166 std::vector<int, std::allocator<int> >::push_back(int const&) [60]
[59] 0.0 0.00 0.00 3166 void std::allocator_traits<std::allocator<int> >::construct<int, int const&>(std::allocator<int>&, int*, int const&) [59]
0.00 0.00 3166/9175 int const& std::forward<int const&>(std::remove_reference<int const&>::type&) [12]
0.00 0.00 3166/3166 void __gnu_cxx::new_allocator<int>::construct<int, int const&>(int*, int const&) [58]
-----------------------------------------------
0.00 0.00 2/3166 aStarSearch(std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > > const&, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > > const&, int, int) [450]
0.00 0.00 3164/3166 parseOSM(char const*, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >&, std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > >&) [452]
[60] 0.0 0.00 0.00 3166 std::vector<int, std::allocator<int> >::push_back(int const&) [60]
0.00 0.00 1720/3166 void std::allocator_traits<std::allocator<int> >::construct<int, int const&>(std::allocator<int>&, int*, int const&) [59]
0.00 0.00 1446/1448 std::vector<int, std::allocator<int> >::end() [98]
0.00 0.00 1446/1446 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
-----------------------------------------------
0.00 0.00 3000/3000 parseOSM(char const*, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >&, std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > >&) [452]
[61] 0.0 0.00 0.00 3000 std::vector<int, std::allocator<int> >::operator[](unsigned long) [61]
-----------------------------------------------
0.00 0.00 1448/2896 std::vector<int, std::allocator<int> >::begin() [99]
0.00 0.00 1448/2896 std::vector<int, std::allocator<int> >::end() [98]
[62] 0.0 0.00 0.00 2896 __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >::__normal_iterator(int* const&) [62]
-----------------------------------------------
0.00 0.00 4/2896 std::vector<AStarNode, std::allocator<AStarNode> >::_S_max_size(std::allocator<AStarNode> const&) [310]
0.00 0.00 2892/2896 std::vector<int, std::allocator<int> >::_S_max_size(std::allocator<int> const&) [68]
[63] 0.0 0.00 0.00 2896 unsigned long const& std::min<unsigned long>(unsigned long const&, unsigned long const&) [63]
-----------------------------------------------
0.00 0.00 2892/2892 std::allocator_traits<std::allocator<int> >::max_size(std::allocator<int> const&) [67]
[64] 0.0 0.00 0.00 2892 __gnu_cxx::new_allocator<int>::max_size() const [64]
0.00 0.00 2892/4338 __gnu_cxx::new_allocator<int>::_M_max_size() const [34]
-----------------------------------------------
0.00 0.00 2892/2892 std::vector<int, std::allocator<int> >::max_size() const [66]
[65] 0.0 0.00 0.00 2892 std::_Vector_base<int, std::allocator<int> >::_M_get_Tp_allocator() const [65]
-----------------------------------------------
0.00 0.00 2892/2892 std::vector<int, std::allocator<int> >::_M_check_len(unsigned long, char const*) const [104]
[66] 0.0 0.00 0.00 2892 std::vector<int, std::allocator<int> >::max_size() const [66]
0.00 0.00 2892/2892 std::vector<int, std::allocator<int> >::_S_max_size(std::allocator<int> const&) [68]
0.00 0.00 2892/2892 std::_Vector_base<int, std::allocator<int> >::_M_get_Tp_allocator() const [65]
-----------------------------------------------
0.00 0.00 2892/2892 std::vector<int, std::allocator<int> >::_S_max_size(std::allocator<int> const&) [68]
[67] 0.0 0.00 0.00 2892 std::allocator_traits<std::allocator<int> >::max_size(std::allocator<int> const&) [67]
0.00 0.00 2892/2892 __gnu_cxx::new_allocator<int>::max_size() const [64]
-----------------------------------------------
0.00 0.00 2892/2892 std::vector<int, std::allocator<int> >::max_size() const [66]
[68] 0.0 0.00 0.00 2892 std::vector<int, std::allocator<int> >::_S_max_size(std::allocator<int> const&) [68]
0.00 0.00 2892/2892 std::allocator_traits<std::allocator<int> >::max_size(std::allocator<int> const&) [67]
0.00 0.00 2892/2896 unsigned long const& std::min<unsigned long>(unsigned long const&, unsigned long const&) [63]
-----------------------------------------------
0.00 0.00 2892/2892 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
[69] 0.0 0.00 0.00 2892 std::vector<int, std::allocator<int> >::_S_relocate(int*, int*, int*, std::allocator<int>&) [69]
0.00 0.00 2892/2892 std::vector<int, std::allocator<int> >::_S_do_relocate(int*, int*, int*, std::allocator<int>&, std::integral_constant<bool, true>) [70]
-----------------------------------------------
0.00 0.00 2892/2892 std::vector<int, std::allocator<int> >::_S_relocate(int*, int*, int*, std::allocator<int>&) [69]
[70] 0.0 0.00 0.00 2892 std::vector<int, std::allocator<int> >::_S_do_relocate(int*, int*, int*, std::allocator<int>&, std::integral_constant<bool, true>) [70]
0.00 0.00 2892/2892 int* std::__relocate_a<int*, int*, std::allocator<int> >(int*, int*, int*, std::allocator<int>&) [71]
-----------------------------------------------
0.00 0.00 2892/2892 std::vector<int, std::allocator<int> >::_S_do_relocate(int*, int*, int*, std::allocator<int>&, std::integral_constant<bool, true>) [70]
[71] 0.0 0.00 0.00 2892 int* std::__relocate_a<int*, int*, std::allocator<int> >(int*, int*, int*, std::allocator<int>&) [71]
0.00 0.00 8676/8676 int* std::__niter_base<int*>(int*) [13]
0.00 0.00 2892/2892 std::enable_if<std::__is_bitwise_relocatable<int, void>::value, int*>::type std::__relocate_a_1<int, int>(int*, int*, int*, std::allocator<int>&) [72]
-----------------------------------------------
0.00 0.00 2892/2892 int* std::__relocate_a<int*, int*, std::allocator<int> >(int*, int*, int*, std::allocator<int>&) [71]
[72] 0.0 0.00 0.00 2892 std::enable_if<std::__is_bitwise_relocatable<int, void>::value, int*>::type std::__relocate_a_1<int, int>(int*, int*, int*, std::allocator<int>&) [72]
-----------------------------------------------
0.00 0.00 7/2794 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_buckets(std::__detail::_Hash_node_base**, unsigned long) [264]
0.00 0.00 7/2794 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_buckets(unsigned long) [263]
0.00 0.00 695/2794 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_node(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [162]
0.00 0.00 695/2794 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_node_ptr(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [163]
0.00 0.00 1390/2794 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
[73] 0.0 0.00 0.00 2794 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_node_allocator() [73]
0.00 0.00 2794/2794 std::__detail::_Hashtable_ebo_helper<0, std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >, true>::_M_get() [74]
-----------------------------------------------
0.00 0.00 2794/2794 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_node_allocator() [73]
[74] 0.0 0.00 0.00 2794 std::__detail::_Hashtable_ebo_helper<0, std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >, true>::_M_get() [74]
-----------------------------------------------
0.00 0.00 2774/2774 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_valptr() [78]
[75] 0.0 0.00 0.00 2774 __gnu_cxx::__aligned_buffer<std::pair<int const, Node> >::_M_ptr() [75]
0.00 0.00 2774/2774 __gnu_cxx::__aligned_buffer<std::pair<int const, Node> >::_M_addr() [76]
-----------------------------------------------
0.00 0.00 2774/2774 __gnu_cxx::__aligned_buffer<std::pair<int const, Node> >::_M_ptr() [75]
[76] 0.0 0.00 0.00 2774 __gnu_cxx::__aligned_buffer<std::pair<int const, Node> >::_M_addr() [76]
-----------------------------------------------
0.00 0.00 7/2774 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_deallocate_buckets(std::__detail::_Hash_node_base**, unsigned long) [266]
0.00 0.00 7/2774 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_buckets(unsigned long) [265]
0.00 0.00 690/2774 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_deallocate_node(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [195]
0.00 0.00 690/2774 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_deallocate_node_ptr(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [196]
0.00 0.00 1380/2774 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [194]
[77] 0.0 0.00 0.00 2774 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_node_allocator() [77]
0.00 0.00 2774/2774 std::__detail::_Hashtable_ebo_helper<0, std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >, true>::_M_get() [79]
-----------------------------------------------
0.00 0.00 10/2774 std::__detail::_Node_const_iterator<std::pair<int const, Node>, false, false>::operator->() const [228]
0.00 0.00 679/2774 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_v() [201]
0.00 0.00 695/2774 std::__detail::_Node_iterator<std::pair<int const, Node>, false, false>::operator->() const [147]
0.00 0.00 695/2774 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
0.00 0.00 695/2774 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_node(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [162]
[78] 0.0 0.00 0.00 2774 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_valptr() [78]
0.00 0.00 2774/2774 __gnu_cxx::__aligned_buffer<std::pair<int const, Node> >::_M_ptr() [75]
-----------------------------------------------
0.00 0.00 2774/2774 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_node_allocator() [77]
[79] 0.0 0.00 0.00 2774 std::__detail::_Hashtable_ebo_helper<0, std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >, true>::_M_get() [79]
-----------------------------------------------
0.00 0.00 856/2302 std::_Vector_base<int, std::allocator<int> >::~_Vector_base() [132]
0.00 0.00 1446/2302 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
[80] 0.0 0.00 0.00 2302 std::_Vector_base<int, std::allocator<int> >::_M_deallocate(int*, unsigned long) [80]
0.00 0.00 1446/1446 std::allocator_traits<std::allocator<int> >::deallocate(std::allocator<int>&, int*, unsigned long) [106]
-----------------------------------------------
0.00 0.00 1026/2279 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_rehash_aux(unsigned long, std::integral_constant<bool, true>) [253]
0.00 0.00 1253/2279 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [126]
[81] 0.0 0.00 0.00 2279 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&, unsigned long) const [81]
0.00 0.00 2279/6065 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_v() const [18]
0.00 0.00 2279/6065 decltype ((get<0>)((forward<std::pair<int const, Node> const&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<int const, Node> const&>(std::pair<int const, Node> const&) const [17]
0.00 0.00 2279/5855 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [23]
0.00 0.00 2279/9330 std::__detail::_Mod_range_hashing::operator()(unsigned long, unsigned long) const [9]
-----------------------------------------------
0.00 0.00 3/2193 aStarSearch(std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > > const&, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > > const&, int, int) [450]
0.00 0.00 2190/2193 main [6]
[82] 0.0 0.00 0.00 2193 bool __gnu_cxx::operator!=<int const*, std::vector<int, std::allocator<int> > >(__gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > > const&, __gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > > const&) [82]
0.00 0.00 4386/4388 __gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > >::base() const [33]
-----------------------------------------------
0.00 0.00 2192/2192 std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >::end() [85]
[83] 0.0 0.00 0.00 2192 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::end() [83]
0.00 0.00 2192/5079 std::__detail::_Node_iterator<std::pair<int const, Node>, false, false>::_Node_iterator(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [32]
-----------------------------------------------
0.00 0.00 2192/2192 std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >::find(int const&) [86]
[84] 0.0 0.00 0.00 2192 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) [84]
0.00 0.00 2192/5855 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [23]
0.00 0.00 2192/3583 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(unsigned long) const [39]
0.00 0.00 2192/3576 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_node(unsigned long, int const&, unsigned long) const [41]
0.00 0.00 2192/5079 std::__detail::_Node_iterator<std::pair<int const, Node>, false, false>::_Node_iterator(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [32]
-----------------------------------------------
0.00 0.00 2192/2192 main [6]
[85] 0.0 0.00 0.00 2192 std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >::end() [85]
0.00 0.00 2192/2192 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::end() [83]
-----------------------------------------------
0.00 0.00 2192/2192 main [6]
[86] 0.0 0.00 0.00 2192 std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >::find(int const&) [86]
0.00 0.00 2192/2192 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) [84]
-----------------------------------------------
0.00 0.00 2192/2192 main [6]
[87] 0.0 0.00 0.00 2192 std::__detail::operator==(std::__detail::_Node_iterator_base<std::pair<int const, Node>, false> const&, std::__detail::_Node_iterator_base<std::pair<int const, Node>, false> const&) [87]
-----------------------------------------------
0.00 0.00 915/1941 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [127]
0.00 0.00 1026/1941 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_rehash_aux(unsigned long, std::integral_constant<bool, true>) [256]
[88] 0.0 0.00 0.00 1941 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&, unsigned long) const [88]
0.00 0.00 1941/3331 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_v() const [53]
0.00 0.00 1941/3331 decltype ((get<0>)((forward<std::pair<int const, std::vector<int, std::allocator<int> > > const&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<int const, std::vector<int, std::allocator<int> > > const&>(std::pair<int const, std::vector<int, std::allocator<int> > > const&) const [52]
0.00 0.00 1941/3442 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [48]
0.00 0.00 1941/9330 std::__detail::_Mod_range_hashing::operator()(unsigned long, unsigned long) const [9]
-----------------------------------------------
0.00 0.00 1/1508 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) const [481]
0.00 0.00 7/1508 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [182]
0.00 0.00 1500/1508 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
[89] 0.0 0.00 0.00 1508 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(unsigned long) const [89]
0.00 0.00 1508/1508 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(unsigned long, unsigned long) const [90]
-----------------------------------------------
0.00 0.00 1508/1508 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(unsigned long) const [89]
[90] 0.0 0.00 0.00 1508 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(unsigned long, unsigned long) const [90]
0.00 0.00 1508/9330 std::__detail::_Mod_range_hashing::operator()(unsigned long, unsigned long) const [9]
-----------------------------------------------
0.00 0.00 2/1502 aStarSearch(std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > > const&, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > > const&, int, int) [450]
0.00 0.00 1500/1502 main [6]
[91] 0.0 0.00 0.00 1502 __gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > >::operator++() [91]
-----------------------------------------------
0.00 0.00 2/1502 aStarSearch(std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > > const&, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > > const&, int, int) [450]
0.00 0.00 1500/1502 main [6]
[92] 0.0 0.00 0.00 1502 __gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > >::operator*() const [92]
-----------------------------------------------
0.00 0.00 1/1501 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find(int const&) const [481]
0.00 0.00 1500/1501 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
[93] 0.0 0.00 0.00 1501 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_node(unsigned long, int const&, unsigned long) const [93]
0.00 0.00 1501/1501 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_before_node(unsigned long, int const&, unsigned long) const [94]
-----------------------------------------------
0.00 0.00 1501/1501 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_node(unsigned long, int const&, unsigned long) const [93]
[94] 0.0 0.00 0.00 1501 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_before_node(unsigned long, int const&, unsigned long) const [94]
0.00 0.00 1390/1390 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [112]
0.00 0.00 807/3554 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>::_M_next() const [46]
0.00 0.00 574/915 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [127]
-----------------------------------------------
0.00 0.00 1500/1500 parseOSM(char const*, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >&, std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > >&) [452]
[95] 0.0 0.00 0.00 1500 std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > >::operator[](int const&) [95]
0.00 0.00 1500/1500 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
-----------------------------------------------
0.00 0.00 690/1500 std::__detail::_Node_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::operator*() const [177]
0.00 0.00 810/1500 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
[96] 0.0 0.00 0.00 1500 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_v() [96]
0.00 0.00 1500/3571 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_valptr() [45]
-----------------------------------------------
0.00 0.00 1500/1500 std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > >::operator[](int const&) [95]
[97] 0.0 0.00 0.00 1500 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
0.00 0.00 1500/3442 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [48]
0.00 0.00 1500/1508 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(unsigned long) const [89]
0.00 0.00 1500/1501 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_node(unsigned long, int const&, unsigned long) const [93]
0.00 0.00 810/1500 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_v() [96]
0.00 0.00 690/1390 std::tuple<int const&>::tuple<true, true>(int const&) [118]
0.00 0.00 690/690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [180]
0.00 0.00 690/690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [182]
0.00 0.00 690/690 std::__detail::_Node_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::operator->() const [178]
0.00 0.00 690/690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::~_Scoped_node() [181]
-----------------------------------------------
0.00 0.00 1/1448 aStarSearch(std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > > const&, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > > const&, int, int) [450]
0.00 0.00 1/1448 main [6]
0.00 0.00 1446/1448 std::vector<int, std::allocator<int> >::push_back(int const&) [60]
[98] 0.0 0.00 0.00 1448 std::vector<int, std::allocator<int> >::end() [98]
0.00 0.00 1448/2896 __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >::__normal_iterator(int* const&) [62]
-----------------------------------------------
0.00 0.00 1/1448 aStarSearch(std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > > const&, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > > const&, int, int) [450]
0.00 0.00 1/1448 main [6]
0.00 0.00 1446/1448 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
[99] 0.0 0.00 0.00 1448 std::vector<int, std::allocator<int> >::begin() [99]
0.00 0.00 1448/2896 __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >::__normal_iterator(int* const&) [62]
-----------------------------------------------
0.00 0.00 2/1448 std::vector<AStarNode, std::allocator<AStarNode> >::_M_check_len(unsigned long, char const*) const [391]
0.00 0.00 1446/1448 std::vector<int, std::allocator<int> >::_M_check_len(unsigned long, char const*) const [104]
[100] 0.0 0.00 0.00 1448 unsigned long const& std::max<unsigned long>(unsigned long const&, unsigned long const&) [100]
-----------------------------------------------
0.00 0.00 1446/1446 std::allocator_traits<std::allocator<int> >::deallocate(std::allocator<int>&, int*, unsigned long) [106]
[101] 0.0 0.00 0.00 1446 __gnu_cxx::new_allocator<int>::deallocate(int*, unsigned long) [101]
-----------------------------------------------
0.00 0.00 1446/1446 std::allocator_traits<std::allocator<int> >::allocate(std::allocator<int>&, unsigned long) [107]
[102] 0.0 0.00 0.00 1446 __gnu_cxx::new_allocator<int>::allocate(unsigned long, void const*) [102]
0.00 0.00 1446/4338 __gnu_cxx::new_allocator<int>::_M_max_size() const [34]
-----------------------------------------------
0.00 0.00 1446/1446 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
[103] 0.0 0.00 0.00 1446 __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >::difference_type __gnu_cxx::operator-<int*, std::vector<int, std::allocator<int> > >(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&, __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&) [103]
0.00 0.00 2892/5796 __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >::base() const [25]
-----------------------------------------------
0.00 0.00 1446/1446 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
[104] 0.0 0.00 0.00 1446 std::vector<int, std::allocator<int> >::_M_check_len(unsigned long, char const*) const [104]
0.00 0.00 5784/7448 std::vector<int, std::allocator<int> >::size() const [14]
0.00 0.00 2892/2892 std::vector<int, std::allocator<int> >::max_size() const [66]
0.00 0.00 1446/1448 unsigned long const& std::max<unsigned long>(unsigned long const&, unsigned long const&) [100]
-----------------------------------------------
0.00 0.00 1446/1446 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
[105] 0.0 0.00 0.00 1446 std::_Vector_base<int, std::allocator<int> >::_M_allocate(unsigned long) [105]
0.00 0.00 1446/1446 std::allocator_traits<std::allocator<int> >::allocate(std::allocator<int>&, unsigned long) [107]
-----------------------------------------------
0.00 0.00 1446/1446 std::_Vector_base<int, std::allocator<int> >::_M_deallocate(int*, unsigned long) [80]
[106] 0.0 0.00 0.00 1446 std::allocator_traits<std::allocator<int> >::deallocate(std::allocator<int>&, int*, unsigned long) [106]
0.00 0.00 1446/1446 __gnu_cxx::new_allocator<int>::deallocate(int*, unsigned long) [101]
-----------------------------------------------
0.00 0.00 1446/1446 std::_Vector_base<int, std::allocator<int> >::_M_allocate(unsigned long) [105]
[107] 0.0 0.00 0.00 1446 std::allocator_traits<std::allocator<int> >::allocate(std::allocator<int>&, unsigned long) [107]
0.00 0.00 1446/1446 __gnu_cxx::new_allocator<int>::allocate(unsigned long, void const*) [102]
-----------------------------------------------
0.00 0.00 1446/1446 std::vector<int, std::allocator<int> >::push_back(int const&) [60]
[108] 0.0 0.00 0.00 1446 void std::vector<int, std::allocator<int> >::_M_realloc_insert<int const&>(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&) [108]
0.00 0.00 2892/3748 std::_Vector_base<int, std::allocator<int> >::_M_get_Tp_allocator() [38]
0.00 0.00 2892/5796 __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >::base() const [25]
0.00 0.00 2892/2892 std::vector<int, std::allocator<int> >::_S_relocate(int*, int*, int*, std::allocator<int>&) [69]
0.00 0.00 1446/1446 std::vector<int, std::allocator<int> >::_M_check_len(unsigned long, char const*) const [104]
0.00 0.00 1446/1448 std::vector<int, std::allocator<int> >::begin() [99]
0.00 0.00 1446/1446 __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >::difference_type __gnu_cxx::operator-<int*, std::vector<int, std::allocator<int> > >(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&, __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > > const&) [103]
0.00 0.00 1446/1446 std::_Vector_base<int, std::allocator<int> >::_M_allocate(unsigned long) [105]
0.00 0.00 1446/9175 int const& std::forward<int const&>(std::remove_reference<int const&>::type&) [12]
0.00 0.00 1446/3166 void std::allocator_traits<std::allocator<int> >::construct<int, int const&>(std::allocator<int>&, int*, int const&) [59]
0.00 0.00 1446/2302 std::_Vector_base<int, std::allocator<int> >::_M_deallocate(int*, unsigned long) [80]
-----------------------------------------------
0.00 0.00 1/1396 std::_Hashtable<int, std::pair<int const, double>, std::allocator<std::pair<int const, double> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Hashtable() [528]
0.00 0.00 1/1396 std::_Hashtable<int, std::pair<int const, int>, std::allocator<std::pair<int const, int> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Hashtable() [534]
0.00 0.00 1/1396 std::_Hashtable<int, int, std::allocator<int>, std::__detail::_Identity, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, true, true> >::_Hashtable() [545]
0.00 0.00 1/1396 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Hashtable() [517]
0.00 0.00 1/1396 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Hashtable() [522]
0.00 0.00 1/1396 std::__detail::_Hash_node<int, false>::_Hash_node() [588]
0.00 0.00 2/1396 std::__detail::_Hash_node<std::pair<int const, int>, false>::_Hash_node() [433]
0.00 0.00 3/1396 std::__detail::_Hash_node<std::pair<int const, double>, false>::_Hash_node() [353]
0.00 0.00 690/1396 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>::_Hash_node() [192]
0.00 0.00 695/1396 std::__detail::_Hash_node<std::pair<int const, Node>, false>::_Hash_node() [160]
[109] 0.0 0.00 0.00 1396 std::__detail::_Hash_node_base::_Hash_node_base() [109]
-----------------------------------------------
0.00 0.00 1/1391 std::_Hashtable<int, int, std::allocator<int>, std::__detail::_Identity, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, true, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<int, false>*, unsigned long) [540]
0.00 0.00 2/1391 std::_Hashtable<int, std::pair<int const, int>, std::allocator<std::pair<int const, int> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, int>, false>*, unsigned long) [412]
0.00 0.00 3/1391 std::_Hashtable<int, std::pair<int const, double>, std::allocator<std::pair<int const, double> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, double>, false>*, unsigned long) [335]
0.00 0.00 690/1391 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [182]
0.00 0.00 695/1391 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [151]
[110] 0.0 0.00 0.00 1391 std::__detail::_Prime_rehash_policy::_M_state() const [110]
-----------------------------------------------
0.00 0.00 1390/1390 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [112]
[111] 0.0 0.00 0.00 1390 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_eq() const [111]
0.00 0.00 1390/5182 std::__detail::_Hashtable_ebo_helper<0, std::equal_to<int>, true>::_M_cget() const [29]
-----------------------------------------------
0.00 0.00 1390/1390 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_before_node(unsigned long, int const&, unsigned long) const [94]
[112] 0.0 0.00 0.00 1390 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [112]
0.00 0.00 1390/1390 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_S_equals(unsigned long, std::__detail::_Hash_node_code_cache<false> const&) [120]
0.00 0.00 1390/1390 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_eq() const [111]
0.00 0.00 1390/3331 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_v() const [53]
0.00 0.00 1390/3331 decltype ((get<0>)((forward<std::pair<int const, std::vector<int, std::allocator<int> > > const&>)({parm#1}))) std::__detail::_Select1st::operator()<std::pair<int const, std::vector<int, std::allocator<int> > > const&>(std::pair<int const, std::vector<int, std::allocator<int> > > const&) const [52]
0.00 0.00 1390/5182 std::equal_to<int>::operator()(int const&, int const&) const [30]
-----------------------------------------------
0.00 0.00 1390/1390 std::_Tuple_impl<0ul, int const&>::_M_head(std::_Tuple_impl<0ul, int const&>&) [115]
[113] 0.0 0.00 0.00 1390 std::_Head_base<0ul, int const&, false>::_M_head(std::_Head_base<0ul, int const&, false>&) [113]
-----------------------------------------------
0.00 0.00 1390/1390 std::_Tuple_impl<0ul, int const&>::_Tuple_impl(int const&) [117]
[114] 0.0 0.00 0.00 1390 std::_Head_base<0ul, int const&, false>::_Head_base(int const&) [114]
-----------------------------------------------
0.00 0.00 1390/1390 int const& std::__get_helper<0ul, int const&>(std::_Tuple_impl<0ul, int const&>&) [121]
[115] 0.0 0.00 0.00 1390 std::_Tuple_impl<0ul, int const&>::_M_head(std::_Tuple_impl<0ul, int const&>&) [115]
0.00 0.00 1390/1390 std::_Head_base<0ul, int const&, false>::_M_head(std::_Head_base<0ul, int const&, false>&) [113]
-----------------------------------------------
0.00 0.00 1390/1390 std::tuple<int const&>::tuple(std::tuple<int const&>&&) [119]
[116] 0.0 0.00 0.00 1390 std::_Tuple_impl<0ul, int const&>::_Tuple_impl(std::_Tuple_impl<0ul, int const&>&&) [116]
-----------------------------------------------
0.00 0.00 1390/1390 std::tuple<int const&>::tuple<true, true>(int const&) [118]
[117] 0.0 0.00 0.00 1390 std::_Tuple_impl<0ul, int const&>::_Tuple_impl(int const&) [117]
0.00 0.00 1390/1390 std::_Head_base<0ul, int const&, false>::_Head_base(int const&) [114]
-----------------------------------------------
0.00 0.00 2/1390 std::__detail::_Map_base<int, std::pair<int const, int>, std::allocator<std::pair<int const, int> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [357]
0.00 0.00 3/1390 std::__detail::_Map_base<int, std::pair<int const, double>, std::allocator<std::pair<int const, double> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [289]
0.00 0.00 690/1390 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
0.00 0.00 695/1390 std::__detail::_Map_base<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [125]
[118] 0.0 0.00 0.00 1390 std::tuple<int const&>::tuple<true, true>(int const&) [118]
0.00 0.00 1390/1390 std::_Tuple_impl<0ul, int const&>::_Tuple_impl(int const&) [117]
-----------------------------------------------
0.00 0.00 2/1390 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, int>, false> >::construct<std::pair<int const, int>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, int>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [371]
0.00 0.00 3/1390 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, double>, false> >::construct<std::pair<int const, double>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, double>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [321]
0.00 0.00 690/1390 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [175]
0.00 0.00 695/1390 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [145]
[119] 0.0 0.00 0.00 1390 std::tuple<int const&>::tuple(std::tuple<int const&>&&) [119]
0.00 0.00 1390/1390 std::_Tuple_impl<0ul, int const&>::_Tuple_impl(std::_Tuple_impl<0ul, int const&>&&) [116]
-----------------------------------------------
0.00 0.00 1390/1390 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_M_equals(int const&, unsigned long, std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [112]
[120] 0.0 0.00 0.00 1390 std::__detail::_Hashtable_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Hashtable_traits<false, false, true> >::_S_equals(unsigned long, std::__detail::_Hash_node_code_cache<false> const&) [120]
-----------------------------------------------
0.00 0.00 1390/1390 std::tuple_element<0ul, std::tuple<int const&> >::type& std::get<0ul, int const&>(std::tuple<int const&>&) [122]
[121] 0.0 0.00 0.00 1390 int const& std::__get_helper<0ul, int const&>(std::_Tuple_impl<0ul, int const&>&) [121]
0.00 0.00 1390/1390 std::_Tuple_impl<0ul, int const&>::_M_head(std::_Tuple_impl<0ul, int const&>&) [115]
-----------------------------------------------
0.00 0.00 2/1390 std::pair<int const, int>::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [429]
0.00 0.00 3/1390 std::pair<int const, double>::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [351]
0.00 0.00 690/1390 std::pair<int const, std::vector<int, std::allocator<int> > >::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [190]
0.00 0.00 695/1390 std::pair<int const, Node>::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [159]
[122] 0.0 0.00 0.00 1390 std::tuple_element<0ul, std::tuple<int const&> >::type& std::get<0ul, int const&>(std::tuple<int const&>&) [122]
0.00 0.00 1390/1390 int const& std::__get_helper<0ul, int const&>(std::_Tuple_impl<0ul, int const&>&) [121]
-----------------------------------------------
0.00 0.00 692/1384 std::vector<int, std::allocator<int> >::begin() const [169]
0.00 0.00 692/1384 std::vector<int, std::allocator<int> >::end() const [168]
[123] 0.0 0.00 0.00 1384 __gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > >::__normal_iterator(int const* const&) [123]
-----------------------------------------------
0.00 0.00 1374/1374 parseOSM(char const*, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >&, std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > >&) [452]
[124] 0.0 0.00 0.00 1374 std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >::operator[](int const&) [124]
0.00 0.00 1374/1374 std::__detail::_Map_base<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [125]
-----------------------------------------------
0.00 0.00 1374/1374 std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >::operator[](int const&) [124]
[125] 0.0 0.00 0.00 1374 std::__detail::_Map_base<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [125]
0.00 0.00 1374/5855 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(int const&) const [23]
0.00 0.00 1374/3583 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(unsigned long) const [39]
0.00 0.00 1374/3576 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_node(unsigned long, int const&, unsigned long) const [41]
0.00 0.00 695/1390 std::tuple<int const&>::tuple<true, true>(int const&) [118]
0.00 0.00 695/695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [149]
0.00 0.00 695/695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [151]
0.00 0.00 695/695 std::__detail::_Node_iterator<std::pair<int const, Node>, false, false>::operator->() const [147]
0.00 0.00 695/695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::~_Scoped_node() [150]
0.00 0.00 679/679 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_v() [201]
-----------------------------------------------
0.00 0.00 351/1253 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_bucket_begin(unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [152]
0.00 0.00 902/1253 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_before_node(unsigned long, int const&, unsigned long) const [42]
[126] 0.0 0.00 0.00 1253 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [126]
0.00 0.00 1253/2279 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&, unsigned long) const [81]
-----------------------------------------------
0.00 0.00 341/915 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_bucket_begin(unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [183]
0.00 0.00 574/915 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_find_before_node(unsigned long, int const&, unsigned long) const [94]
[127] 0.0 0.00 0.00 915 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [127]
0.00 0.00 915/1941 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&, unsigned long) const [88]
-----------------------------------------------
0.00 0.00 856/856 std::allocator<int>::~allocator() [129]
[128] 0.0 0.00 0.00 856 __gnu_cxx::new_allocator<int>::~new_allocator() [128]
-----------------------------------------------
0.00 0.00 856/856 std::_Vector_base<int, std::allocator<int> >::_Vector_impl::~_Vector_impl() [131]
[129] 0.0 0.00 0.00 856 std::allocator<int>::~allocator() [129]
0.00 0.00 856/856 __gnu_cxx::new_allocator<int>::~new_allocator() [128]
-----------------------------------------------
0.00 0.00 856/856 void std::_Destroy<int*>(int*, int*) [134]
[130] 0.0 0.00 0.00 856 void std::_Destroy_aux<true>::__destroy<int*>(int*, int*) [130]
-----------------------------------------------
0.00 0.00 856/856 std::_Vector_base<int, std::allocator<int> >::~_Vector_base() [132]
[131] 0.0 0.00 0.00 856 std::_Vector_base<int, std::allocator<int> >::_Vector_impl::~_Vector_impl() [131]
0.00 0.00 856/856 std::allocator<int>::~allocator() [129]
-----------------------------------------------
0.00 0.00 856/856 std::vector<int, std::allocator<int> >::~vector() [133]
[132] 0.0 0.00 0.00 856 std::_Vector_base<int, std::allocator<int> >::~_Vector_base() [132]
0.00 0.00 856/2302 std::_Vector_base<int, std::allocator<int> >::_M_deallocate(int*, unsigned long) [80]
0.00 0.00 856/856 std::_Vector_base<int, std::allocator<int> >::_Vector_impl::~_Vector_impl() [131]
-----------------------------------------------
0.00 0.00 1/856 aStarSearch(std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > > const&, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > > const&, int, int) [450]
0.00 0.00 1/856 main [6]
0.00 0.00 164/856 parseOSM(char const*, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >&, std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > >&) [452]
0.00 0.00 690/856 std::pair<int const, std::vector<int, std::allocator<int> > >::~pair() [191]
[133] 0.0 0.00 0.00 856 std::vector<int, std::allocator<int> >::~vector() [133]
0.00 0.00 856/3748 std::_Vector_base<int, std::allocator<int> >::_M_get_Tp_allocator() [38]
0.00 0.00 856/856 void std::_Destroy<int*, int>(int*, int*, std::allocator<int>&) [135]
0.00 0.00 856/856 std::_Vector_base<int, std::allocator<int> >::~_Vector_base() [132]
-----------------------------------------------
0.00 0.00 856/856 void std::_Destroy<int*, int>(int*, int*, std::allocator<int>&) [135]
[134] 0.0 0.00 0.00 856 void std::_Destroy<int*>(int*, int*) [134]
0.00 0.00 856/856 void std::_Destroy_aux<true>::__destroy<int*>(int*, int*) [130]
-----------------------------------------------
0.00 0.00 856/856 std::vector<int, std::allocator<int> >::~vector() [133]
[135] 0.0 0.00 0.00 856 void std::_Destroy<int*, int>(int*, int*, std::allocator<int>&) [135]
0.00 0.00 856/856 void std::_Destroy<int*>(int*, int*) [134]
-----------------------------------------------
0.00 0.00 855/855 std::allocator<int>::allocator() [137]
[136] 0.0 0.00 0.00 855 __gnu_cxx::new_allocator<int>::new_allocator() [136]
-----------------------------------------------
0.00 0.00 855/855 std::_Vector_base<int, std::allocator<int> >::_Vector_impl::_Vector_impl() [138]
[137] 0.0 0.00 0.00 855 std::allocator<int>::allocator() [137]
0.00 0.00 855/855 __gnu_cxx::new_allocator<int>::new_allocator() [136]
-----------------------------------------------
0.00 0.00 855/855 std::_Vector_base<int, std::allocator<int> >::_Vector_base() [140]
[138] 0.0 0.00 0.00 855 std::_Vector_base<int, std::allocator<int> >::_Vector_impl::_Vector_impl() [138]
0.00 0.00 855/855 std::_Vector_base<int, std::allocator<int> >::_Vector_impl_data::_Vector_impl_data() [139]
0.00 0.00 855/855 std::allocator<int>::allocator() [137]
-----------------------------------------------
0.00 0.00 855/855 std::_Vector_base<int, std::allocator<int> >::_Vector_impl::_Vector_impl() [138]
[139] 0.0 0.00 0.00 855 std::_Vector_base<int, std::allocator<int> >::_Vector_impl_data::_Vector_impl_data() [139]
-----------------------------------------------
0.00 0.00 855/855 std::vector<int, std::allocator<int> >::vector() [141]
[140] 0.0 0.00 0.00 855 std::_Vector_base<int, std::allocator<int> >::_Vector_base() [140]
0.00 0.00 855/855 std::_Vector_base<int, std::allocator<int> >::_Vector_impl::_Vector_impl() [138]
-----------------------------------------------
0.00 0.00 1/855 aStarSearch(std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > > const&, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > > const&, int, int) [450]
0.00 0.00 164/855 parseOSM(char const*, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > >&, std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > >&) [452]
0.00 0.00 690/855 std::pair<int const, std::vector<int, std::allocator<int> > >::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [190]
[141] 0.0 0.00 0.00 855 std::vector<int, std::allocator<int> >::vector() [141]
0.00 0.00 855/855 std::_Vector_base<int, std::allocator<int> >::_Vector_base() [140]
-----------------------------------------------
0.00 0.00 695/695 std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::deallocate(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [154]
[142] 0.0 0.00 0.00 695 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::deallocate(std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [142]
-----------------------------------------------
0.00 0.00 695/695 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::destroy<std::pair<int const, Node> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::pair<int const, Node>*) [155]
[143] 0.0 0.00 0.00 695 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::destroy<std::pair<int const, Node> >(std::pair<int const, Node>*) [143]
-----------------------------------------------
0.00 0.00 695/695 std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::allocate(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, unsigned long) [156]
[144] 0.0 0.00 0.00 695 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::allocate(unsigned long, void const*) [144]
0.00 0.00 695/695 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::_M_max_size() const [146]
-----------------------------------------------
0.00 0.00 695/695 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [157]
[145] 0.0 0.00 0.00 695 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [145]
0.00 0.00 695/5560 std::piecewise_construct_t const& std::forward<std::piecewise_construct_t const&>(std::remove_reference<std::piecewise_construct_t const&>::type&) [26]
0.00 0.00 695/5560 std::tuple<int const&>&& std::forward<std::tuple<int const&> >(std::remove_reference<std::tuple<int const&> >::type&) [28]
0.00 0.00 695/1390 std::tuple<int const&>::tuple(std::tuple<int const&>&&) [119]
0.00 0.00 695/5560 std::tuple<>&& std::forward<std::tuple<> >(std::remove_reference<std::tuple<> >::type&) [27]
0.00 0.00 695/26187 operator new(unsigned long, void*) [8]
0.00 0.00 695/695 std::pair<int const, Node>::pair<int const&>(std::piecewise_construct_t, std::tuple<int const&>, std::tuple<>) [158]
-----------------------------------------------
0.00 0.00 695/695 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::allocate(unsigned long, void const*) [144]
[146] 0.0 0.00 0.00 695 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::_M_max_size() const [146]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Map_base<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [125]
[147] 0.0 0.00 0.00 695 std::__detail::_Node_iterator<std::pair<int const, Node>, false, false>::operator->() const [147]
0.00 0.00 695/2774 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_valptr() [78]
-----------------------------------------------
0.00 0.00 695/695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [151]
[148] 0.0 0.00 0.00 695 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_store_code(std::__detail::_Hash_node_code_cache<false>&, unsigned long) const [148]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Map_base<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [125]
[149] 0.0 0.00 0.00 695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [149]
0.00 0.00 695/5560 std::tuple<>&& std::forward<std::tuple<> >(std::remove_reference<std::tuple<> >::type&) [27]
0.00 0.00 695/5560 std::tuple<int const&>&& std::forward<std::tuple<int const&> >(std::remove_reference<std::tuple<int const&> >::type&) [28]
0.00 0.00 695/5560 std::piecewise_construct_t const& std::forward<std::piecewise_construct_t const&>(std::remove_reference<std::piecewise_construct_t const&>::type&) [26]
0.00 0.00 695/695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Map_base<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [125]
[150] 0.0 0.00 0.00 695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::~_Scoped_node() [150]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Map_base<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [125]
[151] 0.0 0.00 0.00 695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [151]
0.00 0.00 695/1391 std::__detail::_Prime_rehash_policy::_M_state() const [110]
0.00 0.00 695/695 std::__detail::_Hash_code_base<int, std::pair<int const, Node>, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_store_code(std::__detail::_Hash_node_code_cache<false>&, unsigned long) const [148]
0.00 0.00 695/695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_bucket_begin(unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [152]
0.00 0.00 695/5079 std::__detail::_Node_iterator<std::pair<int const, Node>, false, false>::_Node_iterator(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [32]
0.00 0.00 7/7 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_rehash(unsigned long, unsigned long const&) [255]
0.00 0.00 7/3583 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(unsigned long) const [39]
-----------------------------------------------
0.00 0.00 695/695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [151]
[152] 0.0 0.00 0.00 695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_bucket_begin(unsigned long, std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [152]
0.00 0.00 351/3535 std::__detail::_Hash_node<std::pair<int const, Node>, false>::_M_next() const [47]
0.00 0.00 351/1253 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, Node>, false> const&) const [126]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_node_ptr(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [163]
[153] 0.0 0.00 0.00 695 std::pointer_traits<std::__detail::_Hash_node<std::pair<int const, Node>, false>*>::pointer_to(std::__detail::_Hash_node<std::pair<int const, Node>, false>&) [153]
0.00 0.00 695/695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::addressof<std::__detail::_Hash_node<std::pair<int const, Node>, false> >(std::__detail::_Hash_node<std::pair<int const, Node>, false>&) [166]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_node_ptr(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [163]
[154] 0.0 0.00 0.00 695 std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::deallocate(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [154]
0.00 0.00 695/695 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::deallocate(std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [142]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_node(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [162]
[155] 0.0 0.00 0.00 695 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::destroy<std::pair<int const, Node> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::pair<int const, Node>*) [155]
0.00 0.00 695/695 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::destroy<std::pair<int const, Node> >(std::pair<int const, Node>*) [143]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
[156] 0.0 0.00 0.00 695 std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::allocate(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, unsigned long) [156]
0.00 0.00 695/695 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::allocate(unsigned long, void const*) [144]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
[157] 0.0 0.00 0.00 695 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [157]
0.00 0.00 695/5560 std::tuple<>&& std::forward<std::tuple<> >(std::remove_reference<std::tuple<> >::type&) [27]
0.00 0.00 695/5560 std::tuple<int const&>&& std::forward<std::tuple<int const&> >(std::remove_reference<std::tuple<int const&> >::type&) [28]
0.00 0.00 695/5560 std::piecewise_construct_t const& std::forward<std::piecewise_construct_t const&>(std::remove_reference<std::piecewise_construct_t const&>::type&) [26]
0.00 0.00 695/695 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [145]
-----------------------------------------------
0.00 0.00 695/695 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [145]
[158] 0.0 0.00 0.00 695 std::pair<int const, Node>::pair<int const&>(std::piecewise_construct_t, std::tuple<int const&>, std::tuple<>) [158]
0.00 0.00 695/695 std::pair<int const, Node>::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [159]
-----------------------------------------------
0.00 0.00 695/695 std::pair<int const, Node>::pair<int const&>(std::piecewise_construct_t, std::tuple<int const&>, std::tuple<>) [158]
[159] 0.0 0.00 0.00 695 std::pair<int const, Node>::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [159]
0.00 0.00 695/1390 std::tuple_element<0ul, std::tuple<int const&> >::type& std::get<0ul, int const&>(std::tuple<int const&>&) [122]
0.00 0.00 695/9175 int const& std::forward<int const&>(std::remove_reference<int const&>::type&) [12]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
[160] 0.0 0.00 0.00 695 std::__detail::_Hash_node<std::pair<int const, Node>, false>::_Hash_node() [160]
0.00 0.00 695/1396 std::__detail::_Hash_node_base::_Hash_node_base() [109]
-----------------------------------------------
0.00 0.00 695/695 std::_Hashtable<int, std::pair<int const, Node>, std::allocator<std::pair<int const, Node> >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [149]
[161] 0.0 0.00 0.00 695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
0.00 0.00 1390/2794 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_node_allocator() [73]
0.00 0.00 695/695 std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::allocate(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, unsigned long) [156]
0.00 0.00 695/695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__to_address<std::__detail::_Hash_node<std::pair<int const, Node>, false> >(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [165]
0.00 0.00 695/26187 operator new(unsigned long, void*) [8]
0.00 0.00 695/695 std::__detail::_Hash_node<std::pair<int const, Node>, false>::_Hash_node() [160]
0.00 0.00 695/5560 std::tuple<>&& std::forward<std::tuple<> >(std::remove_reference<std::tuple<> >::type&) [27]
0.00 0.00 695/5560 std::piecewise_construct_t const& std::forward<std::piecewise_construct_t const&>(std::remove_reference<std::piecewise_construct_t const&>::type&) [26]
0.00 0.00 695/5560 std::tuple<int const&>&& std::forward<std::tuple<int const&> >(std::remove_reference<std::tuple<int const&> >::type&) [28]
0.00 0.00 695/2774 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_valptr() [78]
0.00 0.00 695/695 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::construct<std::pair<int const, Node>, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::pair<int const, Node>*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [157]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_nodes(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [603]
[162] 0.0 0.00 0.00 695 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_node(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [162]
0.00 0.00 695/2774 std::__detail::_Hash_node_value_base<std::pair<int const, Node> >::_M_valptr() [78]
0.00 0.00 695/2794 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_node_allocator() [73]
0.00 0.00 695/695 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::destroy<std::pair<int const, Node> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::pair<int const, Node>*) [155]
0.00 0.00 695/695 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_node_ptr(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [163]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_node(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [162]
[163] 0.0 0.00 0.00 695 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_deallocate_node_ptr(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [163]
0.00 0.00 695/695 std::pointer_traits<std::__detail::_Hash_node<std::pair<int const, Node>, false>*>::pointer_to(std::__detail::_Hash_node<std::pair<int const, Node>, false>&) [153]
0.00 0.00 695/2794 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_node_allocator() [73]
0.00 0.00 695/695 std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::deallocate(std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> >&, std::__detail::_Hash_node<std::pair<int const, Node>, false>*, unsigned long) [154]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::addressof<std::__detail::_Hash_node<std::pair<int const, Node>, false> >(std::__detail::_Hash_node<std::pair<int const, Node>, false>&) [166]
[164] 0.0 0.00 0.00 695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__addressof<std::__detail::_Hash_node<std::pair<int const, Node>, false> >(std::__detail::_Hash_node<std::pair<int const, Node>, false>&) [164]
-----------------------------------------------
0.00 0.00 695/695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, Node>, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [161]
[165] 0.0 0.00 0.00 695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__to_address<std::__detail::_Hash_node<std::pair<int const, Node>, false> >(std::__detail::_Hash_node<std::pair<int const, Node>, false>*) [165]
-----------------------------------------------
0.00 0.00 695/695 std::pointer_traits<std::__detail::_Hash_node<std::pair<int const, Node>, false>*>::pointer_to(std::__detail::_Hash_node<std::pair<int const, Node>, false>&) [153]
[166] 0.0 0.00 0.00 695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::addressof<std::__detail::_Hash_node<std::pair<int const, Node>, false> >(std::__detail::_Hash_node<std::pair<int const, Node>, false>&) [166]
0.00 0.00 695/695 std::__detail::_Hash_node<std::pair<int const, Node>, false>* std::__addressof<std::__detail::_Hash_node<std::pair<int const, Node>, false> >(std::__detail::_Hash_node<std::pair<int const, Node>, false>&) [164]
-----------------------------------------------
0.00 0.00 2/694 std::__detail::_Node_const_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::_Node_const_iterator(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [439]
0.00 0.00 692/694 std::__detail::_Node_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::_Node_iterator(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [170]
[167] 0.0 0.00 0.00 694 std::__detail::_Node_iterator_base<std::pair<int const, std::vector<int, std::allocator<int> > >, false>::_Node_iterator_base(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [167]
-----------------------------------------------
0.00 0.00 1/692 aStarSearch(std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > > const&, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > > const&, int, int) [450]
0.00 0.00 1/692 std::vector<int, std::allocator<int> >::empty() const [490]
0.00 0.00 690/692 main [6]
[168] 0.0 0.00 0.00 692 std::vector<int, std::allocator<int> >::end() const [168]
0.00 0.00 692/1384 __gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > >::__normal_iterator(int const* const&) [123]
-----------------------------------------------
0.00 0.00 1/692 aStarSearch(std::unordered_map<int, std::vector<int, std::allocator<int> >, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > > > const&, std::unordered_map<int, Node, std::hash<int>, std::equal_to<int>, std::allocator<std::pair<int const, Node> > > const&, int, int) [450]
0.00 0.00 1/692 std::vector<int, std::allocator<int> >::empty() const [490]
0.00 0.00 690/692 main [6]
[169] 0.0 0.00 0.00 692 std::vector<int, std::allocator<int> >::begin() const [169]
0.00 0.00 692/1384 __gnu_cxx::__normal_iterator<int const*, std::vector<int, std::allocator<int> > >::__normal_iterator(int const* const&) [123]
-----------------------------------------------
0.00 0.00 1/692 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::begin() [520]
0.00 0.00 1/692 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::end() [519]
0.00 0.00 690/692 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [182]
[170] 0.0 0.00 0.00 692 std::__detail::_Node_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::_Node_iterator(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [170]
0.00 0.00 692/694 std::__detail::_Node_iterator_base<std::pair<int const, std::vector<int, std::allocator<int> > >, false>::_Node_iterator_base(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [167]
-----------------------------------------------
0.00 0.00 691/691 main [6]
[171] 0.0 0.00 0.00 691 std::__detail::operator!=(std::__detail::_Node_iterator_base<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&, std::__detail::_Node_iterator_base<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) [171]
-----------------------------------------------
0.00 0.00 690/690 std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::deallocate(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [185]
[172] 0.0 0.00 0.00 690 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::deallocate(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [172]
-----------------------------------------------
0.00 0.00 690/690 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::destroy<std::pair<int const, std::vector<int, std::allocator<int> > > >(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, std::pair<int const, std::vector<int, std::allocator<int> > >*) [186]
[173] 0.0 0.00 0.00 690 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::destroy<std::pair<int const, std::vector<int, std::allocator<int> > > >(std::pair<int const, std::vector<int, std::allocator<int> > >*) [173]
0.00 0.00 690/690 std::pair<int const, std::vector<int, std::allocator<int> > >::~pair() [191]
-----------------------------------------------
0.00 0.00 690/690 std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::allocate(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, unsigned long) [187]
[174] 0.0 0.00 0.00 690 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::allocate(unsigned long, void const*) [174]
0.00 0.00 690/690 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::_M_max_size() const [176]
-----------------------------------------------
0.00 0.00 690/690 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [188]
[175] 0.0 0.00 0.00 690 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [175]
0.00 0.00 690/5560 std::piecewise_construct_t const& std::forward<std::piecewise_construct_t const&>(std::remove_reference<std::piecewise_construct_t const&>::type&) [26]
0.00 0.00 690/5560 std::tuple<int const&>&& std::forward<std::tuple<int const&> >(std::remove_reference<std::tuple<int const&> >::type&) [28]
0.00 0.00 690/1390 std::tuple<int const&>::tuple(std::tuple<int const&>&&) [119]
0.00 0.00 690/5560 std::tuple<>&& std::forward<std::tuple<> >(std::remove_reference<std::tuple<> >::type&) [27]
0.00 0.00 690/26187 operator new(unsigned long, void*) [8]
0.00 0.00 690/690 std::pair<int const, std::vector<int, std::allocator<int> > >::pair<int const&>(std::piecewise_construct_t, std::tuple<int const&>, std::tuple<>) [189]
-----------------------------------------------
0.00 0.00 690/690 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::allocate(unsigned long, void const*) [174]
[176] 0.0 0.00 0.00 690 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::_M_max_size() const [176]
-----------------------------------------------
0.00 0.00 690/690 main [6]
[177] 0.0 0.00 0.00 690 std::__detail::_Node_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::operator*() const [177]
0.00 0.00 690/1500 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_v() [96]
-----------------------------------------------
0.00 0.00 690/690 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
[178] 0.0 0.00 0.00 690 std::__detail::_Node_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::operator->() const [178]
0.00 0.00 690/3571 std::__detail::_Hash_node_value_base<std::pair<int const, std::vector<int, std::allocator<int> > > >::_M_valptr() [45]
-----------------------------------------------
0.00 0.00 690/690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [182]
[179] 0.0 0.00 0.00 690 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_store_code(std::__detail::_Hash_node_code_cache<false>&, unsigned long) const [179]
-----------------------------------------------
0.00 0.00 690/690 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
[180] 0.0 0.00 0.00 690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [180]
0.00 0.00 690/5560 std::tuple<>&& std::forward<std::tuple<> >(std::remove_reference<std::tuple<> >::type&) [27]
0.00 0.00 690/5560 std::tuple<int const&>&& std::forward<std::tuple<int const&> >(std::remove_reference<std::tuple<int const&> >::type&) [28]
0.00 0.00 690/5560 std::piecewise_construct_t const& std::forward<std::piecewise_construct_t const&>(std::remove_reference<std::piecewise_construct_t const&>::type&) [26]
0.00 0.00 690/690 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [194]
-----------------------------------------------
0.00 0.00 690/690 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
[181] 0.0 0.00 0.00 690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::~_Scoped_node() [181]
-----------------------------------------------
0.00 0.00 690/690 std::__detail::_Map_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true>, true>::operator[](int const&) [97]
[182] 0.0 0.00 0.00 690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [182]
0.00 0.00 690/1391 std::__detail::_Prime_rehash_policy::_M_state() const [110]
0.00 0.00 690/690 std::__detail::_Hash_code_base<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::__detail::_Select1st, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_store_code(std::__detail::_Hash_node_code_cache<false>&, unsigned long) const [179]
0.00 0.00 690/690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_bucket_begin(unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [183]
0.00 0.00 690/692 std::__detail::_Node_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::_Node_iterator(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [170]
0.00 0.00 7/7 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_rehash(unsigned long, unsigned long const&) [258]
0.00 0.00 7/1508 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(unsigned long) const [89]
-----------------------------------------------
0.00 0.00 690/690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [182]
[183] 0.0 0.00 0.00 690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_insert_bucket_begin(unsigned long, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [183]
0.00 0.00 341/3554 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>::_M_next() const [46]
0.00 0.00 341/915 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index(std::__detail::_Hash_node_value<std::pair<int const, std::vector<int, std::allocator<int> > >, false> const&) const [127]
-----------------------------------------------
0.00 0.00 690/690 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_deallocate_node_ptr(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [196]
[184] 0.0 0.00 0.00 690 std::pointer_traits<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*>::pointer_to(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>&) [184]
0.00 0.00 690/690 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::addressof<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>&) [200]
-----------------------------------------------
0.00 0.00 690/690 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_deallocate_node_ptr(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [196]
[185] 0.0 0.00 0.00 690 std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::deallocate(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [185]
0.00 0.00 690/690 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::deallocate(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*, unsigned long) [172]
-----------------------------------------------
0.00 0.00 690/690 std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_deallocate_node(std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>*) [195]
[186] 0.0 0.00 0.00 690 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::destroy<std::pair<int const, std::vector<int, std::allocator<int> > > >(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, std::pair<int const, std::vector<int, std::allocator<int> > >*) [186]
0.00 0.00 690/690 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::destroy<std::pair<int const, std::vector<int, std::allocator<int> > > >(std::pair<int const, std::vector<int, std::allocator<int> > >*) [173]
-----------------------------------------------
0.00 0.00 690/690 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [194]
[187] 0.0 0.00 0.00 690 std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::allocate(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, unsigned long) [187]
0.00 0.00 690/690 __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::allocate(unsigned long, void const*) [174]
-----------------------------------------------
0.00 0.00 690/690 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [194]
[188] 0.0 0.00 0.00 690 void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >&, std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [188]
0.00 0.00 690/5560 std::tuple<>&& std::forward<std::tuple<> >(std::remove_reference<std::tuple<> >::type&) [27]
0.00 0.00 690/5560 std::tuple<int const&>&& std::forward<std::tuple<int const&> >(std::remove_reference<std::tuple<int const&> >::type&) [28]
0.00 0.00 690/5560 std::piecewise_construct_t const& std::forward<std::piecewise_construct_t const&>(std::remove_reference<std::piecewise_construct_t const&>::type&) [26]
0.00 0.00 690/690 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [175]
-----------------------------------------------
0.00 0.00 690/690 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::construct<std::pair<int const, std::vector<int, std::allocator<int> > >, std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::pair<int const, std::vector<int, std::allocator<int> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [175]
[189] 0.0 0.00 0.00 690 std::pair<int const, std::vector<int, std::allocator<int> > >::pair<int const&>(std::piecewise_construct_t, std::tuple<int const&>, std::tuple<>) [189]
0.00 0.00 690/690 std::pair<int const, std::vector<int, std::allocator<int> > >::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [190]
-----------------------------------------------
0.00 0.00 690/690 std::pair<int const, std::vector<int, std::allocator<int> > >::pair<int const&>(std::piecewise_construct_t, std::tuple<int const&>, std::tuple<>) [189]
[190] 0.0 0.00 0.00 690 std::pair<int const, std::vector<int, std::allocator<int> > >::pair<int const&, 0ul>(std::tuple<int const&>&, std::tuple<>&, std::_Index_tuple<0ul>, std::_Index_tuple<>) [190]
0.00 0.00 690/9175 int const& std::forward<int const&>(std::remove_reference<int const&>::type&) [12]
0.00 0.00 690/1390 std::tuple_element<0ul, std::tuple<int const&> >::type& std::get<0ul, int const&>(std::tuple<int const&>&) [122]
0.00 0.00 690/855 std::vector<int, std::allocator<int> >::vector() [141]
-----------------------------------------------
0.00 0.00 690/690 void __gnu_cxx::new_allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> >::destroy<std::pair<int const, std::vector<int, std::allocator<int> > > >(std::pair<int const, std::vector<int, std::allocator<int> > >*) [173]
[191] 0.0 0.00 0.00 690 std::pair<int const, std::vector<int, std::allocator<int> > >::~pair() [191]
0.00 0.00 690/856 std::vector<int, std::allocator<int> >::~vector() [133]
-----------------------------------------------
0.00 0.00 690/690 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>* std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >::_M_allocate_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [194]
[192] 0.0 0.00 0.00 690 std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false>::_Hash_node() [192]
0.00 0.00 690/1396 std::__detail::_Hash_node_base::_Hash_node_base() [109]
-----------------------------------------------
0.00 0.00 690/690 main [6]
[193] 0.0 0.00 0.00 690 std::__detail::_Node_iterator<std::pair<int const, std::vector<int, std::allocator<int> > >, false, false>::operator++() [193]
0.00 0.00 690/690 std::__detail::_Node_iterator_base<std::pair<int const, std::vector<int, std::allocator<int> > >, false>::_M_incr() [197]
-----------------------------------------------
0.00 0.00 690/690 std::_Hashtable<int, std::pair<int const, std::vector<int, std::allocator<int> > >, std::allocator<std::pair<int const, std::vector<int, std::allocator<int> > > >, std::__detail::_Select1st, std::equal_to<int>, std::hash<int>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_Scoped_node::_Scoped_node<std::piecewise_construct_t const&, std::tuple<int const&>, std::tuple<> >(std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<int const, std::vector<int, std::allocator<int> > >, false> > >*, std::piecewise_construct_t const&, std::tuple<int const&>&&, std::tuple<>&&) [180]