-
Notifications
You must be signed in to change notification settings - Fork 0
/
last.log
1110 lines (1110 loc) · 99.6 KB
/
last.log
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
[[33mWarning [0m] Parallelism is disabled.
[[34m Info [0m] - Checking cache: 'precond. (call size[T](s1))' VC for strictSubsetIsSmaller @348:5...
[[34m Info [0m] Cache hit: 'precond. (call size[T](s1))' VC for strictSubsetIsSmaller @348:5...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](s2))' VC for strictSubsetIsSmaller @348:15...
[[34m Info [0m] Cache hit: 'precond. (call size[T](s2))' VC for strictSubsetIsSmaller @348:15...
[[34m Info [0m] - Checking cache: 'precond. (call notSubsetContains[T](s1, s2))' VC for strictSubsetIsSmaller @350:12...
[[34m Info [0m] Cache hit: 'precond. (call notSubsetContains[T](s1, s2))' VC for strictSubsetIsSmaller @350:12...
[[34m Info [0m] - Checking cache: 'precond. (call find[T](s1, (x$4: T) => { ...)' VC for strictSubsetIsSmaller @351:13...
[[34m Info [0m] Cache hit: 'precond. (call find[T](s1, (x$4: T) => { ...)' VC for strictSubsetIsSmaller @351:13...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for strictSubsetIsSmaller @353:5...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for strictSubsetIsSmaller @353:5...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for strictSubsetIsSmaller @353:5...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for strictSubsetIsSmaller @353:5...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for strictSubsetIsSmaller @353:5...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for strictSubsetIsSmaller @353:5...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for strictSubsetIsSmaller @353:5...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for strictSubsetIsSmaller @353:5...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](s1))' VC for strictSubsetIsSmaller @353:6...
[[34m Info [0m] Cache hit: 'precond. (call size[T](s1))' VC for strictSubsetIsSmaller @353:6...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](s2))' VC for strictSubsetIsSmaller @353:16...
[[34m Info [0m] Cache hit: 'precond. (call size[T](s2))' VC for strictSubsetIsSmaller @353:16...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for strictSubsetIsSmaller @354:5...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for strictSubsetIsSmaller @354:5...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](s1))' VC for strictSubsetIsSmaller @354:6...
[[34m Info [0m] Cache hit: 'precond. (call size[T](s1))' VC for strictSubsetIsSmaller @354:6...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](s2))' VC for strictSubsetIsSmaller @354:16...
[[34m Info [0m] Cache hit: 'precond. (call size[T](s2))' VC for strictSubsetIsSmaller @354:16...
[[34m Info [0m] - Checking cache: 'precond. (call diffSubsetSize[T](s1, s2))' VC for strictSubsetIsSmaller @354:33...
[[34m Info [0m] Cache hit: 'precond. (call diffSubsetSize[T](s1, s2))' VC for strictSubsetIsSmaller @354:33...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for strictSubsetIsSmaller @355:5...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for strictSubsetIsSmaller @355:5...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](--[T](s1, s2)))' VC for strictSubsetIsSmaller @355:7...
[[34m Info [0m] Cache hit: 'precond. (call size[T](--[T](s1, s2)))' VC for strictSubsetIsSmaller @355:7...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](s1, s2))' VC for strictSubsetIsSmaller @355:7...
[[34m Info [0m] Cache hit: 'precond. (call --[T](s1, s2))' VC for strictSubsetIsSmaller @355:7...
[[34m Info [0m] - Checking cache: 'precond. (call diffContains[T](s1, s2, x))' VC for strictSubsetIsSmaller @355:33...
[[34m Info [0m] Cache hit: 'precond. (call diffContains[T](s1, s2, x))' VC for strictSubsetIsSmaller @355:33...
[[34m Info [0m] - Checking cache: 'body assertion' VC for strictSubsetIsSmaller @349:19...
[[34m Info [0m] Cache hit: 'body assertion' VC for strictSubsetIsSmaller @349:19...
[[34m Info [0m] - Checking cache: 'postcondition' VC for strictSubsetIsSmaller @346:69...
[[34m Info [0m] Cache hit: 'postcondition' VC for strictSubsetIsSmaller @346:69...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](s1, (x: T) => { ..., ind. on (s1: USet[T] : USCons))' VC for notSubsetContains @362:5...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](s1, (x: T) => { ..., ind. on (s1: USet[T] : USCons))' VC for notSubsetContains @362:5...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](s1, (x: T) => { ..., ind. on (s1: USet[T] : USNil))' VC for notSubsetContains @362:5...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](s1, (x: T) => { ..., ind. on (s1: USet[T] : USNil))' VC for notSubsetContains @362:5...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on s1: USet[T] / USCons)' VC for notSubsetContains @360:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on s1: USet[T] / USCons)' VC for notSubsetContains @360:3...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on s1: USet[T] / USNil)' VC for notSubsetContains @360:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on s1: USet[T] / USNil)' VC for notSubsetContains @360:3...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](thiss, p))' VC for find @35:13...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](thiss, p))' VC for find @35:13...
[[34m Info [0m] - Checking cache: 'precond. (call find[T](xs, p))' VC for find @37:46...
[[34m Info [0m] Cache hit: 'precond. (call find[T](xs, p))' VC for find @37:46...
[[34m Info [0m] - Checking cache: 'postcondition' VC for find @39:16...
[[34m Info [0m] Cache hit: 'postcondition' VC for find @39:16...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for find @34:12...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for find @34:12...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for find @36:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for find @36:5...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for find @37:33...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for find @37:33...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for find @39:28...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for find @39:28...
[[34m Info [0m] - Checking cache: 'postcondition' VC for sameRefl @248:5...
[[34m Info [0m] Cache hit: 'postcondition' VC for sameRefl @248:5...
[[34m Info [0m] - Checking cache: 'precond. (call subsetTrans[T](set1, set2, set3))' VC for sameTrans @254:21...
[[34m Info [0m] Cache hit: 'precond. (call subsetTrans[T](set1, set2, set3))' VC for sameTrans @254:21...
[[34m Info [0m] - Checking cache: 'precond. (call subsetTrans[T](set3, set2, set1))' VC for sameTrans @254:54...
[[34m Info [0m] Cache hit: 'precond. (call subsetTrans[T](set3, set2, set1))' VC for sameTrans @254:54...
[[34m Info [0m] - Checking cache: 'postcondition' VC for sameTrans @251:76...
[[34m Info [0m] Cache hit: 'postcondition' VC for sameTrans @251:76...
[[34m Info [0m] - Checking cache: 'precond. (call subsetTrans[T](xs, set2, set3))' VC for subsetTrans @213:29...
[[34m Info [0m] Cache hit: 'precond. (call subsetTrans[T](xs, set2, set3))' VC for subsetTrans @213:29...
[[34m Info [0m] - Checking cache: 'precond. (call containsTrans[T](set2, set3, x))' VC for subsetTrans @213:60...
[[34m Info [0m] Cache hit: 'precond. (call containsTrans[T](set2, set3, x))' VC for subsetTrans @213:60...
[[34m Info [0m] - Checking cache: 'postcondition' VC for subsetTrans @207:78...
[[34m Info [0m] Cache hit: 'postcondition' VC for subsetTrans @207:78...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for subsetTrans @211:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for subsetTrans @211:5...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](set1, set2))' VC for subsetOfUnion @270:19...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](set1, set2))' VC for subsetOfUnion @270:19...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](set1, set2))' VC for subsetOfUnion @270:50...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](set1, set2))' VC for subsetOfUnion @270:50...
[[34m Info [0m] - Checking cache: 'precond. (call unionOfSubsetsIsSubset[T](set1, set2, ++ ...)' VC for subsetOfUnion @271:21...
[[34m Info [0m] Cache hit: 'precond. (call unionOfSubsetsIsSubset[T](set1, set2, ++ ...)' VC for subsetOfUnion @271:21...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](set1, set2))' VC for subsetOfUnion @271:56...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](set1, set2))' VC for subsetOfUnion @271:56...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](set1, set2))' VC for subsetOfUnion @271:84...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](set1, set2))' VC for subsetOfUnion @271:84...
[[34m Info [0m] - Checking cache: 'postcondition' VC for subsetOfUnion @268:65...
[[34m Info [0m] Cache hit: 'postcondition' VC for subsetOfUnion @268:65...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](set1, set2))' VC for unionOfSubsetsIsSubset @275:54...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](set1, set2))' VC for unionOfSubsetsIsSubset @275:54...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for unionOfSubsetsIsSubset @280:10...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for unionOfSubsetsIsSubset @280:10...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for unionOfSubsetsIsSubset @280:10...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for unionOfSubsetsIsSubset @280:10...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for unionOfSubsetsIsSubset @280:10...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for unionOfSubsetsIsSubset @280:10...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for unionOfSubsetsIsSubset @280:10...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for unionOfSubsetsIsSubset @280:10...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](set1, set2))' VC for unionOfSubsetsIsSubset @280:10...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](set1, set2))' VC for unionOfSubsetsIsSubset @280:10...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for unionOfSubsetsIsSubset @281:10...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for unionOfSubsetsIsSubset @281:10...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](++[T](xs, set2), x))' VC for unionOfSubsetsIsSubset @281:10...
[[34m Info [0m] Cache hit: 'precond. (call +[T](++[T](xs, set2), x))' VC for unionOfSubsetsIsSubset @281:10...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](xs, set2))' VC for unionOfSubsetsIsSubset @281:11...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](xs, set2))' VC for unionOfSubsetsIsSubset @281:11...
[[34m Info [0m] - Checking cache: 'precond. (call subsetAdd[T](++[T](xs, set2), set3, x))' VC for unionOfSubsetsIsSubset @281:63...
[[34m Info [0m] Cache hit: 'precond. (call subsetAdd[T](++[T](xs, set2), set3, x))' VC for unionOfSubsetsIsSubset @281:63...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](xs, set2))' VC for unionOfSubsetsIsSubset @281:73...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](xs, set2))' VC for unionOfSubsetsIsSubset @281:73...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for unionOfSubsetsIsSubset @282:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for unionOfSubsetsIsSubset @282:9...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](xs, set2))' VC for unionOfSubsetsIsSubset @282:11...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](xs, set2))' VC for unionOfSubsetsIsSubset @282:11...
[[34m Info [0m] - Checking cache: 'precond. (call unionOfSubsetsIsSubset[T](xs, set2, set3 ...)' VC for unionOfSubsetsIsSubset @282:63...
[[34m Info [0m] Cache hit: 'precond. (call unionOfSubsetsIsSubset[T](xs, set2, set3 ...)' VC for unionOfSubsetsIsSubset @282:63...
[[34m Info [0m] - Checking cache: 'postcondition' VC for unionOfSubsetsIsSubset @273:89...
[[34m Info [0m] Cache hit: 'postcondition' VC for unionOfSubsetsIsSubset @273:89...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for unionOfSubsetsIsSubset @277:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for unionOfSubsetsIsSubset @277:5...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set1, x), ind. on (set1: USet[T] : USCons))' VC for subsetAdd @291:6...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set1, x), ind. on (set1: USet[T] : USCons))' VC for subsetAdd @291:6...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set1, x), ind. on (set1: USet[T] : USNil))' VC for subsetAdd @291:6...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set1, x), ind. on (set1: USet[T] : USNil))' VC for subsetAdd @291:6...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set1: USet[T] / USCons)' VC for subsetAdd @289:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set1: USet[T] / USCons)' VC for subsetAdd @289:3...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set1: USet[T] / USNil)' VC for subsetAdd @289:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set1: USet[T] / USNil)' VC for subsetAdd @289:3...
[[34m Info [0m] - Checking cache: 'precond. (call subsetCons[T](xs, xs, x))' VC for subsetTail @195:27...
[[34m Info [0m] Cache hit: 'precond. (call subsetCons[T](xs, xs, x))' VC for subsetTail @195:27...
[[34m Info [0m] - Checking cache: 'postcondition' VC for subsetRefl @188:5...
[[34m Info [0m] Cache hit: 'postcondition' VC for subsetRefl @188:5...
[[34m Info [0m] - Checking cache: 'postcondition' VC for subsetTail @192:5...
[[34m Info [0m] Cache hit: 'postcondition' VC for subsetTail @192:5...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for subsetTail @192:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for subsetTail @192:5...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on s1: USet[T] / USCons)' VC for subsetCons @201:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on s1: USet[T] / USCons)' VC for subsetCons @201:3...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on s1: USet[T] / USNil)' VC for subsetCons @201:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on s1: USet[T] / USNil)' VC for subsetCons @201:3...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](thiss))' VC for ++ @67:15...
[[34m Info [0m] Cache hit: 'precond. (call size[T](thiss))' VC for ++ @67:15...
[[34m Info [0m] - Checking cache: 'precond. (call addIsSound[T](++[T](xs, that), x))' VC for ++ @72:16...
[[34m Info [0m] Cache hit: 'precond. (call addIsSound[T](++[T](xs, that), x))' VC for ++ @72:16...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](xs, that))' VC for ++ @72:27...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](xs, that))' VC for ++ @72:27...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](xs))' VC for ++ @73:16...
[[34m Info [0m] Cache hit: 'precond. (call size[T](xs))' VC for ++ @73:16...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](thiss))' VC for ++ @73:26...
[[34m Info [0m] Cache hit: 'precond. (call size[T](thiss))' VC for ++ @73:26...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](++[T](xs, that), x))' VC for ++ @75:9...
[[34m Info [0m] Cache hit: 'precond. (call +[T](++[T](xs, that), x))' VC for ++ @75:9...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](xs, that))' VC for ++ @75:10...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](xs, that))' VC for ++ @75:10...
[[34m Info [0m] - Checking cache: 'body assertion' VC for ++ @71:26...
[[34m Info [0m] Cache hit: 'body assertion' VC for ++ @71:26...
[[34m Info [0m] - Checking cache: 'body assertion' VC for ++ @73:9...
[[34m Info [0m] Cache hit: 'body assertion' VC for ++ @73:9...
[[34m Info [0m] - Checking cache: 'postcondition' VC for ++ @77:16...
[[34m Info [0m] Cache hit: 'postcondition' VC for ++ @77:16...
[[34m Info [0m] - Checking cache: 'body assertion: Measure not guaranteed positive' VC for ++ @69:5...
[[34m Info [0m] Cache hit: 'body assertion: Measure not guaranteed positive' VC for ++ @69:5...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for ++ @69:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for ++ @69:5...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set, y))' VC for addIsSound @128:18...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set, y))' VC for addIsSound @128:18...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for addIsSound @135:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for addIsSound @135:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for addIsSound @135:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for addIsSound @135:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for addIsSound @135:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for addIsSound @135:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for addIsSound @135:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for addIsSound @135:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for addIsSound @135:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for addIsSound @135:9...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for addIsSound @135:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for addIsSound @135:9...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set, y))' VC for addIsSound @135:22...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set, y))' VC for addIsSound @135:22...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for addIsSound @136:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for addIsSound @136:9...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](xs, y))' VC for addIsSound @136:32...
[[34m Info [0m] Cache hit: 'precond. (call +[T](xs, y))' VC for addIsSound @136:32...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for addIsSound @137:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for addIsSound @137:9...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](xs, y))' VC for addIsSound @137:12...
[[34m Info [0m] Cache hit: 'precond. (call +[T](xs, y))' VC for addIsSound @137:12...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](xs, y))' VC for addIsSound @137:48...
[[34m Info [0m] Cache hit: 'precond. (call +[T](xs, y))' VC for addIsSound @137:48...
[[34m Info [0m] - Checking cache: 'precond. (call addIsSound[T](xs, y))' VC for addIsSound @137:61...
[[34m Info [0m] Cache hit: 'precond. (call addIsSound[T](xs, y))' VC for addIsSound @137:61...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for addIsSound @138:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for addIsSound @138:9...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](xs, y))' VC for addIsSound @138:11...
[[34m Info [0m] Cache hit: 'precond. (call +[T](xs, y))' VC for addIsSound @138:11...
[[34m Info [0m] - Checking cache: 'precond. (call containsDistAdd[T](xs, y, x))' VC for addIsSound @138:61...
[[34m Info [0m] Cache hit: 'precond. (call containsDistAdd[T](xs, y, x))' VC for addIsSound @138:61...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for addIsSound @139:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for addIsSound @139:9...
[[34m Info [0m] - Checking cache: 'postcondition' VC for addIsSound @126:52...
[[34m Info [0m] Cache hit: 'postcondition' VC for addIsSound @126:52...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for addIsSound @130:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for addIsSound @130:5...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set1, p))' VC for sameExists @258:5...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set1, p))' VC for sameExists @258:5...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set2, p))' VC for sameExists @258:23...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set2, p))' VC for sameExists @258:23...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set1, p))' VC for sameExists @260:9...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set1, p))' VC for sameExists @260:9...
[[34m Info [0m] - Checking cache: 'precond. (call subsetExists[T](set1, set2, p))' VC for sameExists @260:30...
[[34m Info [0m] Cache hit: 'precond. (call subsetExists[T](set1, set2, p))' VC for sameExists @260:30...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set2, p))' VC for sameExists @261:14...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set2, p))' VC for sameExists @261:14...
[[34m Info [0m] - Checking cache: 'precond. (call subsetExists[T](set2, set1, p))' VC for sameExists @261:30...
[[34m Info [0m] Cache hit: 'precond. (call subsetExists[T](set2, set1, p))' VC for sameExists @261:30...
[[34m Info [0m] - Checking cache: 'postcondition' VC for sameExists @256:79...
[[34m Info [0m] Cache hit: 'postcondition' VC for sameExists @256:79...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for sameExists @256:51...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for sameExists @256:51...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set1, p))' VC for subsetExists @225:38...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set1, p))' VC for subsetExists @225:38...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set2, p))' VC for subsetExists @226:5...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set2, p))' VC for subsetExists @226:5...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for subsetExists @231:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for subsetExists @231:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for subsetExists @231:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for subsetExists @231:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for subsetExists @231:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for subsetExists @231:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for subsetExists @231:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for subsetExists @231:9...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @231:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @231:9...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set1, p))' VC for subsetExists @231:9...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set1, p))' VC for subsetExists @231:9...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @232:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @232:9...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @233:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @233:9...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set2, p))' VC for subsetExists @233:18...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set2, p))' VC for subsetExists @233:18...
[[34m Info [0m] - Checking cache: 'precond. (call addExists[T](set2, x, p))' VC for subsetExists @233:38...
[[34m Info [0m] Cache hit: 'precond. (call addExists[T](set2, x, p))' VC for subsetExists @233:38...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @234:10...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @234:10...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](+[T](set2, x), p))' VC for subsetExists @234:10...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](+[T](set2, x), p))' VC for subsetExists @234:10...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set2, x))' VC for subsetExists @234:10...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set2, x))' VC for subsetExists @234:10...
[[34m Info [0m] - Checking cache: 'precond. (call addId[T](set2, x))' VC for subsetExists @234:38...
[[34m Info [0m] Cache hit: 'precond. (call addId[T](set2, x))' VC for subsetExists @234:38...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set2, p))' VC for subsetExists @235:9...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set2, p))' VC for subsetExists @235:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for subsetExists @237:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for subsetExists @237:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for subsetExists @237:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for subsetExists @237:9...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @237:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @237:9...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set1, p))' VC for subsetExists @237:9...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set1, p))' VC for subsetExists @237:9...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @238:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for subsetExists @238:9...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](xs, p))' VC for subsetExists @238:9...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](xs, p))' VC for subsetExists @238:9...
[[34m Info [0m] - Checking cache: 'precond. (call subsetExists[T](xs, set2, p))' VC for subsetExists @238:28...
[[34m Info [0m] Cache hit: 'precond. (call subsetExists[T](xs, set2, p))' VC for subsetExists @238:28...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set2, p))' VC for subsetExists @239:9...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set2, p))' VC for subsetExists @239:9...
[[34m Info [0m] - Checking cache: 'postcondition' VC for subsetExists @223:81...
[[34m Info [0m] Cache hit: 'postcondition' VC for subsetExists @223:81...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for subsetExists @223:53...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for subsetExists @223:53...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for subsetExists @228:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for subsetExists @228:5...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for subsetExists @230:33...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for subsetExists @230:33...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for subsetExists @232:9...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for subsetExists @232:9...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for subsetExists @233:10...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for subsetExists @233:10...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](+[T](set, x), p ..., ind. on (set: USet[T] : USCons))' VC for addExists @148:6...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](+[T](set, x), p ..., ind. on (set: USet[T] : USCons))' VC for addExists @148:6...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](+[T](set, x), p ..., ind. on (set: USet[T] : USNil))' VC for addExists @148:6...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](+[T](set, x), p ..., ind. on (set: USet[T] : USNil))' VC for addExists @148:6...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set, x), ind. on (set: USet[T] : USCons))' VC for addExists @148:6...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set, x), ind. on (set: USet[T] : USCons))' VC for addExists @148:6...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set, x), ind. on (set: USet[T] : USNil))' VC for addExists @148:6...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set, x), ind. on (set: USet[T] : USNil))' VC for addExists @148:6...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set, p), ind. on (set: USet[T] : USCons))' VC for addExists @148:37...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set, p), ind. on (set: USet[T] : USCons))' VC for addExists @148:37...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set, p), ind. on (set: USet[T] : USNil))' VC for addExists @148:37...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set, p), ind. on (set: USet[T] : USNil))' VC for addExists @148:37...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set: USet[T] / USCons)' VC for addExists @146:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set: USet[T] / USCons)' VC for addExists @146:3...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set: USet[T] / USNil)' VC for addExists @146:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set: USet[T] / USNil)' VC for addExists @146:3...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for addExists @146:40...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for addExists @146:40...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for addExists @148:29...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for addExists @148:29...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](xs, p))' VC for exists @31:35...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](xs, p))' VC for exists @31:35...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for exists @29:14...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for exists @29:14...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for exists @29:42...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for exists @29:42...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for exists @31:27...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for exists @31:27...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set, x), ind. on (set: USet[T] : USCons))' VC for addId @154:6...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set, x), ind. on (set: USet[T] : USCons))' VC for addId @154:6...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set, x), ind. on (set: USet[T] : USNil))' VC for addId @154:6...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set, x), ind. on (set: USet[T] : USNil))' VC for addId @154:6...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set: USet[T] / USCons)' VC for addId @152:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set: USet[T] / USCons)' VC for addId @152:3...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set: USet[T] / USNil)' VC for addId @152:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set: USet[T] / USNil)' VC for addId @152:3...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set1: USet[T] / USCons)' VC for containsTrans @218:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set1: USet[T] / USCons)' VC for containsTrans @218:3...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set1: USet[T] / USNil)' VC for containsTrans @218:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set1: USet[T] / USNil)' VC for containsTrans @218:3...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set, y), ind. on (set: USet[T] : USCons))' VC for containsDistAdd @123:6...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set, y), ind. on (set: USet[T] : USCons))' VC for containsDistAdd @123:6...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](set, y), ind. on (set: USet[T] : USNil))' VC for containsDistAdd @123:6...
[[34m Info [0m] Cache hit: 'precond. (call +[T](set, y), ind. on (set: USet[T] : USNil))' VC for containsDistAdd @123:6...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set: USet[T] / USCons)' VC for containsDistAdd @121:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set: USet[T] / USCons)' VC for containsDistAdd @121:3...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set: USet[T] / USNil)' VC for containsDistAdd @121:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set: USet[T] / USNil)' VC for containsDistAdd @121:3...
[[34m Info [0m] - Checking cache: 'precond. (call +[T](xs, y))' VC for + @60:21...
[[34m Info [0m] Cache hit: 'precond. (call +[T](xs, y))' VC for + @60:21...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for + @53:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for + @53:5...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](set1))' VC for subsetIsSmallerOrEqual @343:5...
[[34m Info [0m] Cache hit: 'precond. (call size[T](set1))' VC for subsetIsSmallerOrEqual @343:5...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](set2))' VC for subsetIsSmallerOrEqual @343:18...
[[34m Info [0m] Cache hit: 'precond. (call size[T](set2))' VC for subsetIsSmallerOrEqual @343:18...
[[34m Info [0m] - Checking cache: 'precond. (call diffSubsetSize[T](set2, set1))' VC for subsetIsSmallerOrEqual @344:21...
[[34m Info [0m] Cache hit: 'precond. (call diffSubsetSize[T](set2, set1))' VC for subsetIsSmallerOrEqual @344:21...
[[34m Info [0m] - Checking cache: 'postcondition' VC for subsetIsSmallerOrEqual @341:74...
[[34m Info [0m] Cache hit: 'postcondition' VC for subsetIsSmallerOrEqual @341:74...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](--[T](set1, set2)))' VC for diffSubsetSize @325:6...
[[34m Info [0m] Cache hit: 'precond. (call size[T](--[T](set1, set2)))' VC for diffSubsetSize @325:6...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, set2))' VC for diffSubsetSize @325:6...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, set2))' VC for diffSubsetSize @325:6...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](set1))' VC for diffSubsetSize @325:28...
[[34m Info [0m] Cache hit: 'precond. (call size[T](set1))' VC for diffSubsetSize @325:28...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](set2))' VC for diffSubsetSize @325:40...
[[34m Info [0m] Cache hit: 'precond. (call size[T](set2))' VC for diffSubsetSize @325:40...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, ys))' VC for diffSubsetSize @330:17...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, ys))' VC for diffSubsetSize @330:17...
[[34m Info [0m] - Checking cache: 'precond. (call diffContains[T](set1, ys, y))' VC for diffSubsetSize @330:49...
[[34m Info [0m] Cache hit: 'precond. (call diffContains[T](set1, ys, y))' VC for diffSubsetSize @330:49...
[[34m Info [0m] - Checking cache: 'precond. (call |[BigInt, BigInt](|[BigInt, BigInt, BigI ...)' VC for diffSubsetSize @332:10...
[[34m Info [0m] Cache hit: 'precond. (call |[BigInt, BigInt](|[BigInt, BigInt, BigI ...)' VC for diffSubsetSize @332:10...
[[34m Info [0m] - Checking cache: 'precond. (call |[BigInt, BigInt, BigInt](|[BigInt, BigI ...)' VC for diffSubsetSize @332:10...
[[34m Info [0m] Cache hit: 'precond. (call |[BigInt, BigInt, BigInt](|[BigInt, BigI ...)' VC for diffSubsetSize @332:10...
[[34m Info [0m] - Checking cache: 'precond. (call |[BigInt, BigInt, BigInt](|[BigInt, BigI ...)' VC for diffSubsetSize @332:10...
[[34m Info [0m] Cache hit: 'precond. (call |[BigInt, BigInt, BigInt](|[BigInt, BigI ...)' VC for diffSubsetSize @332:10...
[[34m Info [0m] - Checking cache: 'precond. (call |[BigInt, BigInt, BigInt](==|[BigInt]({ ...)' VC for diffSubsetSize @332:10...
[[34m Info [0m] Cache hit: 'precond. (call |[BigInt, BigInt, BigInt](==|[BigInt]({ ...)' VC for diffSubsetSize @332:10...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[BigInt]({ ...)' VC for diffSubsetSize @332:10...
[[34m Info [0m] Cache hit: 'precond. (call ==|[BigInt]({ ...)' VC for diffSubsetSize @332:10...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](--[T](set1, set2)))' VC for diffSubsetSize @332:10...
[[34m Info [0m] Cache hit: 'precond. (call size[T](--[T](set1, set2)))' VC for diffSubsetSize @332:10...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, set2))' VC for diffSubsetSize @332:10...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, set2))' VC for diffSubsetSize @332:10...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[BigInt]({ ...)' VC for diffSubsetSize @333:10...
[[34m Info [0m] Cache hit: 'precond. (call ==|[BigInt]({ ...)' VC for diffSubsetSize @333:10...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](-[T](--[T](set1, ys), y)))' VC for diffSubsetSize @333:10...
[[34m Info [0m] Cache hit: 'precond. (call size[T](-[T](--[T](set1, ys), y)))' VC for diffSubsetSize @333:10...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](--[T](set1, ys), y))' VC for diffSubsetSize @333:10...
[[34m Info [0m] Cache hit: 'precond. (call -[T](--[T](set1, ys), y))' VC for diffSubsetSize @333:10...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, ys))' VC for diffSubsetSize @333:11...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, ys))' VC for diffSubsetSize @333:11...
[[34m Info [0m] - Checking cache: 'precond. (call subDecSize[T](--[T](set1, ys), y))' VC for diffSubsetSize @333:37...
[[34m Info [0m] Cache hit: 'precond. (call subDecSize[T](--[T](set1, ys), y))' VC for diffSubsetSize @333:37...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, ys))' VC for diffSubsetSize @333:48...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, ys))' VC for diffSubsetSize @333:48...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[BigInt]({ ...)' VC for diffSubsetSize @334:10...
[[34m Info [0m] Cache hit: 'precond. (call ==|[BigInt]({ ...)' VC for diffSubsetSize @334:10...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](--[T](set1, ys)))' VC for diffSubsetSize @334:10...
[[34m Info [0m] Cache hit: 'precond. (call size[T](--[T](set1, ys)))' VC for diffSubsetSize @334:10...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, ys))' VC for diffSubsetSize @334:10...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, ys))' VC for diffSubsetSize @334:10...
[[34m Info [0m] - Checking cache: 'precond. (call diffSubsetSize[T](set1, ys))' VC for diffSubsetSize @334:37...
[[34m Info [0m] Cache hit: 'precond. (call diffSubsetSize[T](set1, ys))' VC for diffSubsetSize @334:37...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[BigInt]({ ...)' VC for diffSubsetSize @335:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[BigInt]({ ...)' VC for diffSubsetSize @335:9...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](set1))' VC for diffSubsetSize @335:9...
[[34m Info [0m] Cache hit: 'precond. (call size[T](set1))' VC for diffSubsetSize @335:9...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](ys))' VC for diffSubsetSize @335:21...
[[34m Info [0m] Cache hit: 'precond. (call size[T](ys))' VC for diffSubsetSize @335:21...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](set1))' VC for diffSubsetSize @336:9...
[[34m Info [0m] Cache hit: 'precond. (call size[T](set1))' VC for diffSubsetSize @336:9...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](set2))' VC for diffSubsetSize @336:21...
[[34m Info [0m] Cache hit: 'precond. (call size[T](set2))' VC for diffSubsetSize @336:21...
[[34m Info [0m] - Checking cache: 'body assertion' VC for diffSubsetSize @329:29...
[[34m Info [0m] Cache hit: 'body assertion' VC for diffSubsetSize @329:29...
[[34m Info [0m] - Checking cache: 'postcondition' VC for diffSubsetSize @323:66...
[[34m Info [0m] Cache hit: 'postcondition' VC for diffSubsetSize @323:66...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for diffSubsetSize @327:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for diffSubsetSize @327:5...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, set2))' VC for diffContains @299:6...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, set2))' VC for diffContains @299:6...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for diffContains @304:10...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for diffContains @304:10...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for diffContains @304:10...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for diffContains @304:10...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for diffContains @304:10...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for diffContains @304:10...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for diffContains @304:10...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for diffContains @304:10...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, set2))' VC for diffContains @304:10...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, set2))' VC for diffContains @304:10...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for diffContains @305:10...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for diffContains @305:10...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](--[T](set1, ys), y))' VC for diffContains @305:10...
[[34m Info [0m] Cache hit: 'precond. (call -[T](--[T](set1, ys), y))' VC for diffContains @305:10...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, ys))' VC for diffContains @305:11...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, ys))' VC for diffContains @305:11...
[[34m Info [0m] - Checking cache: 'precond. (call subContains1[T](--[T](set1, ys), y, z))' VC for diffContains @305:44...
[[34m Info [0m] Cache hit: 'precond. (call subContains1[T](--[T](set1, ys), y, z))' VC for diffContains @305:44...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, ys))' VC for diffContains @305:57...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, ys))' VC for diffContains @305:57...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for diffContains @306:10...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for diffContains @306:10...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](set1, ys))' VC for diffContains @306:10...
[[34m Info [0m] Cache hit: 'precond. (call --[T](set1, ys))' VC for diffContains @306:10...
[[34m Info [0m] - Checking cache: 'precond. (call diffContains[T](set1, ys, z))' VC for diffContains @306:44...
[[34m Info [0m] Cache hit: 'precond. (call diffContains[T](set1, ys, z))' VC for diffContains @306:44...
[[34m Info [0m] - Checking cache: 'postcondition' VC for diffContains @297:70...
[[34m Info [0m] Cache hit: 'postcondition' VC for diffContains @297:70...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for diffContains @301:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for diffContains @301:5...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](that))' VC for -- @92:15...
[[34m Info [0m] Cache hit: 'precond. (call size[T](that))' VC for -- @92:15...
[[34m Info [0m] - Checking cache: 'precond. (call subIsSound[T](--[T](thiss, ys), y))' VC for -- @97:16...
[[34m Info [0m] Cache hit: 'precond. (call subIsSound[T](--[T](thiss, ys), y))' VC for -- @97:16...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](thiss, ys))' VC for -- @97:27...
[[34m Info [0m] Cache hit: 'precond. (call --[T](thiss, ys))' VC for -- @97:27...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](ys))' VC for -- @98:16...
[[34m Info [0m] Cache hit: 'precond. (call size[T](ys))' VC for -- @98:16...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](that))' VC for -- @98:26...
[[34m Info [0m] Cache hit: 'precond. (call size[T](that))' VC for -- @98:26...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](--[T](thiss, ys), y))' VC for -- @100:9...
[[34m Info [0m] Cache hit: 'precond. (call -[T](--[T](thiss, ys), y))' VC for -- @100:9...
[[34m Info [0m] - Checking cache: 'precond. (call --[T](thiss, ys))' VC for -- @100:10...
[[34m Info [0m] Cache hit: 'precond. (call --[T](thiss, ys))' VC for -- @100:10...
[[34m Info [0m] - Checking cache: 'body assertion' VC for -- @96:26...
[[34m Info [0m] Cache hit: 'body assertion' VC for -- @96:26...
[[34m Info [0m] - Checking cache: 'body assertion' VC for -- @98:9...
[[34m Info [0m] Cache hit: 'body assertion' VC for -- @98:9...
[[34m Info [0m] - Checking cache: 'postcondition' VC for -- @102:16...
[[34m Info [0m] Cache hit: 'postcondition' VC for -- @102:16...
[[34m Info [0m] - Checking cache: 'body assertion: Measure not guaranteed positive' VC for -- @94:5...
[[34m Info [0m] Cache hit: 'body assertion: Measure not guaranteed positive' VC for -- @94:5...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for -- @94:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for -- @94:5...
[[34m Info [0m] - Checking cache: 'precond. (call subIsSound[T](set, y), ind. on (set: USet[T] : USCons))' VC for subDecSize @318:12...
[[34m Info [0m] Cache hit: 'precond. (call subIsSound[T](set, y), ind. on (set: USet[T] : USCons))' VC for subDecSize @318:12...
[[34m Info [0m] - Checking cache: 'precond. (call subIsSound[T](set, y), ind. on (set: USet[T] : USNil))' VC for subDecSize @318:12...
[[34m Info [0m] Cache hit: 'precond. (call subIsSound[T](set, y), ind. on (set: USet[T] : USNil))' VC for subDecSize @318:12...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](-[T](set, y)), ind. on (set: USet[T] : USCons))' VC for subDecSize @320:26...
[[34m Info [0m] Cache hit: 'precond. (call size[T](-[T](set, y)), ind. on (set: USet[T] : USCons))' VC for subDecSize @320:26...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](-[T](set, y)), ind. on (set: USet[T] : USNil))' VC for subDecSize @320:26...
[[34m Info [0m] Cache hit: 'precond. (call size[T](-[T](set, y)), ind. on (set: USet[T] : USNil))' VC for subDecSize @320:26...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](set, y), ind. on (set: USet[T] : USCons))' VC for subDecSize @320:26...
[[34m Info [0m] Cache hit: 'precond. (call -[T](set, y), ind. on (set: USet[T] : USCons))' VC for subDecSize @320:26...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](set, y), ind. on (set: USet[T] : USNil))' VC for subDecSize @320:26...
[[34m Info [0m] Cache hit: 'precond. (call -[T](set, y), ind. on (set: USet[T] : USNil))' VC for subDecSize @320:26...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](set), ind. on (set: USet[T] : USCons))' VC for subDecSize @320:43...
[[34m Info [0m] Cache hit: 'precond. (call size[T](set), ind. on (set: USet[T] : USCons))' VC for subDecSize @320:43...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](set), ind. on (set: USet[T] : USNil))' VC for subDecSize @320:43...
[[34m Info [0m] Cache hit: 'precond. (call size[T](set), ind. on (set: USet[T] : USNil))' VC for subDecSize @320:43...
[[34m Info [0m] - Checking cache: 'body assertion' VC for subDecSize @318:5...
[[34m Info [0m] Cache hit: 'body assertion' VC for subDecSize @318:5...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set: USet[T] / USCons)' VC for subDecSize @316:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set: USet[T] / USCons)' VC for subDecSize @316:3...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set: USet[T] / USNil)' VC for subDecSize @316:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set: USet[T] / USNil)' VC for subDecSize @316:3...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](xs))' VC for size @46:33...
[[34m Info [0m] Cache hit: 'precond. (call size[T](xs))' VC for size @46:33...
[[34m Info [0m] - Checking cache: 'postcondition' VC for size @48:16...
[[34m Info [0m] Cache hit: 'postcondition' VC for size @48:16...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for size @44:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for size @44:5...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](set, y))' VC for subIsSound @168:18...
[[34m Info [0m] Cache hit: 'precond. (call -[T](set, y))' VC for subIsSound @168:18...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for subIsSound @175:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for subIsSound @175:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for subIsSound @175:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for subIsSound @175:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for subIsSound @175:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](|[Boolean, ...)' VC for subIsSound @175:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for subIsSound @175:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for subIsSound @175:9...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for subIsSound @175:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for subIsSound @175:9...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](set, y))' VC for subIsSound @175:22...
[[34m Info [0m] Cache hit: 'precond. (call -[T](set, y))' VC for subIsSound @175:22...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for subIsSound @176:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for subIsSound @176:9...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](xs, y))' VC for subIsSound @176:32...
[[34m Info [0m] Cache hit: 'precond. (call -[T](xs, y))' VC for subIsSound @176:32...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for subIsSound @177:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for subIsSound @177:9...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](xs, y))' VC for subIsSound @177:12...
[[34m Info [0m] Cache hit: 'precond. (call -[T](xs, y))' VC for subIsSound @177:12...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](xs, y))' VC for subIsSound @177:48...
[[34m Info [0m] Cache hit: 'precond. (call -[T](xs, y))' VC for subIsSound @177:48...
[[34m Info [0m] - Checking cache: 'precond. (call subIsSound[T](xs, y))' VC for subIsSound @177:61...
[[34m Info [0m] Cache hit: 'precond. (call subIsSound[T](xs, y))' VC for subIsSound @177:61...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for subIsSound @178:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for subIsSound @178:9...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](xs, y))' VC for subIsSound @178:11...
[[34m Info [0m] Cache hit: 'precond. (call -[T](xs, y))' VC for subIsSound @178:11...
[[34m Info [0m] - Checking cache: 'precond. (call subContains1[T](xs, y, x))' VC for subIsSound @178:61...
[[34m Info [0m] Cache hit: 'precond. (call subContains1[T](xs, y, x))' VC for subIsSound @178:61...
[[34m Info [0m] - Checking cache: 'postcondition' VC for subIsSound @166:52...
[[34m Info [0m] Cache hit: 'postcondition' VC for subIsSound @166:52...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for subIsSound @170:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for subIsSound @170:5...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](set, y), ind. on (set: USet[T] : USCons))' VC for subContains1 @163:6...
[[34m Info [0m] Cache hit: 'precond. (call -[T](set, y), ind. on (set: USet[T] : USCons))' VC for subContains1 @163:6...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](set, y), ind. on (set: USet[T] : USNil))' VC for subContains1 @163:6...
[[34m Info [0m] Cache hit: 'precond. (call -[T](set, y), ind. on (set: USet[T] : USNil))' VC for subContains1 @163:6...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set: USet[T] / USCons)' VC for subContains1 @161:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set: USet[T] / USCons)' VC for subContains1 @161:3...
[[34m Info [0m] - Checking cache: 'postcond. (ind. on set: USet[T] / USNil)' VC for subContains1 @161:3...
[[34m Info [0m] Cache hit: 'postcond. (ind. on set: USet[T] / USNil)' VC for subContains1 @161:3...
[[34m Info [0m] - Checking cache: 'precond. (call -[T](xs, y))' VC for - @86:24...
[[34m Info [0m] Cache hit: 'precond. (call -[T](xs, y))' VC for - @86:24...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for - @82:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for - @82:5...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for setInvariant @112:48...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for setInvariant @112:48...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for subsetOf @19:42...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for subsetOf @19:42...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for contains @14:33...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for contains @14:33...
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for exists
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for find
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for size
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for +
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for addIsSound
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for ++
[[34m Info [0m] => CLEARED (Decreases Processor)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for -
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subIsSound
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for --
[[34m Info [0m] => CLEARED (Decreases Processor)
[[34m Info [0m] Result for subsetTail
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetRefl
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetTrans
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetExists
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for unionOfSubsetsIsSubset
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for diffContains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for diffSubsetSize
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] - Checking cache: 'adt invariant' VC for apply @13:32...
[[34m Info [0m] Cache hit: 'adt invariant' VC for apply @13:32...
[[34m Info [0m] - Checking cache: 'adt invariant' VC for apply @14:28...
[[34m Info [0m] Cache hit: 'adt invariant' VC for apply @14:28...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for unapply @18:54...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for unapply @18:54...
[[34m Info [0m] - Checking cache: 'adt invariant' VC for unapply @20:36...
[[34m Info [0m] Cache hit: 'adt invariant' VC for unapply @20:36...
[[34m Info [0m] - Checking cache: 'precond. (call subsetIsSmallerOrEqual[T](set1.uset, set ...)' VC for subsetIsSmallerOrEqual @77:19...
[[34m Info [0m] Cache hit: 'precond. (call subsetIsSmallerOrEqual[T](set1.uset, set ...)' VC for subsetIsSmallerOrEqual @77:19...
[[34m Info [0m] - Checking cache: 'postcondition' VC for subsetIsSmallerOrEqual @74:72...
[[34m Info [0m] Cache hit: 'postcondition' VC for subsetIsSmallerOrEqual @74:72...
[[34m Info [0m] - Checking cache: 'precond. (call subsetOfUnion[T](set1.uset, set2.uset))' VC for subsetOfUnion @72:19...
[[34m Info [0m] Cache hit: 'precond. (call subsetOfUnion[T](set1.uset, set2.uset))' VC for subsetOfUnion @72:19...
[[34m Info [0m] - Checking cache: 'postcondition' VC for subsetOfUnion @71:5...
[[34m Info [0m] Cache hit: 'postcondition' VC for subsetOfUnion @71:5...
[[34m Info [0m] - Checking cache: 'precond. (call strictSubsetIsSmaller[T](set2.uset, set1 ...)' VC for strictSubsetIsSmaller @82:19...
[[34m Info [0m] Cache hit: 'precond. (call strictSubsetIsSmaller[T](set2.uset, set1 ...)' VC for strictSubsetIsSmaller @82:19...
[[34m Info [0m] - Checking cache: 'postcondition' VC for strictSubsetIsSmaller @79:71...
[[34m Info [0m] Cache hit: 'postcondition' VC for strictSubsetIsSmaller @79:71...
[[34m Info [0m] - Checking cache: 'postcondition' VC for sameRefl @53:5...
[[34m Info [0m] Cache hit: 'postcondition' VC for sameRefl @53:5...
[[34m Info [0m] - Checking cache: 'precond. (call size[T](thiss.uset))' VC for size @45:24...
[[34m Info [0m] Cache hit: 'precond. (call size[T](thiss.uset))' VC for size @45:24...
[[34m Info [0m] - Checking cache: 'postcondition' VC for size @45:47...
[[34m Info [0m] Cache hit: 'postcondition' VC for size @45:47...
[[34m Info [0m] - Checking cache: 'precond. (call sameTrans[T](set1.uset, set2.uset, set3. ...)' VC for sameTrans @59:19...
[[34m Info [0m] Cache hit: 'precond. (call sameTrans[T](set1.uset, set2.uset, set3. ...)' VC for sameTrans @59:19...
[[34m Info [0m] - Checking cache: 'postcondition' VC for sameTrans @56:73...
[[34m Info [0m] Cache hit: 'postcondition' VC for sameTrans @56:73...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set1, p))' VC for sameExists @63:5...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set1, p))' VC for sameExists @63:5...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](set2, p))' VC for sameExists @63:23...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](set2, p))' VC for sameExists @63:23...
[[34m Info [0m] - Checking cache: 'precond. (call sameExists[T](set1.uset, set2.uset, p))' VC for sameExists @64:19...
[[34m Info [0m] Cache hit: 'precond. (call sameExists[T](set1.uset, set2.uset, p))' VC for sameExists @64:19...
[[34m Info [0m] - Checking cache: 'postcondition' VC for sameExists @61:77...
[[34m Info [0m] Cache hit: 'postcondition' VC for sameExists @61:77...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for sameExists @61:49...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for sameExists @61:49...
[[34m Info [0m] - Checking cache: 'precond. (call exists[T](thiss.uset, p))' VC for exists @43:42...
[[34m Info [0m] Cache hit: 'precond. (call exists[T](thiss.uset, p))' VC for exists @43:42...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for exists @43:14...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for exists @43:14...
[[34m Info [0m] - Checking cache: 'precond. (call unionOfSubsetsIsSubset[T](set1.uset, set ...)' VC for unionOfSubsetsIsSubset @68:19...
[[34m Info [0m] Cache hit: 'precond. (call unionOfSubsetsIsSubset[T](set1.uset, set ...)' VC for unionOfSubsetsIsSubset @68:19...
[[34m Info [0m] - Checking cache: 'postcondition' VC for unionOfSubsetsIsSubset @67:5...
[[34m Info [0m] Cache hit: 'postcondition' VC for unionOfSubsetsIsSubset @67:5...
[[34m Info [0m] - Checking cache: 'precond. (call ++[T](thiss.uset, that.uset))' VC for ++ @47:38...
[[34m Info [0m] Cache hit: 'precond. (call ++[T](thiss.uset, that.uset))' VC for ++ @47:38...
[[34m Info [0m] - Checking cache: 'adt invariant' VC for ++ @47:34...
[[34m Info [0m] Cache hit: 'adt invariant' VC for ++ @47:34...
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for exists
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for size
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for size
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for +
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for addIsSound
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for ++
[[34m Info [0m] => CLEARED (Decreases Processor)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetTail
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetRefl
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetTrans
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for +
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for exists
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetExists
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for size
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for +
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for addIsSound
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for ++
[[34m Info [0m] => CLEARED (Decreases Processor)
[[34m Info [0m] Result for unionOfSubsetsIsSubset
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for size
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for +
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for addIsSound
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for ++
[[34m Info [0m] => CLEARED (Decreases Processor)
[[34m Info [0m] Result for unionOfSubsetsIsSubset
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetTail
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetRefl
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for -
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subIsSound
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for size
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for --
[[34m Info [0m] => CLEARED (Decreases Processor)
[[34m Info [0m] Result for diffContains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for diffSubsetSize
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for -
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subIsSound
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for size
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for --
[[34m Info [0m] => CLEARED (Decreases Processor)
[[34m Info [0m] Result for diffContains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for diffSubsetSize
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for exists
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for find
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for inv @75:1...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for inv @75:1...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for inv @75:1...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for inv @75:1...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](nfa, apply[State] ...)' VC for dfaNfaEquiv @66:16...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](nfa, apply[State] ...)' VC for dfaNfaEquiv @66:16...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosureIdem[State, Sym](nfa, apply[St ...)' VC for dfaNfaEquiv @67:12...
[[34m Info [0m] Cache hit: 'precond. (call epsClosureIdem[State, Sym](nfa, apply[St ...)' VC for dfaNfaEquiv @67:12...
[[34m Info [0m] - Checking cache: 'precond. (call lemma[State, Sym](nfa, init, word))' VC for dfaNfaEquiv @69:5...
[[34m Info [0m] Cache hit: 'precond. (call lemma[State, Sym](nfa, init, word))' VC for dfaNfaEquiv @69:5...
[[34m Info [0m] - Checking cache: 'precond. (call sameExists[State](run[State, Sym](nfa, i ...)' VC for dfaNfaEquiv @70:7...
[[34m Info [0m] Cache hit: 'precond. (call sameExists[State](run[State, Sym](nfa, i ...)' VC for dfaNfaEquiv @70:7...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](nfa, init, word))' VC for dfaNfaEquiv @70:18...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](nfa, init, word))' VC for dfaNfaEquiv @70:18...
[[34m Info [0m] - Checking cache: 'body assertion' VC for dfaNfaEquiv @67:5...
[[34m Info [0m] Cache hit: 'body assertion' VC for dfaNfaEquiv @67:5...
[[34m Info [0m] - Checking cache: 'postcondition' VC for dfaNfaEquiv @64:5...
[[34m Info [0m] Cache hit: 'postcondition' VC for dfaNfaEquiv @64:5...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosed[State, Sym](nfa, states))' VC for lemma @31:49...
[[34m Info [0m] Cache hit: 'precond. (call epsClosed[State, Sym](nfa, states))' VC for lemma @31:49...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @33:5...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @33:5...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for lemma @39:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for lemma @39:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for lemma @39:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for lemma @39:9...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for lemma @39:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for lemma @39:9...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @39:10...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @39:10...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for lemma @40:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for lemma @40:9...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](nfa, states))' VC for lemma @40:10...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](nfa, states))' VC for lemma @40:10...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosed[State, Sym](nfa, states))' VC for lemma @41:12...
[[34m Info [0m] Cache hit: 'precond. (call epsClosed[State, Sym](nfa, states))' VC for lemma @41:12...
[[34m Info [0m] - Checking cache: 'precond. (call sameTrans[State](states, epsClosure[Stat ...)' VC for lemma @42:14...
[[34m Info [0m] Cache hit: 'precond. (call sameTrans[State](states, epsClosure[Stat ...)' VC for lemma @42:14...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](nfa, states))' VC for lemma @42:32...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](nfa, states))' VC for lemma @42:32...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosureIdem[State, Sym](nfa, step))' VC for lemma @49:16...
[[34m Info [0m] Cache hit: 'precond. (call epsClosureIdem[State, Sym](nfa, step))' VC for lemma @49:16...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosed[State, Sym](nfa, epsClosure[St ...)' VC for lemma @50:16...
[[34m Info [0m] Cache hit: 'precond. (call epsClosed[State, Sym](nfa, epsClosure[St ...)' VC for lemma @50:16...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @50:30...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @50:30...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for lemma @52:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean](|[Boolean, Boolean, ...)' VC for lemma @52:9...
[[34m Info [0m] - Checking cache: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for lemma @52:9...
[[34m Info [0m] Cache hit: 'precond. (call |[Boolean, Boolean, Boolean](==|[Boolean ...)' VC for lemma @52:9...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for lemma @52:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for lemma @52:9...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @52:10...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @52:10...
[[34m Info [0m] - Checking cache: 'precond. (call ==|[Boolean]({ ...)' VC for lemma @53:9...
[[34m Info [0m] Cache hit: 'precond. (call ==|[Boolean]({ ...)' VC for lemma @53:9...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @53:10...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @53:10...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @53:45...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @53:45...
[[34m Info [0m] - Checking cache: 'precond. (call lemma[State, Sym](nfa, epsClosure[State, ...)' VC for lemma @54:12...
[[34m Info [0m] Cache hit: 'precond. (call lemma[State, Sym](nfa, epsClosure[State, ...)' VC for lemma @54:12...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @54:23...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @54:23...
[[34m Info [0m] - Checking cache: 'precond. (call sameTrans[State](run[State, Sym](nfa, st ...)' VC for lemma @55:14...
[[34m Info [0m] Cache hit: 'precond. (call sameTrans[State](run[State, Sym](nfa, st ...)' VC for lemma @55:14...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @55:24...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @55:24...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @56:30...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @56:30...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](nfa, epsClosure[State, S ...)' VC for lemma @57:22...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](nfa, epsClosure[State, S ...)' VC for lemma @57:22...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @57:30...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @57:30...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @58:10...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](nfa, states, word))' VC for lemma @58:10...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](nfa, epsClosure[State, S ...)' VC for lemma @58:37...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](nfa, epsClosure[State, S ...)' VC for lemma @58:37...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @58:45...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](nfa, step))' VC for lemma @58:45...
[[34m Info [0m] - Checking cache: 'body assertion' VC for lemma @49:9...
[[34m Info [0m] Cache hit: 'body assertion' VC for lemma @49:9...
[[34m Info [0m] - Checking cache: 'body assertion' VC for lemma @50:9...
[[34m Info [0m] Cache hit: 'body assertion' VC for lemma @50:9...
[[34m Info [0m] - Checking cache: 'postcondition' VC for lemma @30:53...
[[34m Info [0m] Cache hit: 'postcondition' VC for lemma @30:53...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for lemma @37:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for lemma @37:5...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](thiss, states))' VC for epsClosed @149:17...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](thiss, states))' VC for epsClosed @149:17...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[S, W](nfa, states))' VC for epsClosureIdem @173:5...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[S, W](nfa, states))' VC for epsClosureIdem @173:5...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[S, W](nfa, epsClosure[S, W](n ...)' VC for epsClosureIdem @173:33...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[S, W](nfa, epsClosure[S, W](n ...)' VC for epsClosureIdem @173:33...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[S, W](nfa, states))' VC for epsClosureIdem @173:48...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[S, W](nfa, states))' VC for epsClosureIdem @173:48...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosureIdem2[S, W](nfa, states))' VC for epsClosureIdem @175:5...
[[34m Info [0m] Cache hit: 'precond. (call epsClosureIdem2[S, W](nfa, states))' VC for epsClosureIdem @175:5...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[S, W](nfa, states))' VC for epsClosureIdem @175:46...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[S, W](nfa, states))' VC for epsClosureIdem @175:46...
[[34m Info [0m] - Checking cache: 'postcondition' VC for epsClosureIdem @171:69...
[[34m Info [0m] Cache hit: 'postcondition' VC for epsClosureIdem @171:69...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for accepts @88:5...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for accepts @88:5...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](thiss, apply[Stat ...)' VC for accepts @153:17...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](thiss, apply[Stat ...)' VC for accepts @153:17...
[[34m Info [0m] - Checking cache: 'precond. (call exists[State](run[State, Sym](thiss, sta ...)' VC for accepts @154:5...
[[34m Info [0m] Cache hit: 'precond. (call exists[State](run[State, Sym](thiss, sta ...)' VC for accepts @154:5...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](thiss, start, word))' VC for accepts @154:5...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](thiss, start, word))' VC for accepts @154:5...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](thiss, states))' VC for run @117:21...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](thiss, states))' VC for run @117:21...
[[34m Info [0m] - Checking cache: 'precond. (call run[State, Sym](thiss, epsClosure[State, ...)' VC for run @121:9...
[[34m Info [0m] Cache hit: 'precond. (call run[State, Sym](thiss, epsClosure[State, ...)' VC for run @121:9...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](thiss, newStates))' VC for run @121:13...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](thiss, newStates))' VC for run @121:13...
[[34m Info [0m] - Checking cache: 'body assertion' VC for run @120:9...
[[34m Info [0m] Cache hit: 'body assertion' VC for run @120:9...
[[34m Info [0m] - Checking cache: 'postcondition' VC for run @123:16...
[[34m Info [0m] Cache hit: 'postcondition' VC for run @123:16...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for run @116:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for run @116:5...
[[34m Info [0m] - Checking cache: 'precond. (call subsetIsSmallerOrEqual[State](states, th ...)' VC for epsClosure @127:15...
[[34m Info [0m] Cache hit: 'precond. (call subsetIsSmallerOrEqual[State](states, th ...)' VC for epsClosure @127:15...
[[34m Info [0m] - Checking cache: 'precond. (call strictSubsetIsSmaller[State](states, new ...)' VC for epsClosure @141:14...
[[34m Info [0m] Cache hit: 'precond. (call strictSubsetIsSmaller[State](states, new ...)' VC for epsClosure @141:14...
[[34m Info [0m] - Checking cache: 'precond. (call epsClosure[State, Sym](thiss, newStates))' VC for epsClosure @143:7...
[[34m Info [0m] Cache hit: 'precond. (call epsClosure[State, Sym](thiss, newStates))' VC for epsClosure @143:7...
[[34m Info [0m] - Checking cache: 'body assertion' VC for epsClosure @134:5...
[[34m Info [0m] Cache hit: 'body assertion' VC for epsClosure @134:5...
[[34m Info [0m] - Checking cache: 'body assertion' VC for epsClosure @135:5...
[[34m Info [0m] Cache hit: 'body assertion' VC for epsClosure @135:5...
[[34m Info [0m] - Checking cache: 'body assertion' VC for epsClosure @139:12...
[[34m Info [0m] Cache hit: 'body assertion' VC for epsClosure @139:12...
[[34m Info [0m] - Checking cache: 'body assertion' VC for epsClosure @141:7...
[[34m Info [0m] Cache hit: 'body assertion' VC for epsClosure @141:7...
[[34m Info [0m] - Checking cache: 'postcondition' VC for epsClosure @145:16...
[[34m Info [0m] Cache hit: 'postcondition' VC for epsClosure @145:16...
[[34m Info [0m] - Checking cache: 'body assertion: Measure not guaranteed positive' VC for epsClosure @131:5...
[[34m Info [0m] Cache hit: 'body assertion: Measure not guaranteed positive' VC for epsClosure @131:5...
[[34m Info [0m] - Checking cache: 'postcondition' VC for moveValid @162:5...
[[34m Info [0m] Cache hit: 'postcondition' VC for moveValid @162:5...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for moveValid @164:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for moveValid @164:5...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for moveValid @166:34...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for moveValid @166:34...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for move @108:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for move @108:5...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for move @109:24...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for move @109:24...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for inv @96:1...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for inv @96:1...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for inv @96:1...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for inv @96:1...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for inv @103:44...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for inv @103:44...
[[34m Info [0m] - Checking cache: 'match exhaustiveness' VC for run @81:5...
[[34m Info [0m] Cache hit: 'match exhaustiveness' VC for run @81:5...
[[34m Info [0m] - Checking cache: 'lambda precondition' VC for run @83:29...
[[34m Info [0m] Cache hit: 'lambda precondition' VC for run @83:29...
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for -
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subIsSound
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for size
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for --
[[34m Info [0m] => CLEARED (Decreases Processor)
[[34m Info [0m] Result for diffContains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for diffSubsetSize
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for +
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for run
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for exists
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for addIsSound
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for ++
[[34m Info [0m] => CLEARED (Decreases Processor)
[[34m Info [0m] Result for unionOfSubsetsIsSubset
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for move
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for moveValid
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for find
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetTail
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetRefl
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for epsClosure
[[34m Info [0m] => CLEARED (Decreases Processor)
[[34m Info [0m] Result for run
[[34m Info [0m] => CLEARED (Chain Processor)
[[34m Info [0m] Result for subsetTrans
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for lemma
[[34m Info [0m] => CLEARED (Chain Processor)
[[34m Info [0m] Result for contains
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subsetOf
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for setInvariant
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for -
[[34m Info [0m] => CLEARED (Relation Processor comparing sum of argument sizes)
[[34m Info [0m] Result for subIsSound