-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparchis-test.prof
1679 lines (1672 loc) · 339 KB
/
parchis-test.prof
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
Fri Sep 1 04:43 2023 Time and Allocation Profiling Report (Final)
parchis-test +RTS -N -p -RTS
total time = 0.01 secs (19 ticks @ 1000 us, 8 processors)
total alloc = 1,319,616 bytes (excludes profiling overheads)
COST CENTRE MODULE SRC %time %alloc
MAIN MAIN <built-in> 68.4 11.1
CAF:main2 Main <no location info> 10.5 0.0
hSupportsANSI.isNotDumb System.Console.ANSI.Unix src/System/Console/ANSI/Unix.hs:85:3-65 5.3 13.7
runSequentially.signal Test.Hspec.Core.Runner.JobQueue src/Test/Hspec/Core/Runner/JobQueue.hs:84:5-40 5.3 0.0
writeChunk Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(268,1)-(277,26) 5.3 2.5
formatArg Test.Hspec.Core.Clock src/Test/Hspec/Core/Clock.hs:27:45-53 5.3 0.5
CAF GHC.IO.Handle.FD <entire-module> 0.0 2.6
CAF GHC.Float <entire-module> 0.0 3.5
hSetSGR System.Console.ANSI.Unix src/System/Console/ANSI/Unix.hs:67:1-44 0.0 1.3
withAsyncUsing.\.\ Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:(341,22)-(348,12) 0.0 2.2
writeTransient Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(250,1)-(256,54) 0.0 1.7
writeChunk.plainOutput Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:271:5-34 0.0 5.2
splitLines Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(263,1)-(265,25) 0.0 12.2
readLocalConfigFile Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:(157,1)-(161,37) 0.0 3.1
readConfig Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:(123,1)-(136,17) 0.0 16.2
defaultFooter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(394,1)-(414,26) 0.0 1.0
checks.writeResult Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(177,5)-(190,48) 0.0 1.9
checks.\ Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(158,53)-(159,68) 0.0 1.5
individual inherited
COST CENTRE MODULE SRC no. entries %time %alloc %time %alloc
MAIN MAIN <built-in> 3003 0 68.4 11.1 100.0 100.0
CAF System.Directory.Internal.Posix <entire-module> 4487 0 0.0 0.0 0.0 0.0
CAF System.FilePath.Posix <entire-module> 4468 0 0.0 0.0 0.0 0.0
CAF GHC.Conc.Signal <entire-module> 3120 0 0.0 0.0 0.0 0.0
CAF GHC.Float <entire-module> 3112 0 0.0 3.5 0.0 3.5
CAF GHC.IO.Encoding <entire-module> 3102 0 0.0 0.3 0.0 0.3
CAF GHC.IO.Encoding.Iconv <entire-module> 3100 0 0.0 0.0 0.0 0.0
CAF GHC.IO.Encoding.UTF8 <entire-module> 3095 0 0.0 0.0 0.0 0.0
CAF GHC.IO.Exception <entire-module> 3094 0 0.0 0.0 0.0 0.0
CAF GHC.IO.Handle.FD <entire-module> 3091 0 0.0 2.6 0.0 2.6
CAF GHC.Read <entire-module> 3073 0 0.0 0.0 0.0 0.0
CAF Text.Printf <entire-module> 3046 0 0.0 0.0 0.0 0.0
CAF GHC.Event.Thread <entire-module> 3024 0 0.0 0.1 0.0 0.1
CAF:$dMonoid_r1DYK Test.Hspec.Core.Runner <no location info> 5775 0 0.0 0.0 0.0 0.0
CAF:$fApplicativeFormatM1 Test.Hspec.Core.Formatters.Internal <no location info> 5044 0 0.0 0.0 0.0 0.0
<* Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:198:22-32 6791 1 0.0 0.0 0.0 0.0
CAF:$fApplicativeFormatM2 Test.Hspec.Core.Formatters.Internal <no location info> 5043 0 0.0 0.0 0.0 0.0
*> Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:198:22-32 6793 1 0.0 0.0 0.0 0.0
CAF:$fApplicativeFormatM3 Test.Hspec.Core.Formatters.Internal <no location info> 5042 0 0.0 0.0 0.0 0.0
liftA2 Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:198:22-32 7277 1 0.0 0.0 0.0 0.0
CAF:$fApplicativeFormatM4 Test.Hspec.Core.Formatters.Internal <no location info> 5041 0 0.0 0.0 0.0 0.0
<*> Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:198:22-32 7230 1 0.0 0.0 0.0 0.0
CAF:$fApplicativeFormatM5 Test.Hspec.Core.Formatters.Internal <no location info> 5040 0 0.0 0.0 0.0 0.0
pure Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:198:22-32 6856 1 0.0 0.0 0.0 0.0
CAF:$fApplicativeSpecM5 Test.Hspec.Core.Spec.Monad <no location info> 4796 0 0.0 0.0 0.0 0.0
CAF:$fFractionalSeconds1 Test.Hspec.Core.Clock <no location info> 5462 0 0.0 0.0 0.0 0.0
fromRational Test.Hspec.Core.Clock src/Test/Hspec/Core/Clock.hs:27:33-42 6357 1 0.0 0.0 0.0 0.0
CAF:$fFunctorAsync_$c<$ Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:246:10-22 4712 0 0.0 0.0 0.0 0.0
<$ Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:246:10-22 7352 1 0.0 0.0 0.0 0.0
CAF:$fFunctorFormatM2 Test.Hspec.Core.Formatters.Internal <no location info> 5038 0 0.0 0.0 0.0 0.0
fmap Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:198:13-19 7220 1 0.0 0.0 0.0 0.0
CAF:$fMonadFormatM1 Test.Hspec.Core.Formatters.Internal <no location info> 5047 0 0.0 0.0 0.0 0.0
return Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:198:35-39 6409 1 0.0 0.0 0.0 0.0
CAF:$fMonadFormatM2 Test.Hspec.Core.Formatters.Internal <no location info> 5046 0 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:198:35-39 6395 1 0.0 0.0 0.0 0.0
CAF:$fMonadFormatM3 Test.Hspec.Core.Formatters.Internal <no location info> 5045 0 0.0 0.0 0.0 0.0
>>= Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:198:35-39 6370 1 0.0 0.0 0.0 0.0
CAF:$fMonadIOFormatM1 Test.Hspec.Core.Formatters.Internal <no location info> 5039 0 0.0 0.0 0.0 0.0
liftIO Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:198:42-48 6373 1 0.0 0.0 0.0 0.0
CAF:$fMonadSpecM3 Test.Hspec.Core.Spec.Monad <no location info> 4797 0 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6018 1 0.0 0.0 0.0 0.0
CAF:$fMonadSpecM4 Test.Hspec.Core.Spec.Monad <no location info> 4795 0 0.0 0.0 0.0 0.0
CAF:$fNumSeconds6 Test.Hspec.Core.Clock <no location info> 5477 0 0.0 0.0 0.0 0.0
- Test.Hspec.Core.Clock src/Test/Hspec/Core/Clock.hs:27:28-30 7261 1 0.0 0.0 0.0 0.0
CAF:$fPrintfArgSeconds1 Test.Hspec.Core.Clock <no location info> 5460 0 0.0 0.0 0.0 0.0
parseFormat Test.Hspec.Core.Clock src/Test/Hspec/Core/Clock.hs:27:45-53 7259 1 0.0 0.0 0.0 0.0
CAF:$fPrintfArgSeconds2 Test.Hspec.Core.Clock <no location info> 5461 0 0.0 0.0 0.0 0.0
formatArg Test.Hspec.Core.Clock src/Test/Hspec/Core/Clock.hs:27:45-53 7257 1 0.0 0.0 0.0 0.0
CAF:$fRandomGenQCGen2 Test.QuickCheck.Random <no location info> 3463 0 0.0 0.0 0.0 0.0
genWord64 Test.QuickCheck.Random src/Test/QuickCheck/Random.hs:47:3-33 7411 0 0.0 0.0 0.0 0.0
genWord64 System.Random.Internal src/System/Random/Internal.hs:566:3-27 7412 1 0.0 0.0 0.0 0.0
CAF:$fRandomGenQCGen_$cgenWord64 Test.QuickCheck.Random src/Test/QuickCheck/Random.hs:47:3-11 3464 0 0.0 0.0 0.0 0.0
genWord64 Test.QuickCheck.Random src/Test/QuickCheck/Random.hs:47:3-33 7409 1 0.0 0.0 0.0 0.0
CAF:$fRandomGenStdGen6 System.Random.Internal <no location info> 3429 0 0.0 0.0 0.0 0.0
genWord64 System.Random.Internal src/System/Random/Internal.hs:556:19-27 6656 1 0.0 0.0 0.0 0.0
genWord64 System.Random.Internal src/System/Random/Internal.hs:566:3-27 6657 1 0.0 0.0 0.0 0.0
CAF:$fShowFailureReport_$cshow Test.Hspec.Core.FailureReport src/Test/Hspec/Core/FailureReport.hs:26:17-20 5183 0 0.0 0.0 0.0 0.0
show Test.Hspec.Core.FailureReport src/Test/Hspec/Core/FailureReport.hs:26:17-20 7388 1 0.0 0.0 0.0 0.0
CAF:a_rZpO Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:163:18 5636 0 0.0 0.0 0.0 0.0
CAF:after_r1DZz Test.Hspec.Core.Runner <no location info> 5799 0 0.0 0.0 0.0 0.0
runSpecForest_ Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(322,1)-(377,16) 7371 0 0.0 0.0 0.0 0.0
withHiddenCursor Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(442,1)-(444,70) 7372 0 0.0 0.0 0.0 0.0
hShowCursor System.Console.ANSI.Unix src/System/Console/ANSI/Unix.hs:70:1-40 7373 1 0.0 0.0 0.0 0.0
CAF:applyCleanup_r1rBM Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:176:1-12 4862 0 0.0 0.0 0.0 0.0
applyCleanup Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:(176,1)-(181,22) 6434 1 0.0 0.0 0.0 0.0
CAF:async1 Control.Concurrent.Async <no location info> 4721 0 0.0 0.0 0.0 0.0
async Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:260:1-35 6312 1 0.0 0.0 0.0 0.0
asyncUsing Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:(285,1)-(291,35) 6313 1 0.0 0.0 0.0 0.0
CAF:catchAll_r4T3 Control.Concurrent.Async <no location info> 4718 0 0.0 0.0 0.0 0.0
catchAll Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:947:1-16 6613 1 0.0 0.0 0.0 0.0
CAF:checks Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:154:1-6 5647 0 0.0 0.0 0.0 0.0
checks Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(154,1)-(194,54) 6306 1 0.0 0.0 0.0 0.0
CAF:checks3 Test.Hspec.Core.Formatters.V2 <no location info> 5635 0 0.0 0.0 0.0 0.0
CAF:commandLineOnlyOptions Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:394:1-22 5371 0 0.0 0.0 0.0 0.0
commandLineOnlyOptions Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:(394,1)-(400,71) 6120 1 0.0 0.0 0.0 0.0
CAF:configQuickCheckArgs1 Test.Hspec.Core.Config <no location info> 5452 0 0.0 0.0 0.0 0.0
configQuickCheckArgs Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:(76,1)-(98,72) 7470 0 0.0 0.0 0.0 0.0
configQuickCheckArgs.qcArgs Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:(78,5)-(83,99) 7471 0 0.0 0.0 0.0 0.0
paramsQuickCheckArgs Test.Hspec.Core.Example src/Test/Hspec/Core/Example.hs:54:3-22 7472 0 0.0 0.0 0.0 0.0
CAF:countEvalItems_r1DZa Test.Hspec.Core.Runner <no location info> 5791 0 0.0 0.0 0.0 0.0
countEvalItems Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:509:1-59 6206 1 0.0 0.0 0.0 0.0
CAF:defaultConfig Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:38:1-13 5451 0 0.0 0.0 0.0 0.0
defaultConfig Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:(38,1)-(44,3) 6104 1 0.0 0.0 0.0 0.0
mkDefaultConfig Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:(92,1)-(127,1) 6105 1 0.0 0.0 0.0 0.0
CAF:defaultParams Test.Hspec.Core.Example src/Test/Hspec/Core/Example.hs:59:1-13 5222 0 0.0 0.0 0.0 0.0
defaultParams Test.Hspec.Core.Example src/Test/Hspec/Core/Example.hs:(59,1)-(62,1) 7473 1 0.0 0.0 0.0 0.0
CAF:doNotLeakCommandLineArgumentsToExamples_r1DYM Test.Hspec.Core.Runner <no location info> 5781 0 0.0 0.0 0.0 0.0
doNotLeakCommandLineArgumentsToExamples Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:439:1-53 6141 1 0.0 0.0 0.0 0.0
CAF:envVarName Test.Hspec.Core.Config.Options src/Test/Hspec/Core/Config/Options.hs:23:1-10 5228 0 0.0 0.0 0.0 0.0
envVarName Test.Hspec.Core.Config.Options src/Test/Hspec/Core/Config/Options.hs:23:1-28 6116 1 0.0 0.0 0.0 0.0
CAF:filterForest Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:61:1-12 4778 0 0.0 0.0 0.0 0.0
filterForest Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:61:1-45 6223 1 0.0 0.0 0.0 0.0
CAF:filterForestWithLabels Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:67:1-22 4777 0 0.0 0.0 0.0 0.0
filterForestWithLabels Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:67:1-41 6215 1 0.0 0.0 0.0 0.0
filterForest_ Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:70:1-52 6216 1 0.0 0.0 0.0 0.0
CAF:focusForest1 Test.Hspec.Core.Spec <no location info> 5839 0 0.0 0.0 0.0 0.0
focusForest Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:(152,1)-(154,73) 6266 0 0.0 0.0 0.0 0.0
bimapForest Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:47:1-37 6267 0 0.0 0.0 0.0 0.0
bimapTree Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(50,1)-(55,32) 6268 1 0.0 0.0 0.0 0.0
CAF:foldSpec_r1sPt Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:242:5-12 4864 0 0.0 0.0 0.0 0.0
runFormatter Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:(125,1)-(161,46) 6436 0 0.0 0.0 0.0 0.0
runFormatter.\ Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:(126,63)-(149,16) 6437 0 0.0 0.0 0.0 0.0
runFormatter.\.\ Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:(127,33)-(149,16) 6438 0 0.0 0.0 0.0 0.0
runFormatter.\.\.formatItems Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:142:9-56 6439 0 0.0 0.0 0.0 0.0
eval Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:(237,1)-(257,36) 6440 0 0.0 0.0 0.0 0.0
eval.foldSpec Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:(242,5)-(247,5) 6441 1 0.0 0.0 0.0 0.0
foldTree Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:(267,1)-(279,55) 6442 1 0.0 0.0 0.0 0.0
CAF:fromSpecList1 Test.Hspec.Core.Spec.Monad <no location info> 4810 0 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:58:1-42 6037 1 0.0 0.0 0.0 0.0
CAF:fromSpecList2 Test.Hspec.Core.Spec.Monad <no location info> 4809 0 0.0 0.0 0.0 0.0
fromSpecForest Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:54:1-29 6039 1 0.0 0.0 0.0 0.0
CAF:getCPUTime1 Test.Hspec.Core.Formatters.Internal <no location info> 5082 0 0.0 0.0 0.0 0.0
getCPUTime Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(351,1)-(356,69) 7240 1 0.0 0.0 0.0 0.0
CAF:getCPUTime6 Test.Hspec.Core.Formatters.Internal <no location info> 5080 0 0.0 0.0 0.0 0.0
getCPUTime Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(351,1)-(356,69) 7242 0 0.0 0.0 0.0 0.0
CAF:getDefaultConcurrentJobs1 Test.Hspec.Core.Compat <no location info> 5458 0 0.0 0.0 0.0 0.0
getDefaultConcurrentJobs Test.Hspec.Core.Compat src/Test/Hspec/Core/Compat.hs:156:1-45 6295 1 0.0 0.0 0.0 0.0
CAF:getFailCount1 Test.Hspec.Core.Formatters.Internal <no location info> 5072 0 0.0 0.0 0.0 0.0
getFailCount Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:109:1-41 7266 1 0.0 0.0 0.0 0.0
CAF:getFailCount2 Test.Hspec.Core.Formatters.Internal <no location info> 5070 0 0.0 0.0 0.0 0.0
getFailMessages Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:240:1-55 7219 1 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(167,1)-(168,36) 7222 1 0.0 0.0 0.0 0.0
CAF:getMonotonicTime1 Test.Hspec.Core.Clock <no location info> 5487 0 0.0 0.0 0.0 0.0
getMonotonicTime Test.Hspec.Core.Clock src/Test/Hspec/Core/Clock.hs:37:1-51 6359 1 0.0 0.0 0.0 0.0
CAF:getPendingCount1 Test.Hspec.Core.Formatters.Internal <no location info> 5068 0 0.0 0.0 0.0 0.0
getPendingCount Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:236:1-40 7270 1 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(167,1)-(168,36) 7271 1 0.0 0.0 0.0 0.0
CAF:getRealTime1 Test.Hspec.Core.Formatters.Internal <no location info> 5085 0 0.0 0.0 0.0 0.0
getRealTime Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(360,1)-(363,18) 7233 1 0.0 0.0 0.0 0.0
CAF:getRealTime4 Test.Hspec.Core.Formatters.Internal <no location info> 5084 0 0.0 0.0 0.0 0.0
getRealTime Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(360,1)-(363,18) 7235 0 0.0 0.0 0.0 0.0
CAF:getSuccessCount1 Test.Hspec.Core.Formatters.Internal <no location info> 5066 0 0.0 0.0 0.0 0.0
getSuccessCount Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:232:1-40 7279 1 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(167,1)-(168,36) 7280 1 0.0 0.0 0.0 0.0
CAF:getTotalCount1 Test.Hspec.Core.Formatters.Internal <no location info> 5091 0 0.0 0.0 0.0 0.0
getTotalCount Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:163:1-81 7274 1 0.0 0.0 0.0 0.0
CAF:getTotalCount2 Test.Hspec.Core.Formatters.Internal <no location info> 5090 0 0.0 0.0 0.0 0.0
getTotalCount Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:163:1-81 7276 0 0.0 0.0 0.0 0.0
CAF:getTotalCount3 Test.Hspec.Core.Formatters.Internal <no location info> 5089 0 0.0 0.0 0.0 0.0
getTotalCount Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:163:1-81 7283 0 0.0 0.0 0.0 0.0
CAF:getTotalCount4 Test.Hspec.Core.Formatters.Internal <no location info> 5088 0 0.0 0.0 0.0 0.0
getTotalCount Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:163:1-81 7287 0 0.0 0.0 0.0 0.0
CAF:getTotalCount5 Test.Hspec.Core.Formatters.Internal <no location info> 5087 0 0.0 0.0 0.0 0.0
getTotalCount Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:163:1-81 7290 0 0.0 0.0 0.0 0.0
CAF:goldenGamma System.Random.SplitMix src/System/Random/SplitMix.hs:236:1-11 3253 0 0.0 0.0 0.0 0.0
goldenGamma System.Random.SplitMix src/System/Random/SplitMix.hs:236:1-32 6187 1 0.0 0.0 0.0 0.0
CAF:groupDone_r1rBK Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:112:1-9 4859 0 0.0 0.0 0.0 0.0
groupDone Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:112:1-42 6860 1 0.0 0.0 0.0 0.0
CAF:groupStarted_r1rBJ Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:109:1-12 4858 0 0.0 0.0 0.0 0.0
groupStarted Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:109:1-48 6454 1 0.0 0.0 0.0 0.0
CAF:hSupportsANSI2 System.Console.ANSI.Unix <no location info> 4407 0 0.0 0.0 0.0 0.0
CAF:hSupportsANSI4 System.Console.ANSI.Unix <no location info> 4406 0 0.0 0.0 0.0 0.0
CAF:hideCursorCode System.Console.ANSI.Codes src/System/Console/ANSI/Codes.hs:255:1-14 4463 0 0.0 0.0 0.0 0.0
hideCursorCode System.Console.ANSI.Codes src/System/Console/ANSI/Codes.hs:255:1-30 6301 1 0.0 0.0 0.0 0.0
csi System.Console.ANSI.Codes src/System/Console/ANSI/Codes.hs:95:1-66 6302 1 0.0 0.0 0.0 0.0
CAF:hideCursorCode1 System.Console.ANSI.Codes <no location info> 4462 0 0.0 0.0 0.0 0.0
CAF:hspec1 Test.Hspec.Core.Runner <no location info> 5810 0 0.0 0.0 0.0 0.0
hspec Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:168:1-31 6007 1 0.0 0.0 0.0 0.0
hspecWith Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:196:1-68 6008 1 0.0 0.0 0.0 0.0
CAF:ignoreConfigFile20 Test.Hspec.Core.Config.Options <no location info> 5234 0 0.0 0.1 0.0 0.1
CAF:increaseSuccessCount_rULN Test.Hspec.Core.Formatters.Internal <no location info> 5048 0 0.0 0.0 0.0 0.0
increaseSuccessCount Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:224:1-88 6751 1 0.0 0.0 0.0 0.0
modify Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(172,1)-(173,37) 6752 1 0.0 0.0 0.0 0.0
CAF:initSMGen1 System.Random.SplitMix <no location info> 3254 0 0.0 0.0 0.0 0.0
initSMGen System.Random.SplitMix src/System/Random/SplitMix.hs:381:1-36 6157 1 0.0 0.0 0.0 0.0
CAF:initialBoard Lib src/Lib.hs:30:1-12 5857 0 0.0 0.0 0.0 0.0
initialBoard Lib src/Lib.hs:30:1-88 6946 1 0.0 0.0 0.0 0.0
CAF:initialPositions Lib src/Lib.hs:27:1-16 5856 0 0.0 0.0 0.0 0.0
initialPositions Lib src/Lib.hs:27:1-31 6950 1 0.0 0.0 0.0 0.0
CAF:initialSeed1 System.Random.SplitMix.Init <no location info> 3206 0 0.0 0.0 0.0 0.0
initialSeed System.Random.SplitMix.Init src/System/Random/SplitMix/Init.hs:40:1-26 6159 1 0.0 0.0 0.0 0.0
CAF:isTerminalDevice_r1DZb Test.Hspec.Core.Runner <no location info> 5792 0 0.0 0.0 0.0 0.0
runSpecForest_ Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(322,1)-(377,16) 6199 0 0.0 0.0 0.0 0.0
hSupportsANSI System.Console.ANSI.Unix src/System/Console/ANSI/Unix.hs:(82,1)-(85,65) 6200 1 0.0 0.0 0.0 0.0
CAF:lvl1_r1Boz Test.Hspec.Core.Config <no location info> 5453 0 0.0 0.0 0.0 0.0
CAF:lvl1_rULQ Test.Hspec.Core.Formatters.Internal <no location info> 5078 0 0.0 0.0 0.0 0.0
writeChunk Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(268,1)-(277,26) 6830 0 0.0 0.0 0.0 0.0
writeChunk.colorOutput Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:272:5-84 6831 0 0.0 0.0 0.0 0.0
hSetSGR System.Console.ANSI.Unix src/System/Console/ANSI/Unix.hs:67:1-44 6832 0 0.0 0.0 0.0 0.0
setSGRCode System.Console.ANSI.Codes src/System/Console/ANSI/Codes.hs:252:1-52 6833 0 0.0 0.0 0.0 0.0
sgrToCode System.Console.ANSI.Codes src/System/Console/ANSI/Codes.hs:(126,1)-(158,46) 6834 1 0.0 0.0 0.0 0.0
CAF:lvl22_r1sPr Test.Hspec.Core.Runner.Eval <no location info> 4863 0 0.0 0.0 0.0 0.0
runFormatter Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:(125,1)-(161,46) 6354 0 0.0 0.0 0.0 0.0
runFormatter.\ Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:(126,63)-(149,16) 6355 0 0.0 0.0 0.0 0.0
fromRational Test.Hspec.Core.Clock src/Test/Hspec/Core/Clock.hs:27:33-42 6358 0 0.0 0.0 0.0 0.0
CAF:lvl2_rULR Test.Hspec.Core.Formatters.Internal <no location info> 5079 0 0.0 0.0 0.0 0.0
writeChunk Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(268,1)-(277,26) 6825 0 0.0 0.0 0.0 0.0
writeChunk.colorOutput Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:272:5-84 6826 0 0.0 0.0 0.0 0.0
hSetSGR System.Console.ANSI.Unix src/System/Console/ANSI/Unix.hs:67:1-44 6827 0 0.0 0.0 0.0 0.0
setSGRCode System.Console.ANSI.Codes src/System/Console/ANSI/Codes.hs:252:1-52 6828 1 0.0 0.0 0.0 0.0
csi System.Console.ANSI.Codes src/System/Console/ANSI/Codes.hs:95:1-66 6829 1 0.0 0.0 0.0 0.0
CAF:lvl37_r1DZL Test.Hspec.Core.Runner <no location info> 5802 0 0.0 0.0 0.0 0.0
CAF:lvl41_r1DZQ Test.Hspec.Core.Runner <no location info> 5805 0 0.0 0.0 0.0 0.0
CAF:lvl42_rZpZ Test.Hspec.Core.Formatters.V2 <no location info> 5642 0 0.0 0.0 0.0 0.0
checks Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(154,1)-(194,54) 6853 0 0.0 0.0 0.0 0.0
checks.\ Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(161,56)-(172,104) 6854 0 0.0 0.0 0.0 0.0
pass Test.Hspec.Core.Compat src/Test/Hspec/Core/Compat.hs:194:1-14 6855 0 0.0 0.0 0.0 0.0
CAF:lvl43_r1DZS Test.Hspec.Core.Runner <no location info> 5806 0 0.0 0.1 0.0 0.1
CAF:lvl43_rZq1 Test.Hspec.Core.Formatters.V2 <no location info> 5644 0 0.0 0.0 0.0 0.0
CAF:lvl5_rULV Test.Hspec.Core.Formatters.Internal <no location info> 5093 0 0.0 0.0 0.0 0.0
formatterToFormat Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(91,1)-(105,84) 6310 0 0.0 0.0 0.0 0.0
monadic Test.Hspec.Core.Format src/Test/Hspec/Core/Format.hs:(75,1)-(113,21) 7337 0 0.0 0.0 0.0 0.0
monadic.go Test.Hspec.Core.Format src/Test/Hspec/Core/Format.hs:(92,5)-(99,12) 7338 0 0.0 0.0 0.0 0.0
pass Test.Hspec.Core.Compat src/Test/Hspec/Core/Compat.hs:194:1-14 7339 1 0.0 0.0 0.0 0.0
CAF:lvl8_r2LU Lib <no location info> 5877 0 0.0 0.0 0.0 0.0
moves Lib src/Lib.hs:(79,1)-(83,88) 7082 0 0.0 0.0 0.0 0.0
moves.steps Lib src/Lib.hs:(81,5)-(83,88) 7083 0 0.0 0.0 0.0 0.0
initMove Lib src/Lib.hs:56:1-23 7084 1 0.0 0.0 0.0 0.0
CAF:m1_r2LQ Lib <no location info> 5874 0 0.0 0.0 0.0 0.0
startingPlayer Lib src/Lib.hs:(44,1)-(47,50) 6648 0 0.0 0.0 0.0 0.0
startingPlayer.(...) Lib src/Lib.hs:47:5-50 6649 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:297:10-19 6650 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:235:3-43 6651 0 0.0 0.0 0.0 0.0
uniformRM System.Random.Internal src/System/Random/Internal.hs:742:3-85 6652 0 0.0 0.0 0.0 0.0
uniformM System.Random.Internal src/System/Random/Internal.hs:(746,3)-(750,59) 6653 0 0.0 0.0 0.0 0.0
uniformWord64 System.Random.Internal src/System/Random/Internal.hs:456:3-35 6654 1 0.0 0.0 0.0 0.0
CAF:m1_rBgR Test.Hspec.Core.QuickCheckUtil <no location info> 4879 0 0.0 0.0 0.0 0.0
newSeed Test.Hspec.Core.QuickCheckUtil src/Test/Hspec/Core/QuickCheckUtil.hs:(57,1)-(58,10) 7402 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:297:10-19 7403 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:235:3-43 7404 0 0.0 0.0 0.0 0.0
uniformRM System.Random.Internal src/System/Random/Internal.hs:742:3-85 7405 0 0.0 0.0 0.0 0.0
uniformM System.Random.Internal src/System/Random/Internal.hs:(746,3)-(750,59) 7406 0 0.0 0.0 0.0 0.0
uniformWord64 System.Random.Internal src/System/Random/Internal.hs:456:3-35 7407 1 0.0 0.0 0.0 0.0
CAF:m3_r2LS Lib <no location info> 5875 0 0.0 0.0 0.0 0.0
startingPlayer Lib src/Lib.hs:(44,1)-(47,50) 6640 0 0.0 0.0 0.0 0.0
startingPlayer.(...) Lib src/Lib.hs:47:5-50 6641 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:297:10-19 6642 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:235:3-43 6643 0 0.0 0.0 0.0 0.0
uniformRM System.Random.Internal src/System/Random/Internal.hs:742:3-85 6644 0 0.0 0.0 0.0 0.0
uniformM System.Random.Internal src/System/Random/Internal.hs:(746,3)-(750,59) 6645 1 0.0 0.0 0.0 0.0
CAF:m3_rBgT Test.Hspec.Core.QuickCheckUtil <no location info> 4880 0 0.0 0.0 0.0 0.0
newSeed Test.Hspec.Core.QuickCheckUtil src/Test/Hspec/Core/QuickCheckUtil.hs:(57,1)-(58,10) 7396 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:297:10-19 7397 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:235:3-43 7398 0 0.0 0.0 0.0 0.0
uniformRM System.Random.Internal src/System/Random/Internal.hs:742:3-85 7399 0 0.0 0.0 0.0 0.0
uniformM System.Random.Internal src/System/Random/Internal.hs:(746,3)-(750,59) 7400 1 0.0 0.0 0.0 0.0
CAF:main1 Main <no location info> 6004 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6006 1 0.0 0.0 0.0 0.0
CAF:main10 Main <no location info> 5995 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6261 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6262 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6263 1 0.0 0.0 0.0 0.0
CAF:main107 Main <no location info> 5966 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7039 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 7040 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 7041 0 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(138,5)-(140,21) 7042 1 0.0 0.0 0.0 0.0
CAF:main109 Main <no location info> 6000 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6069 0 0.0 0.0 0.0 0.0
describe Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:(97,1)-(99,49) 6070 1 0.0 0.0 0.0 0.0
specGroup Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(120,1)-(125,21) 6251 1 0.0 0.0 0.0 0.0
specGroup.msg Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(123,5)-(125,21) 7038 1 0.0 0.0 0.0 0.0
withEnv Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:90:1-60 6072 1 0.0 0.0 0.0 0.0
CAF:main110 Main <no location info> 5962 0 0.0 0.1 0.0 0.1
CAF:main118 Main <no location info> 5961 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6044 0 0.0 0.0 0.0 0.0
describe Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:(97,1)-(99,49) 6047 0 0.0 0.0 0.0 0.0
mapSpecForest Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:72:1-81 6051 1 0.0 0.0 0.0 0.0
withEnv Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:90:1-60 6049 0 0.0 0.0 0.0 0.0
unSpecM Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:45:29-35 6050 1 0.0 0.0 0.0 0.0
CAF:main119 Main <no location info> 5959 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6052 0 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6053 0 0.0 0.0 0.0 0.0
CAF:main120 Main <no location info> 5958 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6060 0 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6061 0 0.0 0.0 0.0 0.0
CAF:main121 Main <no location info> 5957 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6065 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6066 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:58:1-42 6067 0 0.0 0.0 0.0 0.0
CAF:main123 Main <no location info> 5956 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6248 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6249 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6250 1 0.0 0.0 0.0 0.0
CAF:main127 Main <no location info> 5950 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7011 0 0.0 0.0 0.0 0.0
move Lib src/Lib.hs:(95,1)-(105,32) 7012 3 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7013 3 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7017 3 0.0 0.0 0.0 0.0
move.replace Lib src/Lib.hs:(101,5)-(105,32) 7018 3 0.0 0.0 0.0 0.0
CAF:main138 Main <no location info> 5953 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6995 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6996 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6997 0 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(138,5)-(140,21) 6998 1 0.0 0.0 0.0 0.0
CAF:main140 Main <no location info> 5948 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6062 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6063 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:58:1-42 6064 0 0.0 0.0 0.0 0.0
CAF:main142 Main <no location info> 5947 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6245 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6246 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6247 1 0.0 0.0 0.0 0.0
CAF:main15 Main <no location info> 5989 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7152 0 0.0 0.0 0.0 0.0
move Lib src/Lib.hs:(95,1)-(105,32) 7153 3 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7154 3 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7155 3 0.0 0.0 0.0 0.0
move.replace Lib src/Lib.hs:(101,5)-(105,32) 7156 3 0.0 0.0 0.0 0.0
CAF:main156 Main <no location info> 5944 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6974 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6975 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6976 0 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(138,5)-(140,21) 6977 1 0.0 0.0 0.0 0.0
CAF:main158 Main <no location info> 5940 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6055 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6056 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:58:1-42 6057 0 0.0 0.0 0.0 0.0
CAF:main160 Main <no location info> 5939 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6242 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6243 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6244 1 0.0 0.0 0.0 0.0
CAF:main176 Main <no location info> 5936 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6928 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6929 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6930 0 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(138,5)-(140,21) 6931 1 0.0 0.0 0.0 0.0
CAF:main178 Main <no location info> 5960 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6045 0 0.0 0.0 0.0 0.0
describe Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:(97,1)-(99,49) 6046 1 0.0 0.0 0.0 0.0
specGroup Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(120,1)-(125,21) 6241 1 0.0 0.0 0.0 0.0
specGroup.msg Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(123,5)-(125,21) 6906 1 0.0 0.0 0.0 0.0
withEnv Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:90:1-60 6048 1 0.0 0.0 0.0 0.0
CAF:main179 Main <no location info> 5932 0 0.0 0.0 0.0 0.0
CAF:main183 Main <no location info> 5931 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6022 0 0.0 0.0 0.0 0.0
describe Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:(97,1)-(99,49) 6025 0 0.0 0.0 0.0 0.0
mapSpecForest Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:72:1-81 6031 1 0.0 0.0 0.0 0.0
withEnv Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:90:1-60 6027 0 0.0 0.0 0.0 0.0
unSpecM Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:45:29-35 6030 1 0.0 0.0 0.0 0.0
CAF:main184 Main <no location info> 5929 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6035 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6036 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:58:1-42 6038 0 0.0 0.0 0.0 0.0
CAF:main186 Main <no location info> 5928 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6237 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6238 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6239 1 0.0 0.0 0.0 0.0
CAF:main197 Main <no location info> 5925 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6558 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6559 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6560 0 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(138,5)-(140,21) 6561 1 0.0 0.0 0.0 0.0
CAF:main199 Main <no location info> 5930 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6023 0 0.0 0.0 0.0 0.0
describe Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:(97,1)-(99,49) 6024 1 0.0 0.0 0.0 0.0
specGroup Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(120,1)-(125,21) 6235 1 0.0 0.0 0.0 0.0
specGroup.msg Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(123,5)-(125,21) 6485 1 0.0 0.0 0.0 0.0
withEnv Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:90:1-60 6026 1 0.0 0.0 0.0 0.0
CAF:main2 Main <no location info> 6003 0 10.5 0.0 10.5 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6017 0 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6019 0 0.0 0.0 0.0 0.0
CAF:main200 Main <no location info> 5921 0 0.0 0.1 0.0 0.1
CAF:main3 Main <no location info> 6002 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6042 0 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6043 0 0.0 0.0 0.0 0.0
CAF:main4 Main <no location info> 6001 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6068 0 0.0 0.0 0.0 0.0
describe Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:(97,1)-(99,49) 6071 0 0.0 0.0 0.0 0.0
mapSpecForest Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:72:1-81 6075 1 0.0 0.0 0.0 0.0
withEnv Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:90:1-60 6073 0 0.0 0.0 0.0 0.0
unSpecM Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:45:29-35 6074 1 0.0 0.0 0.0 0.0
CAF:main47 Main <no location info> 5992 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7135 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 7136 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 7137 0 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(138,5)-(140,21) 7138 1 0.0 0.0 0.0 0.0
CAF:main49 Main <no location info> 5987 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6088 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6089 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:58:1-42 6090 0 0.0 0.0 0.0 0.0
CAF:main5 Main <no location info> 5999 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6076 0 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6077 0 0.0 0.0 0.0 0.0
CAF:main51 Main <no location info> 5986 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6258 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6259 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6260 1 0.0 0.0 0.0 0.0
CAF:main55 Main <no location info> 5980 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7104 0 0.0 0.0 0.0 0.0
move Lib src/Lib.hs:(95,1)-(105,32) 7105 2 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7106 2 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7107 2 0.0 0.0 0.0 0.0
move.replace Lib src/Lib.hs:(101,5)-(105,32) 7108 2 0.0 0.0 0.0 0.0
CAF:main6 Main <no location info> 5998 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6081 0 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6082 0 0.0 0.0 0.0 0.0
CAF:main7 Main <no location info> 5997 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6086 0 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6087 0 0.0 0.0 0.0 0.0
CAF:main73 Main <no location info> 5983 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7087 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 7088 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 7089 0 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(138,5)-(140,21) 7090 1 0.0 0.0 0.0 0.0
CAF:main75 Main <no location info> 5978 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6083 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6084 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:58:1-42 6085 0 0.0 0.0 0.0 0.0
CAF:main77 Main <no location info> 5977 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6255 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6256 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6257 1 0.0 0.0 0.0 0.0
CAF:main8 Main <no location info> 5996 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6091 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6092 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:58:1-42 6093 0 0.0 0.0 0.0 0.0
CAF:main91 Main <no location info> 5974 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7057 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 7058 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 7059 0 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(138,5)-(140,21) 7060 1 0.0 0.0 0.0 0.0
CAF:main93 Main <no location info> 5970 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6078 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6079 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:58:1-42 6080 0 0.0 0.0 0.0 0.0
CAF:main95 Main <no location info> 5969 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6252 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6253 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(129,1)-(140,21) 6254 1 0.0 0.0 0.0 0.0
CAF:main_eta Main <no location info> 5990 0 0.0 0.0 0.0 0.6
main Main test/Spec.hs:(7,1)-(34,140) 7145 0 0.0 0.0 0.0 0.6
moves Lib src/Lib.hs:(79,1)-(83,88) 7146 1 0.0 0.0 0.0 0.6
== Lib src/Lib.hs:22:69-70 7181 3 0.0 0.0 0.0 0.0
moves.steps Lib src/Lib.hs:(81,5)-(83,88) 7147 3 0.0 0.0 0.0 0.5
valid Lib src/Lib.hs:(86,1)-(89,79) 7167 4 0.0 0.1 0.0 0.4
valid.\ Lib src/Lib.hs:89:28-47 7170 17 0.0 0.0 0.0 0.3
piecesIn Lib src/Lib.hs:92:1-82 7171 17 0.0 0.0 0.0 0.3
piecesIn.\ Lib src/Lib.hs:92:41-72 7172 68 0.0 0.1 0.0 0.2
on Lib src/Lib.hs:(59,1)-(61,36) 7176 68 0.0 0.2 0.0 0.2
on.oneIfTrue Lib src/Lib.hs:61:5-36 7177 272 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 7173 68 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7174 119 0.0 0.0 0.0 0.0
blue Lib src/Lib.hs:32:59-62 7179 17 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7178 17 0.0 0.0 0.0 0.0
red Lib src/Lib.hs:32:21-23 7175 17 0.0 0.0 0.0 0.0
yellow Lib src/Lib.hs:32:78-83 7180 17 0.0 0.0 0.0 0.0
end Lib src/Lib.hs:22:41-43 7168 12 0.0 0.0 0.0 0.0
start Lib src/Lib.hs:22:27-31 7169 4 0.0 0.0 0.0 0.0
candidates Lib src/Lib.hs:(74,1)-(76,46) 7165 2 0.0 0.1 0.0 0.1
candidates.mov Lib src/Lib.hs:76:5-46 7166 8 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:22:69-70 7182 4 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 7159 2 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7160 3 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7161 2 0.0 0.0 0.0 0.0
home Lib src/Lib.hs:71:1-52 7148 1 0.0 0.0 0.0 0.0
on Lib src/Lib.hs:(59,1)-(61,36) 7157 1 0.0 0.0 0.0 0.0
on.oneIfTrue Lib src/Lib.hs:61:5-36 7158 4 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 7149 1 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7150 2 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7151 1 0.0 0.0 0.0 0.0
on Lib src/Lib.hs:(59,1)-(61,36) 7162 1 0.0 0.0 0.0 0.0
on.oneIfTrue Lib src/Lib.hs:61:5-36 7163 4 0.0 0.0 0.0 0.0
CAF:main_eta1 Main <no location info> 5991 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7141 0 0.0 0.0 0.0 0.0
shouldBe Test.Hspec.Expectations src/Test/Hspec/Expectations.hs:91:1-48 7142 1 0.0 0.0 0.0 0.0
@?= Test.HUnit.Base src/Test/HUnit/Base.hs:177:1-52 7143 1 0.0 0.0 0.0 0.0
assertEqual Test.HUnit.Lang src/Test/HUnit/Lang.hs:(72,1)-(80,27) 7144 1 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:22:69-70 7164 3 0.0 0.0 0.0 0.0
CAF:main_eta11 Main <no location info> 5971 0 0.0 0.3 0.0 0.3
CAF:main_eta12 Main <no location info> 5965 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7045 0 0.0 0.0 0.0 0.0
shouldBe Test.Hspec.Expectations src/Test/Hspec/Expectations.hs:91:1-48 7046 1 0.0 0.0 0.0 0.0
@?= Test.HUnit.Base src/Test/HUnit/Base.hs:177:1-52 7047 1 0.0 0.0 0.0 0.0
assertEqual Test.HUnit.Lang src/Test/HUnit/Lang.hs:(72,1)-(80,27) 7048 1 0.0 0.0 0.0 0.0
CAF:main_eta13 Main <no location info> 5964 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7049 0 0.0 0.0 0.0 0.0
moves Lib src/Lib.hs:(79,1)-(83,88) 7050 1 0.0 0.0 0.0 0.0
moves.steps Lib src/Lib.hs:(81,5)-(83,88) 7051 3 0.0 0.0 0.0 0.0
candidates Lib src/Lib.hs:(74,1)-(76,46) 7052 3 0.0 0.0 0.0 0.0
candidates.mov Lib src/Lib.hs:76:5-46 7056 12 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 7053 1 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7054 1 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7055 1 0.0 0.0 0.0 0.0
CAF:main_eta14 Main <no location info> 5963 0 0.0 0.2 0.0 0.2
CAF:main_eta15 Main <no location info> 5952 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7001 0 0.0 0.0 0.0 0.0
shouldBe Test.Hspec.Expectations src/Test/Hspec/Expectations.hs:91:1-48 7002 1 0.0 0.0 0.0 0.0
@?= Test.HUnit.Base src/Test/HUnit/Base.hs:177:1-52 7003 1 0.0 0.0 0.0 0.0
assertEqual Test.HUnit.Lang src/Test/HUnit/Lang.hs:(72,1)-(80,27) 7004 1 0.0 0.0 0.0 0.0
CAF:main_eta16 Main <no location info> 5951 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7005 0 0.0 0.0 0.0 0.0
piecesIn Lib src/Lib.hs:92:1-82 7006 1 0.0 0.0 0.0 0.0
piecesIn.\ Lib src/Lib.hs:92:41-72 7007 4 0.0 0.0 0.0 0.0
on Lib src/Lib.hs:(59,1)-(61,36) 7014 4 0.0 0.0 0.0 0.0
on.oneIfTrue Lib src/Lib.hs:61:5-36 7015 16 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 7008 4 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7009 7 0.0 0.0 0.0 0.0
blue Lib src/Lib.hs:32:59-62 7019 1 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7016 1 0.0 0.0 0.0 0.0
red Lib src/Lib.hs:32:21-23 7010 1 0.0 0.0 0.0 0.0
yellow Lib src/Lib.hs:32:78-83 7020 1 0.0 0.0 0.0 0.0
CAF:main_eta18 Main <no location info> 5949 0 0.0 0.2 0.0 0.2
CAF:main_eta19 Main <no location info> 5943 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6980 0 0.0 0.0 0.0 0.0
shouldBe Test.Hspec.Expectations src/Test/Hspec/Expectations.hs:91:1-48 6981 1 0.0 0.0 0.0 0.0
@?= Test.HUnit.Base src/Test/HUnit/Base.hs:177:1-52 6982 1 0.0 0.0 0.0 0.0
assertEqual Test.HUnit.Lang src/Test/HUnit/Lang.hs:(72,1)-(80,27) 6983 1 0.0 0.0 0.0 0.0
CAF:main_eta20 Main <no location info> 5942 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6984 0 0.0 0.0 0.0 0.0
move Lib src/Lib.hs:(95,1)-(105,32) 6985 2 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 6986 2 0.0 0.0 0.0 0.0
move.replace Lib src/Lib.hs:(101,5)-(105,32) 6992 2 0.0 0.0 0.0 0.0
red Lib src/Lib.hs:32:21-23 6991 2 0.0 0.0 0.0 0.0
home Lib src/Lib.hs:71:1-52 6987 1 0.0 0.0 0.0 0.0
on Lib src/Lib.hs:(59,1)-(61,36) 6993 1 0.0 0.0 0.0 0.0
on.oneIfTrue Lib src/Lib.hs:61:5-36 6994 4 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 6988 1 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 6989 1 0.0 0.0 0.0 0.0
red Lib src/Lib.hs:32:21-23 6990 1 0.0 0.0 0.0 0.0
CAF:main_eta21 Main <no location info> 5941 0 0.0 0.2 0.0 0.2
CAF:main_eta22 Main <no location info> 5935 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6941 0 0.0 0.0 0.0 0.0
shouldBe Test.Hspec.Expectations src/Test/Hspec/Expectations.hs:91:1-48 6942 1 0.0 0.0 0.0 0.0
@?= Test.HUnit.Base src/Test/HUnit/Base.hs:177:1-52 6943 1 0.0 0.0 0.0 0.0
assertEqual Test.HUnit.Lang src/Test/HUnit/Lang.hs:(72,1)-(80,27) 6944 1 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:32:115-116 6952 1 0.0 0.0 0.0 0.0
CAF:main_eta23 Main <no location info> 5934 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6945 0 0.0 0.0 0.0 0.0
move Lib src/Lib.hs:(95,1)-(105,32) 6947 2 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 6948 2 0.0 0.0 0.0 0.0
move.replace Lib src/Lib.hs:(101,5)-(105,32) 6951 2 0.0 0.0 0.0 0.0
red Lib src/Lib.hs:32:21-23 6949 2 0.0 0.0 0.0 0.0
CAF:main_eta25 Main <no location info> 5933 0 0.0 0.1 0.0 0.1
CAF:main_eta26 Main <no location info> 5924 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6623 0 0.0 0.0 0.0 0.0
shouldBe Test.Hspec.Expectations src/Test/Hspec/Expectations.hs:91:1-48 6624 1 0.0 0.0 0.0 0.0
@?= Test.HUnit.Base src/Test/HUnit/Base.hs:177:1-52 6625 1 0.0 0.0 0.0 0.0
assertEqual Test.HUnit.Lang src/Test/HUnit/Lang.hs:(72,1)-(80,27) 6626 1 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 6627 1 0.0 0.0 0.0 0.0
CAF:main_eta27 Main <no location info> 5923 0 0.0 0.0 0.0 0.1
main Main test/Spec.hs:(7,1)-(34,140) 6628 0 0.0 0.0 0.0 0.1
startingPlayer Lib src/Lib.hs:(44,1)-(47,50) 6629 1 0.0 0.0 0.0 0.1
startingPlayer.(...) Lib src/Lib.hs:47:5-50 6631 1 0.0 0.0 0.0 0.1
randomR System.Random src/System/Random.hs:297:10-19 6632 1 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:235:3-43 6633 1 0.0 0.0 0.0 0.0
uniformRM System.Random.Internal src/System/Random/Internal.hs:742:3-85 6634 1 0.0 0.0 0.0 0.0
uniformM System.Random.Internal src/System/Random/Internal.hs:(746,3)-(750,59) 6647 0 0.0 0.0 0.0 0.0
uniformWord64 System.Random.Internal src/System/Random/Internal.hs:456:3-35 6655 0 0.0 0.0 0.0 0.0
genWord64 System.Random.Internal src/System/Random/Internal.hs:556:19-27 6658 0 0.0 0.0 0.0 0.0
genWord64 System.Random.Internal src/System/Random/Internal.hs:566:3-27 6659 0 0.0 0.0 0.0 0.0
nextWord64 System.Random.SplitMix src/System/Random/SplitMix.hs:(121,1)-(123,29) 6689 1 0.0 0.0 0.0 0.0
mix64 System.Random.SplitMix src/System/Random/SplitMix.hs:(247,1)-(252,9) 6690 1 0.0 0.0 0.0 0.0
mix64.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:249:9-54 6695 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 6696 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6698 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6697 0 0.0 0.0 0.0 0.0
mix64.z2 System.Random.SplitMix src/System/Random/SplitMix.hs:250:9-54 6691 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 6692 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6694 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6693 0 0.0 0.0 0.0 0.0
mix64.z3 System.Random.SplitMix src/System/Random/SplitMix.hs:251:9-27 6701 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6702 1 0.0 0.0 0.0 0.0
nextWord64.seed' System.Random.SplitMix src/System/Random/SplitMix.hs:123:5-29 6699 1 0.0 0.0 0.0 0.0
plus System.Random.SplitMix src/System/Random/SplitMix.hs:398:1-10 6700 0 0.0 0.0 0.0 0.0
mkStdGen System.Random.Internal src/System/Random/Internal.hs:583:1-45 6661 0 0.0 0.0 0.0 0.0
mkSMGen System.Random.SplitMix src/System/Random/SplitMix.hs:377:1-61 6662 1 0.0 0.0 0.0 0.0
mix64 System.Random.SplitMix src/System/Random/SplitMix.hs:(247,1)-(252,9) 6663 1 0.0 0.0 0.0 0.0
mix64.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:249:9-54 6668 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 6669 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6671 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6670 0 0.0 0.0 0.0 0.0
mix64.z2 System.Random.SplitMix src/System/Random/SplitMix.hs:250:9-54 6664 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 6665 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6667 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6666 0 0.0 0.0 0.0 0.0
mix64.z3 System.Random.SplitMix src/System/Random/SplitMix.hs:251:9-27 6672 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6673 1 0.0 0.0 0.0 0.0
mixGamma System.Random.SplitMix src/System/Random/SplitMix.hs:(267,1)-(274,40) 6674 1 0.0 0.0 0.0 0.0
mixGamma.n System.Random.SplitMix src/System/Random/SplitMix.hs:269:9-48 6675 1 0.0 0.0 0.0 0.0
mixGamma.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:268:9-36 6676 1 0.0 0.0 0.0 0.0
mix64variant13 System.Random.SplitMix src/System/Random/SplitMix.hs:(256,1)-(264,9) 6677 1 0.0 0.0 0.0 0.0
mix64variant13.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:261:9-54 6682 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 6683 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6685 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6684 0 0.0 0.0 0.0 0.0
mix64variant13.z2 System.Random.SplitMix src/System/Random/SplitMix.hs:262:9-54 6678 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 6679 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6681 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6680 0 0.0 0.0 0.0 0.0
mix64variant13.z3 System.Random.SplitMix src/System/Random/SplitMix.hs:263:9-27 6687 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6688 1 0.0 0.0 0.0 0.0
plus System.Random.SplitMix src/System/Random/SplitMix.hs:398:1-10 6686 0 0.0 0.0 0.0 0.0
startingPlayer.rand Lib src/Lib.hs:47:5-50 6630 1 0.0 0.0 0.0 0.0
CAF:main_eta28 Main <no location info> 5922 0 0.0 0.1 0.0 0.1
CAF:main_eta3 Main <no location info> 5988 0 0.0 0.2 0.0 0.2
CAF:main_eta4 Main <no location info> 5982 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7093 0 0.0 0.0 0.0 0.0
shouldBe Test.Hspec.Expectations src/Test/Hspec/Expectations.hs:91:1-48 7094 1 0.0 0.0 0.0 0.0
@?= Test.HUnit.Base src/Test/HUnit/Base.hs:177:1-52 7095 1 0.0 0.0 0.0 0.0
assertEqual Test.HUnit.Lang src/Test/HUnit/Lang.hs:(72,1)-(80,27) 7096 1 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:22:69-70 7132 3 0.0 0.0 0.0 0.0
CAF:main_eta5 Main <no location info> 5981 0 0.0 0.0 0.0 0.6
main Main test/Spec.hs:(7,1)-(34,140) 7097 0 0.0 0.0 0.0 0.6
moves Lib src/Lib.hs:(79,1)-(83,88) 7098 1 0.0 0.0 0.0 0.5
== Lib src/Lib.hs:22:69-70 7134 3 0.0 0.0 0.0 0.0
moves.steps Lib src/Lib.hs:(81,5)-(83,88) 7099 3 0.0 0.0 0.0 0.5
candidates Lib src/Lib.hs:(74,1)-(76,46) 7116 3 0.0 0.1 0.0 0.1
candidates.mov Lib src/Lib.hs:76:5-46 7117 12 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:22:69-70 7133 3 0.0 0.0 0.0 0.0
valid Lib src/Lib.hs:(86,1)-(89,79) 7118 3 0.0 0.1 0.0 0.4
valid.\ Lib src/Lib.hs:89:28-47 7121 16 0.0 0.0 0.0 0.3
piecesIn Lib src/Lib.hs:92:1-82 7122 16 0.0 0.0 0.0 0.3
piecesIn.\ Lib src/Lib.hs:92:41-72 7123 64 0.0 0.1 0.0 0.2
on Lib src/Lib.hs:(59,1)-(61,36) 7127 64 0.0 0.2 0.0 0.2
on.oneIfTrue Lib src/Lib.hs:61:5-36 7128 256 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 7124 64 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7125 112 0.0 0.0 0.0 0.0
blue Lib src/Lib.hs:32:59-62 7130 16 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7129 16 0.0 0.0 0.0 0.0
red Lib src/Lib.hs:32:21-23 7126 16 0.0 0.0 0.0 0.0
yellow Lib src/Lib.hs:32:78-83 7131 16 0.0 0.0 0.0 0.0
end Lib src/Lib.hs:22:41-43 7119 9 0.0 0.0 0.0 0.0
start Lib src/Lib.hs:22:27-31 7120 3 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 7111 2 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7112 3 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7113 2 0.0 0.0 0.0 0.0
home Lib src/Lib.hs:71:1-52 7100 1 0.0 0.0 0.0 0.0
on Lib src/Lib.hs:(59,1)-(61,36) 7109 1 0.0 0.0 0.0 0.0
on.oneIfTrue Lib src/Lib.hs:61:5-36 7110 4 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 7101 1 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7102 2 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7103 1 0.0 0.0 0.0 0.0
on Lib src/Lib.hs:(59,1)-(61,36) 7114 1 0.0 0.0 0.0 0.0
on.oneIfTrue Lib src/Lib.hs:61:5-36 7115 4 0.0 0.0 0.0 0.0
CAF:main_eta7 Main <no location info> 5979 0 0.0 0.4 0.0 0.4
CAF:main_eta8 Main <no location info> 5973 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 7063 0 0.0 0.0 0.0 0.0
shouldBe Test.Hspec.Expectations src/Test/Hspec/Expectations.hs:91:1-48 7064 1 0.0 0.0 0.0 0.0
@?= Test.HUnit.Base src/Test/HUnit/Base.hs:177:1-52 7065 1 0.0 0.0 0.0 0.0
assertEqual Test.HUnit.Lang src/Test/HUnit/Lang.hs:(72,1)-(80,27) 7066 1 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:22:69-70 7081 1 0.0 0.0 0.0 0.0
CAF:main_eta9 Main <no location info> 5972 0 0.0 0.0 0.0 0.1
main Main test/Spec.hs:(7,1)-(34,140) 7067 0 0.0 0.0 0.0 0.1
moves Lib src/Lib.hs:(79,1)-(83,88) 7068 1 0.0 0.0 0.0 0.0
moves.steps Lib src/Lib.hs:(81,5)-(83,88) 7069 3 0.0 0.0 0.0 0.0
candidates Lib src/Lib.hs:(74,1)-(76,46) 7085 2 0.0 0.0 0.0 0.0
candidates.mov Lib src/Lib.hs:76:5-46 7086 8 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 7076 2 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7077 3 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7078 2 0.0 0.0 0.0 0.0
home Lib src/Lib.hs:71:1-52 7070 1 0.0 0.0 0.0 0.0
on Lib src/Lib.hs:(59,1)-(61,36) 7074 1 0.0 0.0 0.0 0.0
on.oneIfTrue Lib src/Lib.hs:61:5-36 7075 4 0.0 0.0 0.0 0.0
playerPieces Lib src/Lib.hs:(64,1)-(68,28) 7071 1 0.0 0.0 0.0 0.0
== Lib src/Lib.hs:20:59-60 7072 2 0.0 0.0 0.0 0.0
green Lib src/Lib.hs:32:39-43 7073 1 0.0 0.0 0.0 0.0
on Lib src/Lib.hs:(59,1)-(61,36) 7079 1 0.0 0.0 0.0 0.0
on.oneIfTrue Lib src/Lib.hs:61:5-36 7080 4 0.0 0.0 0.0 0.0
CAF:mask_r2LN Lib <no location info> 5872 0 0.0 0.0 0.0 0.0
startingPlayer Lib src/Lib.hs:(44,1)-(47,50) 6703 0 0.0 0.0 0.0 0.0
startingPlayer.(...) Lib src/Lib.hs:47:5-50 6704 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:297:10-19 6705 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:235:3-43 6706 0 0.0 0.0 0.0 0.0
uniformRM System.Random.Internal src/System/Random/Internal.hs:742:3-85 6707 0 0.0 0.0 0.0 0.0
CAF:mkStdGen1 System.Random.Internal <no location info> 3420 0 0.0 0.0 0.0 0.0
mkStdGen System.Random.Internal src/System/Random/Internal.hs:583:1-45 6660 1 0.0 0.0 0.0 0.0
CAF:mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-4 3249 0 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6164 1 0.0 0.0 0.0 0.0
CAF:newQCGen1 Test.QuickCheck.Random <no location info> 3467 0 0.0 0.0 0.0 0.0
newQCGen Test.QuickCheck.Random src/Test/QuickCheck/Random.hs:68:1-30 6152 1 0.0 0.0 0.0 0.0
CAF:newSMGen1 System.Random.SplitMix <no location info> 3257 0 0.0 0.0 0.0 0.0
newSMGen System.Random.SplitMix src/System/Random/SplitMix.hs:385:1-48 6154 1 0.0 0.0 0.0 0.0
CAF:newSeed1 Test.Hspec.Core.QuickCheckUtil <no location info> 4881 0 0.0 0.0 0.0 0.0
newSeed Test.Hspec.Core.QuickCheckUtil src/Test/Hspec/Core/QuickCheckUtil.hs:(57,1)-(58,10) 6150 1 0.0 0.0 0.0 0.0
CAF:noColor_r1DZM Test.Hspec.Core.Runner <no location info> 5803 0 0.0 0.0 0.0 0.0
runSpecForest_ Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(322,1)-(377,16) 6195 0 0.0 0.0 0.0 0.0
colorOutputSupported Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(463,1)-(486,51) 6196 0 0.0 0.0 0.0 0.0
colorOutputSupported.noColor Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:486:5-51 6197 1 0.0 0.0 0.0 0.0
CAF:outputUnicode1 Test.Hspec.Core.Formatters.Internal <no location info> 5054 0 0.0 0.0 0.0 0.0
outputUnicode Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:150:1-51 6758 1 0.0 0.0 0.0 0.0
getConfig Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:186:1-36 6759 1 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(167,1)-(168,36) 6760 1 0.0 0.0 0.0 0.0
CAF:parseOptions6 Test.Hspec.Core.Config.Options <no location info> 5235 0 0.0 0.0 0.0 0.0
CAF:players Lib src/Lib.hs:35:1-7 5858 0 0.0 0.0 0.0 0.0
players Lib src/Lib.hs:35:1-36 6639 1 0.0 0.0 0.0 0.0
CAF:pluralize3 Test.Hspec.Core.Util <no location info> 5553 0 0.0 0.0 0.0 0.0
CAF:plus System.Random.SplitMix src/System/Random/SplitMix.hs:398:1-4 3248 0 0.0 0.0 0.0 0.0
plus System.Random.SplitMix src/System/Random/SplitMix.hs:398:1-10 6185 1 0.0 0.0 0.0 0.0
CAF:printTimes1 Test.Hspec.Core.Formatters.Internal <no location info> 5074 0 0.0 0.0 0.0 0.0
printTimes Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:159:1-56 6765 1 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(167,1)-(168,36) 6766 1 0.0 0.0 0.0 0.0
CAF:pruneForest_r1CDr Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:402:1-11 5789 0 0.0 0.0 0.0 0.0
pruneForest Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:402:1-32 6210 1 0.0 0.0 0.0 0.0
CAF:quickCheckOptions Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:255:1-17 5302 0 0.0 0.0 0.0 0.0
quickCheckOptions Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:(255,1)-(264,3) 6124 1 0.0 0.0 0.0 0.0
CAF:readConfig2 Test.Hspec.Core.Config <no location info> 5457 0 0.0 0.0 0.0 0.0
readConfigFiles Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:(144,1)-(147,36) 6106 1 0.0 0.0 0.0 0.0
CAF:readConfig3 Test.Hspec.Core.Config <no location info> 5454 0 0.0 0.0 0.0 0.0
readLocalConfigFile Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:(157,1)-(161,37) 6111 1 0.0 0.0 0.0 0.0
CAF:readConfig7 Test.Hspec.Core.Config <no location info> 5456 0 0.0 0.0 0.0 0.0
readGlobalConfigFile Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:(150,1)-(154,52) 6108 1 0.0 0.0 0.0 0.0
CAF:readConfig_ipv1 Test.Hspec.Core.Config <no location info> 5455 0 0.0 0.0 0.0 0.0
CAF:readFailureReport8 Test.Hspec.Core.FailureReport <no location info> 5185 0 0.0 0.1 0.0 0.1
CAF:reportItemStarted_r1rBG Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:86:1-17 4857 0 0.0 0.0 0.0 0.0
reportItemStarted Test.Hspec.Core.Runner.Eval src/Test/Hspec/Core/Runner/Eval.hs:86:1-52 6511 1 0.0 0.0 0.0 0.0
CAF:runSpecM1 Test.Hspec.Core.Spec.Monad <no location info> 4807 0 0.0 0.0 0.0 0.0
runSpecM Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:50:1-59 6014 1 0.0 0.0 0.0 0.0
CAF:runnerOptions Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:310:1-13 5438 0 0.0 0.0 0.0 0.0
runnerOptions Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:(310,1)-(391,73) 6122 1 0.0 0.0 0.0 0.0
CAF:setSGRCode1 System.Console.ANSI.Codes <no location info> 4466 0 0.0 0.0 0.0 0.0
CAF:showCursorCode System.Console.ANSI.Codes src/System/Console/ANSI/Codes.hs:256:1-14 4465 0 0.0 0.0 0.0 0.0
showCursorCode System.Console.ANSI.Codes src/System/Console/ANSI/Codes.hs:256:1-30 7375 1 0.0 0.0 0.0 0.0
csi System.Console.ANSI.Codes src/System/Console/ANSI/Codes.hs:95:1-66 7376 1 0.0 0.0 0.0 0.0
CAF:showCursorCode1 System.Console.ANSI.Codes <no location info> 4464 0 0.0 0.0 0.0 0.0
CAF:silent Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:143:1-6 5567 0 0.0 0.0 0.0 0.0
silent Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(143,1)-(151,1) 6308 1 0.0 0.0 0.0 0.0
CAF:silent8 Test.Hspec.Core.Formatters.V2 <no location info> 5563 0 0.0 0.0 0.0 0.0
silent Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(143,1)-(151,1) 6882 0 0.0 0.0 0.0 0.0
silent.\ Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:146:34-37 6883 0 0.0 0.0 0.0 0.0
pass Test.Hspec.Core.Compat src/Test/Hspec/Core/Compat.hs:194:1-14 6884 0 0.0 0.0 0.0 0.0
CAF:sleep1 Test.Hspec.Core.Clock <no location info> 5483 0 0.0 0.0 0.0 0.0
sleep Test.Hspec.Core.Clock src/Test/Hspec/Core/Clock.hs:52:1-36 6349 1 0.0 0.0 0.0 0.0
CAF:smallCheckOptions Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:247:1-17 5270 0 0.0 0.0 0.0 0.0
smallCheckOptions Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:(247,1)-(249,3) 6125 1 0.0 0.0 0.0 0.0
CAF:specdoc Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:197:1-7 5633 0 0.0 0.0 0.0 0.0
specdoc Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(197,1)-(241,54) 6307 1 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:154:1-35 6397 1 0.0 0.0 0.0 0.0
CAF:specdoc1 Test.Hspec.Core.Formatters.V2 <no location info> 5632 0 0.0 0.0 0.0 0.0
specdoc Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(197,1)-(241,54) 7199 0 0.0 0.0 0.0 0.0
CAF:specdoc11 Test.Hspec.Core.Formatters.V2 <no location info> 5575 0 0.0 0.0 0.0 0.0
CAF:specdoc14 Test.Hspec.Core.Formatters.V2 <no location info> 5573 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(394,1)-(414,26) 7228 0 0.0 0.0 0.0 0.0
CAF:specdoc15 Test.Hspec.Core.Formatters.V2 <no location info> 5572 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(394,1)-(414,26) 7229 0 0.0 0.0 0.0 0.0
CAF:specdoc16 Test.Hspec.Core.Formatters.V2 <no location info> 5571 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(394,1)-(414,26) 7239 0 0.0 0.0 0.0 0.0
CAF:specdoc2 Test.Hspec.Core.Formatters.V2 <no location info> 5580 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(394,1)-(414,26) 7226 1 0.0 0.0 0.0 0.0
CAF:specdoc20 Test.Hspec.Core.Formatters.V2 <no location info> 5569 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(394,1)-(414,26) 7231 0 0.0 0.0 0.0 0.0
CAF:specdoc21 Test.Hspec.Core.Formatters.V2 <no location info> 5568 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(394,1)-(414,26) 7232 0 0.0 0.0 0.0 0.0
CAF:specdoc24 Test.Hspec.Core.Formatters.V2 <no location info> 5612 0 0.0 0.0 0.0 0.0
defaultFailedFormatter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(257,1)-(342,43) 7200 1 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:154:1-35 7202 1 0.0 0.0 0.0 0.0
CAF:specdoc25 Test.Hspec.Core.Formatters.V2 <no location info> 5611 0 0.0 0.0 0.0 0.0
defaultFailedFormatter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(257,1)-(342,43) 7218 0 0.0 0.0 0.0 0.0
CAF:specdoc28 Test.Hspec.Core.Formatters.V2 <no location info> 5585 0 0.0 0.0 0.0 0.0
defaultFailedFormatter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(257,1)-(342,43) 7203 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:154:1-35 7204 0 0.0 0.0 0.0 0.0
CAF:specdoc29 Test.Hspec.Core.Formatters.V2 <no location info> 5584 0 0.0 0.0 0.0 0.0
defaultFailedFormatter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(257,1)-(342,43) 7206 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:154:1-35 7207 0 0.0 0.0 0.0 0.0
write Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:260:1-37 7208 0 0.0 0.0 0.0 0.0
CAF:specdoc3 Test.Hspec.Core.Formatters.V2 <no location info> 5579 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(394,1)-(414,26) 7265 0 0.0 0.0 0.0 0.0
CAF:specdoc39 Test.Hspec.Core.Formatters.V2 <no location info> 5608 0 0.0 0.0 0.0 0.0
defaultFailedFormatter Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(257,1)-(342,43) 7225 0 0.0 0.0 0.0 0.0
CAF:specdoc49 Test.Hspec.Core.Formatters.V2 <no location info> 5628 0 0.0 0.0 0.0 0.0
specdoc Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(197,1)-(241,54) 6398 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:154:1-35 6399 0 0.0 0.0 0.0 0.0
CAF:specdoc5 Test.Hspec.Core.Formatters.V2 <no location info> 5574 0 0.0 0.0 0.0 0.0
CAF:specdoc50 Test.Hspec.Core.Formatters.V2 <no location info> 5627 0 0.0 0.0 0.0 0.0
specdoc Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(197,1)-(241,54) 6402 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:154:1-35 6403 0 0.0 0.0 0.0 0.0
write Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:260:1-37 6405 0 0.0 0.0 0.0 0.0
CAF:splitLines Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:263:1-10 5095 0 0.0 0.0 0.0 0.0
splitLines Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(263,1)-(265,25) 6406 1 0.0 0.0 0.0 0.0
CAF:startingPlayer13 Lib <no location info> 5868 0 0.0 0.0 0.0 0.0
startingPlayer Lib src/Lib.hs:(44,1)-(47,50) 6635 0 0.0 0.0 0.0 0.0
startingPlayer.(...) Lib src/Lib.hs:47:5-50 6636 0 0.0 0.0 0.0 0.0
CAF:startingPlayer18 Lib <no location info> 5869 0 0.0 0.0 0.0 0.0
startingPlayer Lib src/Lib.hs:(44,1)-(47,50) 6713 0 0.0 0.0 0.0 0.0
startingPlayer.(...) Lib src/Lib.hs:47:5-50 6714 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:297:10-19 6715 0 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:235:3-43 6716 0 0.0 0.0 0.0 0.0
uniformRM System.Random.Internal src/System/Random/Internal.hs:742:3-85 6717 0 0.0 0.0 0.0 0.0
CAF:startingPlayer_n Lib src/Lib.hs:46:5 5867 0 0.0 0.0 0.0 0.0
startingPlayer Lib src/Lib.hs:(44,1)-(47,50) 6637 0 0.0 0.0 0.0 0.0
startingPlayer.n Lib src/Lib.hs:46:5-22 6638 1 0.0 0.0 0.0 0.0
CAF:stdArgs Test.QuickCheck.Test src/Test/QuickCheck/Test.hs:165:1-7 3506 0 0.0 0.0 0.0 0.0
stdArgs Test.QuickCheck.Test src/Test/QuickCheck/Test.hs:(165,1)-(172,3) 7474 1 0.0 0.0 0.0 0.0
CAF:theSMGen System.Random.SplitMix src/System/Random/SplitMix.hs:388:1-8 3256 0 0.0 0.0 0.0 0.0
theSMGen System.Random.SplitMix src/System/Random/SplitMix.hs:388:1-51 6156 1 0.0 0.0 0.0 0.0
initSMGen System.Random.SplitMix src/System/Random/SplitMix.hs:381:1-36 6158 0 0.0 0.0 0.0 0.0
mkSMGen System.Random.SplitMix src/System/Random/SplitMix.hs:377:1-61 6160 1 0.0 0.0 0.0 0.0
mix64 System.Random.SplitMix src/System/Random/SplitMix.hs:(247,1)-(252,9) 6161 1 0.0 0.0 0.0 0.0
mix64.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:249:9-54 6167 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 6168 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6170 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6169 0 0.0 0.0 0.0 0.0
mix64.z2 System.Random.SplitMix src/System/Random/SplitMix.hs:250:9-54 6162 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 6163 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6166 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6165 0 0.0 0.0 0.0 0.0
mix64.z3 System.Random.SplitMix src/System/Random/SplitMix.hs:251:9-27 6171 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6172 1 0.0 0.0 0.0 0.0
mixGamma System.Random.SplitMix src/System/Random/SplitMix.hs:(267,1)-(274,40) 6173 1 0.0 0.0 0.0 0.0
mixGamma.n System.Random.SplitMix src/System/Random/SplitMix.hs:269:9-48 6174 1 0.0 0.0 0.0 0.0
mixGamma.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:268:9-36 6175 1 0.0 0.0 0.0 0.0
mix64variant13 System.Random.SplitMix src/System/Random/SplitMix.hs:(256,1)-(264,9) 6176 1 0.0 0.0 0.0 0.0
mix64variant13.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:261:9-54 6181 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 6182 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6184 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6183 0 0.0 0.0 0.0 0.0
mix64variant13.z2 System.Random.SplitMix src/System/Random/SplitMix.hs:262:9-54 6177 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 6178 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6180 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 6179 0 0.0 0.0 0.0 0.0
mix64variant13.z3 System.Random.SplitMix src/System/Random/SplitMix.hs:263:9-27 6188 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 6189 1 0.0 0.0 0.0 0.0
plus System.Random.SplitMix src/System/Random/SplitMix.hs:398:1-10 6186 0 0.0 0.0 0.0 0.0
CAF:withAsync1 Control.Concurrent.Async <no location info> 4736 0 0.0 0.0 0.0 0.0
withAsync Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:309:1-43 6607 1 0.0 0.0 0.0 0.0
withAsyncUsing Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:(339,1)-(348,12) 6608 1 0.0 0.0 0.0 0.0
CAF:withJobQueue3 Test.Hspec.Core.Runner.JobQueue <no location info> 4842 0 0.0 0.0 0.0 0.0
withJobQueue Test.Hspec.Core.Runner.JobQueue src/Test/Hspec/Core/Runner/JobQueue.hs:(50,1)-(64,62) 7348 0 0.0 0.0 0.0 0.0
withJobQueue.notifyCancel Test.Hspec.Core.Runner.JobQueue src/Test/Hspec/Core/Runner/JobQueue.hs:64:5-62 7349 1 0.0 0.0 0.0 0.0
CAF:withSuccessColor1 Test.Hspec.Core.Formatters.Internal <no location info> 5107 0 0.0 0.0 0.0 0.0
withSuccessColor Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:287:1-77 6782 1 0.0 0.0 0.0 0.0
CAF:wordSizeInBits System.Random.Internal src/System/Random/Internal.hs:731:1-14 3387 0 0.0 0.0 0.0 0.0
wordSizeInBits System.Random.Internal src/System/Random/Internal.hs:731:1-42 6646 1 0.0 0.0 0.0 0.0
CAF:write Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:260:1-5 5097 0 0.0 0.0 0.0 0.0
write Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:260:1-37 6404 1 0.0 0.0 0.0 0.0
CAF:writeLine2 Test.Hspec.Core.Formatters.Internal <no location info> 5118 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:154:1-35 6411 0 0.0 0.0 0.0 0.0
write Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:260:1-37 6412 0 0.0 0.0 0.0 0.0
writeChunk Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(268,1)-(277,26) 6414 1 0.0 0.0 0.0 0.0
splitLines Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(263,1)-(265,25) 6413 0 0.0 0.0 0.0 0.0
CAF:writeLine3 Test.Hspec.Core.Formatters.Internal <no location info> 5117 0 0.0 0.0 0.0 0.0
CAF:writeTransient4 Test.Hspec.Core.Formatters.Internal <no location info> 5076 0 0.0 0.0 0.0 0.0
getHandle Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:189:1-25 6416 1 0.0 0.0 0.0 0.0
CAF:writeTransient5 Test.Hspec.Core.Formatters.Internal <no location info> 5099 0 0.0 0.0 0.0 0.0
CAF:write_isNewline Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:265:5-13 5094 0 0.0 0.0 0.0 0.0
splitLines Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:(263,1)-(265,25) 6494 0 0.0 0.0 0.0 0.0
splitLines.isNewline Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:265:5-25 6495 1 0.0 0.0 0.0 0.0
CAF:z1_rULW Test.Hspec.Core.Formatters.Internal <no location info> 5096 0 0.0 0.0 0.0 0.0
write Test.Hspec.Core.Formatters.Internal src/Test/Hspec/Core/Formatters/Internal.hs:260:1-37 6408 0 0.0 0.0 0.0 0.0
CAF:z4_rZq0 Test.Hspec.Core.Formatters.V2 <no location info> 5643 0 0.0 0.0 0.0 0.0
checks.\ Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(161,56)-(172,104) 6850 0 0.0 0.0 0.0 0.0
checks.writeResult Test.Hspec.Core.Formatters.V2 src/Test/Hspec/Core/Formatters/V2.hs:(177,5)-(190,48) 6851 0 0.0 0.0 0.0 0.0
main Main test/Spec.hs:(7,1)-(34,140) 6009 0 0.0 0.0 21.1 77.7
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6020 0 0.0 0.1 0.0 0.1
describe Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:(97,1)-(99,49) 6028 0 0.0 0.0 0.0 0.3
mapSpecForest Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:72:1-81 6034 0 0.0 0.0 0.0 0.3
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6054 0 0.0 0.2 0.0 0.2
it Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:128:1-54 6058 0 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:58:1-42 6059 0 0.0 0.0 0.0 0.0
specGroup Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:(120,1)-(125,21) 6236 0 0.0 0.0 0.0 0.0
withEnv Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:90:1-60 6029 0 0.0 0.0 0.0 0.0
hspec Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:168:1-31 6010 0 0.0 0.0 21.1 77.3
hspecWith Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:196:1-68 6011 0 0.0 0.0 21.1 77.3
evaluateResult Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:204:1-69 7493 1 0.0 0.0 0.0 0.0
specResultSuccess Test.Hspec.Core.Runner.Result src/Test/Hspec/Core/Runner/Result.hs:38:3-19 7494 1 0.0 0.0 0.0 0.0
hspecWithSpecResult Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(223,1)-(251,14) 6012 1 0.0 0.0 21.1 77.3
configRerunAllOnSuccess Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:55:3-25 6139 1 0.0 0.0 0.0 0.0
evalSpec Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(180,1)-(182,27) 6013 1 0.0 0.0 0.0 0.1
runSpecM Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:50:1-59 6015 0 0.0 0.0 0.0 0.1
unSpecM Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:45:29-35 6016 1 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:46:35-39 6021 0 0.0 0.1 0.0 0.1
describe Test.Hspec.Core.Spec src/Test/Hspec/Core/Spec.hs:(97,1)-(99,49) 6032 0 0.0 0.0 0.0 0.0
mapSpecForest Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:72:1-81 6103 0 0.0 0.0 0.0 0.0
withEnv Test.Hspec.Core.Spec.Monad src/Test/Hspec/Core/Spec/Monad.hs:90:1-60 6033 0 0.0 0.0 0.0 0.0
hspecWithSpecResult.normalMode Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:230:5-104 6140 1 0.0 0.0 21.1 56.5
runSpecForest_ Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(322,1)-(377,16) 6143 1 0.0 0.0 0.0 0.0
doNotLeakCommandLineArgumentsToExamples Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:439:1-53 6142 0 0.0 1.0 21.1 56.5
runSpecForest_ Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(322,1)-(377,16) 6144 0 0.0 0.0 21.1 55.5
applyFailureReport Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:(54,1)-(73,24) 6145 1 0.0 0.0 0.0 0.0
applyFailureReport.mMaxDiscardRatio Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:66:5-113 7461 1 0.0 0.0 0.0 0.0
configQuickCheckMaxDiscardRatio Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:64:3-33 7462 1 0.0 0.0 0.0 0.0
applyFailureReport.mMaxSize Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:65:5-89 7463 1 0.0 0.0 0.0 0.0
configQuickCheckMaxSize Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:65:3-25 7464 1 0.0 0.0 0.0 0.0
applyFailureReport.mMaxSuccess Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:64:5-98 7459 1 0.0 0.0 0.0 0.0
configQuickCheckMaxSuccess Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:63:3-28 7460 1 0.0 0.0 0.0 0.0
applyFailureReport.mSeed Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:63:5-80 6148 1 0.0 0.0 0.0 0.0
configQuickCheckSeed Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:62:3-22 6149 1 0.0 0.0 0.0 0.0
applyFailureReport.matchFilter Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:68:5-44 6282 1 0.0 0.0 0.0 0.0
configFilterPredicate Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:60:3-23 6283 1 0.0 0.0 0.0 0.0
applyFailureReport.rerunFilter Test.Hspec.Core.Config src/Test/Hspec/Core/Config.hs:(70,5)-(73,24) 6284 1 0.0 0.0 0.0 0.0
filterOr Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:(409,1)-(411,18) 6285 1 0.0 0.0 0.0 0.0
colorOutputSupported Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(463,1)-(486,51) 6191 1 0.0 0.1 0.0 0.2
colorOutputSupported.colorEnabled Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:473:5-40 6297 1 0.0 0.0 0.0 0.0
colorOutputSupported.colorTerminal Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:483:5-67 6194 1 0.0 0.0 0.0 0.0
colorOutputSupported.githubActions Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:480:5-67 6192 1 0.0 0.1 0.0 0.1
colorOutputSupported.progress Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(468,5)-(470,44) 6298 1 0.0 0.0 0.0 0.0
colorOutputSupported.noColor Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:486:5-51 6198 0 0.0 0.1 0.0 0.1
configColorMode Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:68:3-17 6193 1 0.0 0.0 0.0 0.0
configConcurrentJobs Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:88:3-22 6294 1 0.0 0.0 0.0 0.0
configFailOnEmpty Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:46:3-19 6293 1 0.0 0.0 0.0 0.0
configUnicodeMode Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:69:3-19 6203 1 0.0 0.0 0.0 0.0
dumpFailureReport Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(429,1)-(436,5) 7377 1 0.0 0.0 0.0 2.0
maxDiscardRatio Test.QuickCheck.Test src/Test/QuickCheck/Test.hs:76:5-19 7480 1 0.0 0.0 0.0 0.0
maxSize Test.QuickCheck.Test src/Test/QuickCheck/Test.hs:78:5-11 7479 1 0.0 0.0 0.0 0.0
maxSuccess Test.QuickCheck.Test src/Test/QuickCheck/Test.hs:72:5-14 7457 1 0.0 0.0 0.0 0.0
writeFailureReport Test.Hspec.Core.FailureReport src/Test/Hspec/Core/FailureReport.hs:(29,1)-(45,110) 7378 1 0.0 0.0 0.0 2.0
configFailureReport Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:53:3-21 7379 1 0.0 0.0 0.0 0.0
safeTry Test.Hspec.Core.Util src/Test/Hspec/Core/Util.hs:158:1-58 7380 1 0.0 0.0 0.0 1.1
withAsync Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:309:1-43 7381 0 0.0 0.0 0.0 1.1
withAsyncUsing Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:(339,1)-(348,12) 7382 0 0.0 0.0 0.0 1.1
withAsyncUsing.\ Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:(339,42)-(348,12) 7383 1 0.0 0.0 0.0 1.1
withAsyncUsing.\.\ Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:(341,22)-(348,12) 7384 1 0.0 1.1 0.0 1.1
withAsyncUsing.\.\.a Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:343:9-35 7386 1 0.0 0.0 0.0 0.0
catchAll Control.Concurrent.Async vendor/Control/Concurrent/Async.hs:947:1-16 7385 0 0.0 0.0 0.0 0.0
show Test.Hspec.Core.FailureReport src/Test/Hspec/Core/FailureReport.hs:26:17-20 7389 0 0.0 0.0 0.0 0.9
showsPrec Test.Hspec.Core.FailureReport src/Test/Hspec/Core/FailureReport.hs:26:17-20 7390 1 0.0 0.9 0.0 0.9
ensureSeed Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(187,1)-(191,21) 6146 1 0.0 0.0 0.0 0.1
configQuickCheckSeed Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:62:3-22 6147 1 0.0 0.0 0.0 0.0
newSeed Test.Hspec.Core.QuickCheckUtil src/Test/Hspec/Core/QuickCheckUtil.hs:(57,1)-(58,10) 6151 0 0.0 0.0 0.0 0.1
randomR System.Random src/System/Random.hs:297:10-19 7393 1 0.0 0.0 0.0 0.0
randomR System.Random src/System/Random.hs:235:3-43 7394 1 0.0 0.0 0.0 0.0
uniformRM System.Random.Internal src/System/Random/Internal.hs:742:3-85 7395 1 0.0 0.0 0.0 0.0
uniformM System.Random.Internal src/System/Random/Internal.hs:(746,3)-(750,59) 7401 0 0.0 0.0 0.0 0.0
uniformWord64 System.Random.Internal src/System/Random/Internal.hs:456:3-35 7408 0 0.0 0.0 0.0 0.0
genWord64 Test.QuickCheck.Random src/Test/QuickCheck/Random.hs:47:3-33 7410 0 0.0 0.0 0.0 0.0
genWord64 System.Random.Internal src/System/Random/Internal.hs:566:3-27 7413 0 0.0 0.0 0.0 0.0
nextWord64 System.Random.SplitMix src/System/Random/SplitMix.hs:(121,1)-(123,29) 7443 1 0.0 0.0 0.0 0.0
mix64 System.Random.SplitMix src/System/Random/SplitMix.hs:(247,1)-(252,9) 7444 1 0.0 0.0 0.0 0.0
mix64.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:249:9-54 7449 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 7450 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 7452 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 7451 0 0.0 0.0 0.0 0.0
mix64.z2 System.Random.SplitMix src/System/Random/SplitMix.hs:250:9-54 7445 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 7446 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 7448 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 7447 0 0.0 0.0 0.0 0.0
mix64.z3 System.Random.SplitMix src/System/Random/SplitMix.hs:251:9-27 7455 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 7456 1 0.0 0.0 0.0 0.0
nextWord64.seed' System.Random.SplitMix src/System/Random/SplitMix.hs:123:5-29 7453 1 0.0 0.0 0.0 0.0
plus System.Random.SplitMix src/System/Random/SplitMix.hs:398:1-10 7454 0 0.0 0.0 0.0 0.0
newQCGen Test.QuickCheck.Random src/Test/QuickCheck/Random.hs:68:1-30 6153 0 0.0 0.0 0.0 0.1
newSMGen System.Random.SplitMix src/System/Random/SplitMix.hs:385:1-48 6155 0 0.0 0.0 0.0 0.0
splitSMGen System.Random.SplitMix src/System/Random/SplitMix.hs:(225,1)-(229,31) 6190 1 0.0 0.0 0.0 0.0
mix64 System.Random.SplitMix src/System/Random/SplitMix.hs:(247,1)-(252,9) 7414 1 0.0 0.0 0.0 0.0
mix64.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:249:9-54 7419 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 7420 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 7422 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 7421 0 0.0 0.0 0.0 0.0
mix64.z2 System.Random.SplitMix src/System/Random/SplitMix.hs:250:9-54 7415 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 7416 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 7418 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 7417 0 0.0 0.0 0.0 0.0
mix64.z3 System.Random.SplitMix src/System/Random/SplitMix.hs:251:9-27 7425 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 7426 1 0.0 0.0 0.0 0.0
mixGamma System.Random.SplitMix src/System/Random/SplitMix.hs:(267,1)-(274,40) 7427 1 0.0 0.0 0.0 0.0
mixGamma.n System.Random.SplitMix src/System/Random/SplitMix.hs:269:9-48 7428 1 0.0 0.0 0.0 0.0
mixGamma.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:268:9-36 7429 1 0.0 0.0 0.0 0.0
mix64variant13 System.Random.SplitMix src/System/Random/SplitMix.hs:(256,1)-(264,9) 7430 1 0.0 0.0 0.0 0.0
mix64variant13.z1 System.Random.SplitMix src/System/Random/SplitMix.hs:261:9-54 7435 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 7436 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 7438 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 7437 0 0.0 0.0 0.0 0.0
mix64variant13.z2 System.Random.SplitMix src/System/Random/SplitMix.hs:262:9-54 7431 1 0.0 0.0 0.0 0.0
shiftXorMultiply System.Random.SplitMix src/System/Random/SplitMix.hs:280:1-46 7432 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 7434 1 0.0 0.0 0.0 0.0
mult System.Random.SplitMix src/System/Random/SplitMix.hs:397:1-10 7433 0 0.0 0.0 0.0 0.0
mix64variant13.z3 System.Random.SplitMix src/System/Random/SplitMix.hs:263:9-27 7441 1 0.0 0.0 0.0 0.0
shiftXor System.Random.SplitMix src/System/Random/SplitMix.hs:277:1-37 7442 1 0.0 0.0 0.0 0.0
splitSMGen.seed' System.Random.SplitMix src/System/Random/SplitMix.hs:228:5-30 7423 1 0.0 0.0 0.0 0.0
plus System.Random.SplitMix src/System/Random/SplitMix.hs:398:1-10 7424 0 0.0 0.0 0.0 0.0
splitSMGen.seed'' System.Random.SplitMix src/System/Random/SplitMix.hs:229:5-31 7439 1 0.0 0.0 0.0 0.0
plus System.Random.SplitMix src/System/Random/SplitMix.hs:398:1-10 7440 0 0.0 0.0 0.0 0.0
progressReporting Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(458,1)-(460,21) 6296 1 0.0 0.0 0.0 0.0
runSpecForest_.failures Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:373:5-88 7481 1 0.0 0.0 0.0 0.0
resultItemIsFailure Test.Hspec.Core.Runner.Result src/Test/Hspec/Core/Runner/Result.hs:(56,1)-(59,27) 7491 8 0.0 0.0 0.0 0.0
resultItemStatus Test.Hspec.Core.Runner.Result src/Test/Hspec/Core/Runner/Result.hs:50:3-18 7492 8 0.0 0.0 0.0 0.0
specResultItems Test.Hspec.Core.Runner.Result src/Test/Hspec/Core/Runner/Result.hs:34:3-17 7482 1 0.0 0.0 0.0 0.0
runSpecForest_.filteredSpec Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:330:5-47 6208 1 0.0 0.0 0.0 0.7
specToEvalForest Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(380,1)-(399,22) 6209 1 0.0 0.0 0.0 0.7
applyDryRun Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(151,1)-(159,83) 6219 1 0.0 0.0 0.0 0.0
configDryRun Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:44:3-14 6220 1 0.0 0.0 0.0 0.0
applyFilterPredicates Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:(137,1)-(148,49) 6214 1 0.0 0.0 0.0 0.1
applyFilterPredicates.include Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:140:5-62 6280 1 0.0 0.0 0.0 0.0
configFilterPredicate Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:60:3-23 6281 1 0.0 0.0 0.0 0.0
applyFilterPredicates.skip Test.Hspec.Core.Runner src/Test/Hspec/Core/Runner.hs:143:5-58 6287 1 0.0 0.0 0.0 0.0
configSkipPredicate Test.Hspec.Core.Config.Definition src/Test/Hspec/Core/Config/Definition.hs:61:3-21 6288 1 0.0 0.0 0.0 0.0
filterForestWithLabels Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:67:1-41 6217 0 0.0 0.0 0.0 0.1
filterForest_ Test.Hspec.Core.Tree src/Test/Hspec/Core/Tree.hs:70:1-52 6218 3 0.0 0.1 0.0 0.1