-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathevals.seminal.log
3066 lines (2756 loc) · 90.5 KB
/
evals.seminal.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
"20060302-21:24:02-246ce61683ae0484e1606c781c19f80f.seminal.ml"
Left "unexpected token TokBackArrow at line 13, column 22"
20060302-11:44:52-24ef771985d7d045ba7b08750298e016.seminal.ml
20060302-19:07:08-0c9a74768b1ce28cda245bf0300484f0.seminal.ml
20060302-17:41:14-78b119ef8daf7487521aecd4d482c13c.seminal.ml
("3","4")
("116","35")
("9","20")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because unit is incompatible with string
Stuck at:
line 9, column 9
due to values from:
line 7, column 3
print_string (reverse "fast")
20060302-19:21:02-d5696c8c12ef82896f4e7eced60e32c8.seminal.ml
("5","13")
20060302-18:51:58-07c030b8599493d2dad778213c2451af.seminal.ml
("2","13")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because (int * char) is incompatible with int
Stuck at:
line 2, column 3
due to values from:
<unknown>
line 2, column 15
<unknown>
reverseHelp _ _ _ _
20060302-21:11:18-9acb449819ae09c9d5f0d8926e89c41d.seminal.ml
("13","2")
SUCCESS!
*** Failed after 1 tests: Unbound variable: src
titlecase _
SUCCESS!
*** Failed after 1 tests: Error: unbound data constructor: Null
reverse _
20060302-19:14:56-24471d7711961e7e9bd5c4e991485f01.seminal.ml
("5","4")
20060303-20:51:08-b1062ae1e521cf11892c663425a3dda8.seminal.ml
("8","24")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because int is incompatible with 'a -> 'b
Stuck at:
line 3, column 23
due to values from:
line 3, column 23
line 3, column 26
reverseHelp 1 "cc"
20060302-21:10:04-38dc8291e8c39612a75396c81f0ca005.seminal.ml
("12","9")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because unit is incompatible with string
Stuck at:
line 8, column 25
due to values from:
line 8, column 25
line 7, column 17
prnt (Cons ("ac" , Null))
SUCCESS!
*** Failed after 4 tests: Type error: stuck because 'a -> 'b is incompatible with string
Stuck at:
line 5, column 5
due to values from:
line 2, column 16
line 1, column 31
reverseHelp 2 "bbb" _
SUCCESS!
*** Failed after 1 tests: Error: unbound data constructor: Null
reverse _
20060303-20:46:42-1b35868bafe72205ea7e97084a3529eb.seminal.ml
("5","21")
20060303-21:49:20-2bc1510b76bf11ac93785858fe7225ee.seminal.ml
("19","23")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because int lst is incompatible with string
Stuck at:
line 5, column 9
due to values from:
line 4, column 9
print_string x
20060303-20:53:58-e021a562c275370c34ca3ba963367424.seminal.ml
("11","16")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because unit is incompatible with string
Stuck at:
line 5, column 5
due to values from:
line 2, column 16
line 3, column 3
reverseHelp 1 "ab"
SUCCESS!
*** Failed after 1 tests: Type error: stuck because string list is incompatible with 'a lst
Stuck at:
line 7, column 5
due to values from:
line 11, column 16
append ["a"] ["b"]
20060305-20:46:34-89ba339c95f447a2829dad7d635f79f0.seminal.ml
("23","25")
20060302-17:59:30-23a435cfd9bc233c44ea620d0de3c444.seminal.ml
("2","2")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because string is incompatible with int
Stuck at:
line 2, column 3
due to values from:
<unknown>
line 2, column 13
reverseHelp _ _ ""
20060303-20:59:18-cec313538dab60fdbdbd549d4dfc8c22.seminal.ml
("11","22")
SUCCESS!
*** Failed after 2 tests: Unbound variable: lst2
append (Cons (_ , Null))
20060305-21:54:22-225f629e0d1a262f23af4cbcfa099317.seminal.ml
("27","25")
20060303-22:00:40-01a5cb3bf91aa2112c2a6c4201763826.seminal.ml
("23","20")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because int is incompatible with string
Stuck at:
line 18, column 3
due to values from:
line 27, column 33
map _ "b"
20060302-17:24:50-0043a91b08c0d77c155551e167ad8e89.seminal.ml
("5","7")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because unit is incompatible with string
Stuck at:
line 5, column 3
due to values from:
line 5, column 3
line 5, column 15
reverse _
20060305-22:14:52-12016d8b3cdc445959e85885bbc00c77.seminal.ml
("42","20")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because 'a -> 'b is incompatible with string
Stuck at:
line 23, column 9
due to values from:
line 17, column 15
print_string (map "test")
20060305-22:25:00-bfad48a8bb7388bdd92708919b46cbb2.seminal.ml
("37","15")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because 'a -> 'b is incompatible with string
Stuck at:
line 23, column 9
due to values from:
line 19, column 3
print_string (map reverse
"test")
20060302-17:25:04-7cc4ff612923f8094e8eb5f72b0e1f2c.seminal.ml
("8","18")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because string is incompatible with char
Stuck at:
line 8, column 9
due to values from:
line 5, column 10
print_char (reverse "fast")
20060305-21:49:26-9fc379ff0ebf471cca400f4c3b144205.seminal.ml
("21","6")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because string is incompatible with 'a list
Stuck at:
line 19, column 3
due to values from:
<unknown>
mapHelp _ "ca" _
20060305-21:56:00-9af22179cf4408715cbf337f5c3a534f.seminal.ml
("22","15")
SUCCESS!
*** Failed after 4 tests: Type error: stuck because unit is incompatible with string list
Stuck at:
line 0, column 0
due to values from:
output-type mismatch!
20060305-22:23:52-2cddd39a2e0ba2ddb9831a32c8c470f4.seminal.ml
("35","64")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because char is incompatible with string
Stuck at:
line 35, column 60
due to values from:
line 35, column 73
upperMatch 'a'
20060302-17:13:10-a8f4767ee6e6a7cde277182e105bfabc.seminal.ml
("5","12")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because char is incompatible with string
Stuck at:
line 5, column 1
due to values from:
line 2, column 3
print_string (reverse "test")
20060302-08:37:20-b8c86c351fe390ea1b61a078bd334bcb.seminal.ml
("1","16")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because string is incompatible with int
Stuck at:
line 1, column 17
due to values from:
line 1, column 9
line 1, column 21
let a = "hi" in a + 5
20060303-20:55:22-064afe0d9316ae21541c6f1171f85982.seminal.ml
("13","15")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because int list is incompatible with 'a lst
Stuck at:
line 7, column 5
due to values from:
line 4, column 9
append x y
20060306-08:28:18-863fd9c993226acc0132a40c3f5d3b7e.seminal.ml
("41","21")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because char list is incompatible with string
Stuck at:
line 42, column 9
due to values from:
line 21, column 6
print_string (uppercase "time")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because char list is incompatible with string
Stuck at:
line 41, column 9
due to values from:
line 22, column 6
print_string test
20060306-08:37:02-47b330576eb70ab4b956307ff1978ccc.seminal.ml
("50","20")
20060306-09:54:52-94bacf5a48d35fd1aa367bc565cc4abd.seminal.ml
("63","4")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because unit is incompatible with string
Stuck at:
line 50, column 9
due to values from:
line 45, column 5
print_string test
20060302-17:56:00-27ff2306cdb017964c28aea1d4f4f156.seminal.ml
("13","20")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because bool is incompatible with string
Stuck at:
line 13, column 9
due to values from:
line 7, column 3
print_string (reverseHelper "fast")
20060308-16:27:14-d2561594acb510c00ce747e7e54b07de.seminal.ml
("73","35")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because string is incompatible with char
Stuck at:
line 4, column 18
due to values from:
line 4, column 30
line 73, column 63
let arg1 =
Array.get Sys.argv 1 in
let ret = reverse arg1 in
let _ = print_endline ret in
let lst =
map charConvert arg1 in
let _ =
print_endline (printRec lst) in
let foldLeftString =
fold_left test_fold_left "null"
"abcdefgh" in
let _ =
print_endline foldLeftString in
let foldRightString =
fold_right test_fold_right
"abcdefgh" "null" in
print_endline foldRightString
SUCCESS!
NO WITNESS: 20060303-21:49:20-2bc1510b76bf11ac93785858fe7225ee.seminal.ml
+++ OK, passed 1000 tests.
20060308-17:58:24-ba6b10619bc62fead2d1d1fc3e4bcfc0.seminal.ml
("77","37")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because caseTester is incompatible with string
Stuck at:
line 25, column 35
due to values from:
line 77, column 39
line 25, column 41
titlecase "c"
20060306-08:32:58-cadc6088100ec722ce0c8ab60e81a45a.seminal.ml
("40","36")
SUCCESS!
*** Failed after 4 tests: Type error: stuck because 'a list is incompatible with string
Stuck at:
line 40, column 20
due to values from:
line 39, column 28
line 38, column 3
listToString [_ ; _] _
20060306-08:33:16-ec35aa1715ccf5f5b7fff55effcc06f0.seminal.ml
("44","17")
SUCCESS!
*** Failed after 4 tests: Type error: stuck because char is incompatible with string
Stuck at:
line 40, column 20
due to values from:
line 39, column 28
line 34, column 28
uppercase "cad"
20060306-09:32:26-9dfb57b0785b1229719704e079d51228.seminal.ml
("63","42")
SUCCESS!
*** Failed after 4 tests: Type error: stuck because 'a list is incompatible with 'b -> 'c
Stuck at:
line 0, column 0
due to values from:
output-type mismatch!
20060306-08:46:54-c09bb5fa4ade9b9834ebc0e95c303f20.seminal.ml
("40","33")
SUCCESS!
*** Failed after 2 tests: Type error: stuck because 'a list is incompatible with char
Stuck at:
line 40, column 35
due to values from:
<unknown>
listToString [_] _
20060308-16:43:26-9fc4f621ad5235ecb0a0bfe70ddbac27.seminal.ml
("75","24")
("75","24")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because char list is incompatible with string
Stuck at:
line 75, column 11
due to values from:
line 20, column 6
let arg1 =
Array.get Sys.argv 1 in
let ret = reverse arg1 in
let _ = print_endline ret in
let lst =
map charConvert arg1 in
let _ =
print_endline (printRec lst) in
let foldLeftString =
fold_left test_fold_left "null"
"abcdefgh" in
let _ =
print_endline foldLeftString in
let foldRightString =
fold_right test_fold_right
"abcdefgh" "null" in
let _ =
print_endline foldRightString in
let _ =
print_endline (uppercase arg1) in
print_endline (lowercase arg1)
SUCCESS!
NO WITNESS: 20060305-22:25:00-bfad48a8bb7388bdd92708919b46cbb2.seminal.ml
+++ OK, passed 1000 tests.
20060308-15:14:15-b4673217f9f876ace714063f276c1cb7.seminal.ml
("23","21")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because string -> 'a is incompatible with int
Stuck at:
line 23, column 22
due to values from:
line 23, column 36
map _ _
20060308-18:17:57-53a3b527552c251aa1421ce37caa859c.seminal.ml
("102","16")
20060308-15:14:55-8b55587ab02b2e74f5be9a1620ad164b.seminal.ml
("49","14")
SUCCESS!
*** Failed after 6 tests: Type error: stuck because string is incompatible with 'a list
Stuck at:
line 49, column 16
due to values from:
line 49, column 16
printRec [2 ; 3]
20060308-17:49:12-350bb6231959f879ee62f44461de9e70.seminal.ml
("72","46")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because char is incompatible with string
Stuck at:
line 17, column 14
due to values from:
<unknown>
test_title 'a'
(Tester (false , ""))
20060308-19:36:26-98875b907492a273c971c6c3494ccbbc.seminal.ml
("123","4")
("102","16")
("123","4")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because caseTester is incompatible with string
Stuck at:
line 102, column 3
due to values from:
line 74, column 7
let arg1 =
Array.get Sys.argv 1 in
let ret = reverse arg1 in
let _ = print_endline ret in
let lst =
map charConvert arg1 in
let _ =
print_endline (printRec lst) in
let foldLeftString =
fold_left test_fold_left "null"
arg1 in
let _ =
print_endline foldLeftString in
let foldRightString =
fold_right test_fold_right arg1
"null" in
let _ =
print_endline foldRightString in
let _ =
print_endline (uppercase arg1) in
let _ =
print_endline (lowercase arg1) in
print_endline (titlecase arg1)
("123","4")
20060308-19:19:12-06937106ff3926fe3963a0e5d3b99347.seminal.ml
("94","12")
("63","4")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because char is incompatible with string
Stuck at:
line 17, column 14
due to values from:
line 31, column 34
histogram "a"
20060311-23:47:13-bb5548edde7545872f33b6b15649642f.seminal.ml
("20","44")
SUCCESS!
*** Failed after 103 tests: Type error: stuck because 'a list is incompatible with int
Stuck at:
line 0, column 0
due to values from:
output-type mismatch!
20060308-19:58:35-73bc04d94b0b091a44df19c1baaf55f3.seminal.ml
("132","24")
("132","24")
("123","4")
("132","24")
20060308-19:14:09-035509263a843a367f5130529c008817.seminal.ml
("86","4")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because int is incompatible with bool
Stuck at:
line 86, column 9
due to values from:
line 86, column 13
histogram_fold (Counter (0 , 'a'))
'a'
20060311-23:38:59-d8f33461447ecf33f137a33374ccfae1.seminal.ml
("21","39")
SUCCESS!
*** Failed after 9 tests: Type error: stuck because int is incompatible with heapElement list
Stuck at:
line 0, column 0
due to values from:
output-type mismatch!
20060312-00:02:53-b5e4fbb55ad62a0991139e6650717758.seminal.ml
("23","39")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because ('a * 'b) is incompatible with int
Stuck at:
line 23, column 32
due to values from:
line 23, column 41
update _ _ _
20060312-00:03:36-75e554ed461a798f3b14545e2dfb6e02.seminal.ml
("27","23")
SUCCESS!
*** Failed after 4 tests: Type error: stuck because heapElement is incompatible with int
Stuck at:
line 29, column 18
due to values from:
<unknown>
<unknown>
interp_e [("cc" , IntEntry 1) ; ("d" , IntEntry 0) ; ("" , HeapEntry [])]
(Times (Int 0 , Var ""))
20060313-22:39:42-644d210e9d66cf006f61c64435b0efb3.seminal.ml
("35","22")
SUCCESS!
*** Failed after 2 tests: Type error: stuck because intorheap is incompatible with exp
Stuck at:
line 18, column 46
due to values from:
<unknown>
interp_e [("" , Heap [])]
(Var "")
20060316-17:28:56-cb82b8e194910fe2ced3aab54f0a7577.seminal.ml
("53","33")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because (string * int) is incompatible with (string * heapContain)
Stuck at:
line 34, column 23
due to values from:
line 34, column 23
interp_s []
(Assign ("" , Int 0))
20060313-22:34:26-a82a6e4c5612542497388ac707e1afcf.seminal.ml
("30","22")
SUCCESS!
*** Failed after 2 tests: Type error: stuck because (string * (string * intorheap) list) is incompatible with (string * intorheap)
Stuck at:
line 21, column 24
due to values from:
line 21, column 24
interp_prog (SaveHeap "")
20060316-18:23:48-78d82e8a55cd9a83edca023c74a4cc32.seminal.ml
("57","6")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because string is incompatible with heapContain
Stuck at:
line 56, column 24
due to values from:
<unknown>
interp_s [] (Restoreheap "")
20060316-23:16:56-c5c2fe4b8bf744437e4adaf36529464b.seminal.ml
("34","61")
SUCCESS!
*** Failed after 7 tests: Unbound variable: pi
interpLarge [Turn 0.90135009121983 ; Home ; For (0 , []) ; Forward 0.10920741481798535 ; Turn 0.84330471764851 ; Forward 3.577481779076879]
20060312-00:01:00-e429466fc820ac64a608a8302289bcb7.seminal.ml
("20","17")
SUCCESS!
*** Failed after 2 tests: Type error: stuck because int is incompatible with ('a * 'b)
Stuck at:
line 19, column 7
due to values from:
<unknown>
lookup [IntEntry 0] _
20060316-15:04:22-646d45fc661ea972e495854dafda19d7.seminal.ml
("19","48")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because float is incompatible with int
Stuck at:
line 19, column 52
due to values from:
line 19, column 52
line 19, column 56
makePoly _ 0.0
20060316-19:34:40-21991f746ce1d63c2b7ecd57ca2fccea.seminal.ml
("106","19")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because stmt is incompatible with 'a list
Stuck at:
<unknown>
due to values from:
line 90, column 20
print_heap (stmtsToSeq stmts) _
20060316-18:34:06-d422060219a7891f487cd20b421acb81.seminal.ml
("41","16")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because heapContain is incompatible with int
Stuck at:
line 43, column 18
due to values from:
<unknown>
line 19, column 11
interp_e []
(Times (Int 0 , Var ""))
20060313-20:23:36-95bbcfafa3a38ccac06f556bd50a04cc.seminal.ml
("29","16")
("132","24")
SUCCESS!
*** Failed after 2 tests: Type error: stuck because heapElement is incompatible with int
Stuck at:
line 29, column 18
due to values from:
line 27, column 17
line 27, column 17
interp_e []
(Plus (Int 0 , Int 0))
20060316-17:48:30-214ae1ff72fdc57fe9fcb9d441c5126a.seminal.ml
("42","16")
SUCCESS!
*** Failed after 2 tests: Type error: stuck because heapContain is incompatible with int
Stuck at:
line 42, column 18
due to values from:
line 40, column 17
line 19, column 11
interp_e []
(Plus (Int 0 , Var ""))
20060316-23:15:56-8740564a90852da99c1d1bd7bef8897e.seminal.ml
("29","40")
SUCCESS!
*** Failed after 4 tests: Unbound variable: pi
interpLarge [Turn 0.0]
20060313-23:03:58-c9d9c96a5c92d44ea888b2bf8287ed92.seminal.ml
("35","22")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because intorheap is incompatible with exp
Stuck at:
line 27, column 46
due to values from:
<unknown>
interp_e [("bb" , Int 0) ; ("" , Heap [])]
(Plus (Var "" , Heap []))
20060316-23:07:58-2378bc775661a7c89604be96966c4259.seminal.ml
("15","48")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because move list is incompatible with 'a -> 'b
Stuck at:
line 15, column 3
due to values from:
line 15, column 3
line 17, column 7
makePoly 0.0 0.0
20060316-18:53:54-be762b624eb6b35410f5e00547f2a579.seminal.ml
("53","35")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because (string * exp) is incompatible with (string * heapEntry)
Stuck at:
line 30, column 23
due to values from:
line 30, column 23
interp_s []
(Assign ("" , Int 0))
20060317-20:59:44-36ef05a00938aacce23d0d13a4c3a945.seminal.ml
("41","49")
SUCCESS!
*** Failed after 6 tests: Type error: stuck because 'a -> 'b is incompatible with ('c * 'd * 'e)
Stuck at:
line 43, column 9
due to values from:
line 38, column 35
interpLarge [Turn 0.47435005133283514 ; Turn 1.3283349521958265 ; Turn 0.0 ; For (2 , [For (0 , []) ; For (0 , []) ; Turn 0.48718189852726357 ; Forward 0.0])]
("123","4")
20060317-20:59:10-62548773f8854de2f4ec54a035814283.seminal.ml
("35","43")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because int is incompatible with float
Stuck at:
line 35, column 44
due to values from:
line 35, column 44
line 11, column 10
interpLarge [Turn 0.0 ; Turn 0.7063418417108963]
20060317-21:37:11-096a01551f7cdd335b3d20437b761729.seminal.ml
("21","52")
SUCCESS!
*** Failed after 2 tests: Type error: stuck because int is incompatible with float
Stuck at:
line 17, column 8
due to values from:
line 22, column 33
<unknown>
makePoly 0.6152423794991447 _
20060317-22:27:21-c75f0b5055a771be100553afb174be0d.seminal.ml
("49","14")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because unit is incompatible with 'a list
Stuck at:
line 49, column 6
due to values from:
line 33, column 17
interpLarge []
20060319-13:25:22-d82ce217b923933f541e5e4c291912ff.seminal.ml
("50","48")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because string is incompatible with heap
Stuck at:
line 50, column 40
due to values from:
line 50, column 50
Seq (testProgram1 , Saveheap "myheap1")
20060319-14:52:14-bd3d537e5d622471db44fef57470b962.seminal.ml
("37","33")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because (string * int) is incompatible with (string * heapVar)
Stuck at:
line 18, column 23
due to values from:
line 18, column 23
interp_s []
(Assign ("" , Var ""))
20060319-18:49:00-0ea44925eea84a1e4d0c6ce516154075.seminal.ml
("55","23")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because move is incompatible with move list
Stuck at:
line 55, column 12
due to values from:
line 11, column 26
interpLarge example_logo_prog
20060319-19:49:56-1687e8b7d88c855ff1225445c6cbd4e3.seminal.ml
("41","16")
("132","24")
SUCCESS!
NO WITNESS: 20060319-19:49:56-1687e8b7d88c855ff1225445c6cbd4e3.seminal.ml
+++ OK, passed 1000 tests.
20060319-20:22:42-d63e90715d3fa73c6f01d82b97c2c2b9.seminal.ml
("51","21")
SUCCESS!
*** Failed after 5 tests: Type error: stuck because float is incompatible with int
Stuck at:
line 59, column 12
due to values from:
line 62, column 27
line 51, column 22
interpSmall [Home ; Forward 0.11140640659417089 ; Home]
20060317-22:27:40-749212b202dba76c8efe1df72c2fa36c.seminal.ml
("71","46")
("71","46")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because unit is incompatible with 'a list
Stuck at:
line 75, column 3
due to values from:
line 64, column 36
interpSmall []
20060319-13:43:18-06b44c2851b0cf81bcb54bfa7f1abe36.seminal.ml
("40","33")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because int is incompatible with heapVar
Stuck at:
line 42, column 25
due to values from:
line 15, column 11
interp_s [] (RestoreHeap "")
20060319-13:26:52-dfb16e91c8f77833a400015941114cd0.seminal.ml
("39","18")
SUCCESS!
*** Failed after 6 tests: Type error: stuck because (string * int) list is incompatible with stmt
Stuck at:
line 0, column 0
due to values from:
output-type mismatch!
20060319-15:07:50-8f39f32b5a36e11a9464ad6fec165b06.seminal.ml
("43","23")
SUCCESS!
*** Failed after 2 tests: Type error: stuck because heapVar is incompatible with heap
Stuck at:
line 33, column 18
due to values from:
line 15, column 11
<unknown>
interp_s [("a" , HeapInt 0)]
(Seq (RestoreHeap "" , SaveHeap ""))
20060319-19:23:28-3cc736accbce3e21a783db2d0f187c96.seminal.ml
("18","18")
("123","4")
SUCCESS!
*** Failed after 94 tests: Type error: stuck because (float * float) list is incompatible with (float * float)
Stuck at:
line 18, column 19
due to values from:
line 18, column 19
interpLarge [Home ; Home]
20060319-20:05:30-6fc146372dae315728baa58e4bee26df.seminal.ml
("39","16")
SUCCESS!
NO WITNESS: 20060319-20:05:30-6fc146372dae315728baa58e4bee26df.seminal.ml
+++ OK, passed 1000 tests.
20060319-18:31:02-58a2a6ce864ad7931326ad63f6ecd7dc.seminal.ml
("6","14")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because float is incompatible with int
Stuck at:
line 6, column 11
due to values from:
line 6, column 11
line 5, column 10
2 * pi
20060319-19:25:12-f00bf018aea70324f68ac0ba0f808cae.seminal.ml
("18","18")
("132","24")
SUCCESS!
NO WITNESS: 20060319-19:25:12-f00bf018aea70324f68ac0ba0f808cae.seminal.ml
+++ OK, passed 1000 tests.
20060319-20:09:28-2e71af609448d8c60fd4e0273e9ff9bd.seminal.ml
("58","4")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because 'a -> 'b is incompatible with 'c list
Stuck at:
line 60, column 3
due to values from:
line 56, column 16
interpSmall []
20060319-14:09:00-2446404578b9f18bfa9723208c094098.seminal.ml
("23","23")
SUCCESS!
*** Failed after 5 tests: Type error: stuck because int is incompatible with heapVar
Stuck at:
line 0, column 0
due to values from:
output-type mismatch!
20060319-20:25:40-ab4845a572308a5afc057b8957487498.seminal.ml
("61","8")
SUCCESS!
*** Failed after 3 tests: Type error: stuck because ('a -> 'b * float * float * 'c * (float * float) list) is incompatible with 'd list
Stuck at:
line 63, column 3
due to values from:
line 61, column 9
interpSmall [For (1 , []) ; Turn 0.0]
20060319-18:48:20-a64278e668714e05e9749ccd7ca65773.seminal.ml
("54","32")
SUCCESS!
*** Failed after 1 tests: Type error: stuck because 'a -> 'b is incompatible with move list
Stuck at:
line 55, column 12
due to values from:
interpLarge example_logo_prog
20060319-19:42:18-5f0bde7ab1d576545f4d89f88dab34e9.seminal.ml
("49","11")
SUCCESS!
*** Failed after 9 tests: Type error: stuck because 'b list is incompatible with 'b list list
Stuck at:
line 0, column 0
due to values from:
output-type mismatch!
20060319-20:12:50-9e05cf3ce7d3e32b370b305e43ceb96e.seminal.ml
("59","11")
*** Failed after 1 tests: Error: <timeout after 3000 steps>
let arg1 =
Array.get Sys.argv 1 in
let ret = reverse arg1 in
let _ = print_endline ret in
let lst =
map charConvert arg1 in
let _ =
print_endline (printRec lst) in
let foldLeftString =
fold_left test_fold_left "null"
arg1 in
let _ =
print_endline foldLeftString in
let foldRightString =
fold_right test_fold_right arg1
"null" in
let _ =
print_endline foldRightString in
let _ =
print_endline (uppercase arg1) in
let _ =
print_endline (lowercase arg1) in
let test = titlecase arg1 in
let _ =
match test with
| Tester (b , s) -> print_endline s in
let histData = histogram arg1 in
match histData with
| Counter (i , c) -> print_endline (string_of_int i)
20060319-20:31:44-c7d3dae870ff326c6e2fd8bf9e61eaac.seminal.ml
("87","24")
SUCCESS!
*** Failed after 6 tests: Type error: stuck because (move list * float * float * float) is incompatible with 'a list
Stuck at:
line 59, column 3
due to values from:
line 51, column 18
interpSmall [Home ; Turn 0.0 ; Turn 0.8046802309819705]
20060319-20:33:22-bcfa231f83876c0dc43b07ef583566dd.seminal.ml
("63","16")
SUCCESS!
*** Failed after 5 tests: Type error: stuck because (float * float) list is incompatible with (float * float)
Stuck at:
line 63, column 17
due to values from:
line 63, column 17
interpSmall []
20060319-20:54:18-c6f1941f5de39e516e26f06cc990b9ca.seminal.ml
("84","31")
("87","24")
("84","31")
*** Failed after 1 tests: Error: <timeout after 3000 steps>
let arg1 =
Array.get Sys.argv 1 in
let ret = reverse arg1 in
let _ = print_endline ret in
let lst =
map charConvert arg1 in
let _ =
print_endline (printRec lst) in
let foldLeftString =
fold_left test_fold_left "null"
arg1 in
let _ =
print_endline foldLeftString in
let foldRightString =
fold_right test_fold_right arg1
"null" in
let _ =
print_endline foldRightString in
let _ =
print_endline (uppercase arg1) in
let _ =
print_endline (lowercase arg1) in
let test = titlecase arg1 in
let _ =
match test with