forked from cisco/ChezScheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatch-compile-2-t-f-f
6089 lines (6089 loc) · 566 KB
/
patch-compile-2-t-f-f
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
*** errors-compile-2-f-f-f 2017-06-06 16:12:00.046943669 -0400
--- errors-compile-2-t-f-f 2017-06-06 16:21:29.501865805 -0400
***************
*** 93,99 ****
3.mo:Expected error in mat case-lambda: "incorrect number of arguments to #<procedure foo>".
3.mo:Expected error in mat case-lambda: "incorrect number of arguments to #<procedure foo>".
3.mo:Expected error in mat case-lambda: "incorrect number of arguments to #<procedure foo>".
! 3.mo:Expected error in mat let: "incorrect argument count in call ((lambda (x . r) (eq? x (...))))".
3.mo:Expected error in mat letrec: "variable f is not bound".
3.mo:Expected error in mat letrec: "attempt to reference undefined variable a".
3.mo:Expected error in mat letrec: "attempt to assign undefined variable b".
--- 93,99 ----
3.mo:Expected error in mat case-lambda: "incorrect number of arguments to #<procedure foo>".
3.mo:Expected error in mat case-lambda: "incorrect number of arguments to #<procedure foo>".
3.mo:Expected error in mat case-lambda: "incorrect number of arguments to #<procedure foo>".
! 3.mo:Expected error in mat let: "incorrect argument count in call ((lambda (x . r) ((...) x (...))))".
3.mo:Expected error in mat letrec: "variable f is not bound".
3.mo:Expected error in mat letrec: "attempt to reference undefined variable a".
3.mo:Expected error in mat letrec: "attempt to assign undefined variable b".
***************
*** 191,202 ****
3.mo:Expected error in mat mrvs: "returned three values to single value return context".
3.mo:Expected error in mat mrvs: "returned three values to single value return context".
3.mo:Expected error in mat mrvs: "returned zero values to single value return context".
! 3.mo:Expected error in mat mrvs: "incorrect number of values received in multiple value context".
! 3.mo:Expected error in mat mrvs: "returned zero values to single value return context".
! 3.mo:Expected error in mat mrvs: "incorrect number of values received in multiple value context".
! 3.mo:Expected error in mat mrvs: "incorrect number of values received in multiple value context".
3.mo:Expected error in mat mrvs: "variable $mrvs-foo is not bound".
! 3.mo:Expected error in mat mrvs: "attempt to apply non-procedure 17".
3.mo:Expected error in mat mrvs: "returned two values to single value return context".
3.mo:Expected error in mat mrvs: "returned two values to single value return context".
3.mo:Expected error in mat mrvs: "cdr: a is not a pair".
--- 191,202 ----
3.mo:Expected error in mat mrvs: "returned three values to single value return context".
3.mo:Expected error in mat mrvs: "returned three values to single value return context".
3.mo:Expected error in mat mrvs: "returned zero values to single value return context".
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments to #<procedure>".
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments to #<procedure>".
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments to #<procedure>".
! 3.mo:Expected error in mat mrvs: "incorrect number of arguments to #<procedure>".
3.mo:Expected error in mat mrvs: "variable $mrvs-foo is not bound".
! 3.mo:Expected error in mat mrvs: "call-with-values: 17 is not a procedure".
3.mo:Expected error in mat mrvs: "returned two values to single value return context".
3.mo:Expected error in mat mrvs: "returned two values to single value return context".
3.mo:Expected error in mat mrvs: "cdr: a is not a pair".
***************
*** 233,240 ****
3.mo:Expected error in mat let*-values: "let*-values: incorrect number of values from rhs 1".
3.mo:Expected error in mat let*-values: "let*-values: incorrect number of values from rhs 1".
3.mo:Expected error in mat let*-values: "let-values: duplicate bound identifier x in (let*-values (((...) (...))) (list x w))".
! 4.mo:Expected error in mat apply: "incorrect argument count in call (apply)".
! 4.mo:Expected error in mat apply: "incorrect argument count in call (apply list)".
4.mo:Expected error in mat apply: "apply: 3 is not a proper list".
4.mo:Expected error in mat apply: "apply: 4 is not a proper list".
4.mo:Expected error in mat apply: "apply: (3 4 5 6 7 8 . 9) is not a proper list".
--- 233,240 ----
3.mo:Expected error in mat let*-values: "let*-values: incorrect number of values from rhs 1".
3.mo:Expected error in mat let*-values: "let*-values: incorrect number of values from rhs 1".
3.mo:Expected error in mat let*-values: "let-values: duplicate bound identifier x in (let*-values (((...) (...))) (list x w))".
! 4.mo:Expected error in mat apply: "incorrect number of arguments to #<procedure apply>".
! 4.mo:Expected error in mat apply: "incorrect number of arguments to #<procedure apply>".
4.mo:Expected error in mat apply: "apply: 3 is not a proper list".
4.mo:Expected error in mat apply: "apply: 4 is not a proper list".
4.mo:Expected error in mat apply: "apply: (3 4 5 6 7 8 . 9) is not a proper list".
***************
*** 493,500 ****
4.mo:Expected error in mat $primitive: "invalid primitive name fubar".
4.mo:Expected error in mat $primitive: "incorrect argument count in call (car (quote a) (quote b))".
4.mo:Expected error in mat $primitive: "car: 3 is not a pair".
! 5_1.mo:Expected error in mat boolean=?: "incorrect argument count in call (boolean=?)".
! 5_1.mo:Expected error in mat boolean=?: "incorrect argument count in call (boolean=? #f)".
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
--- 493,500 ----
4.mo:Expected error in mat $primitive: "invalid primitive name fubar".
4.mo:Expected error in mat $primitive: "incorrect argument count in call (car (quote a) (quote b))".
4.mo:Expected error in mat $primitive: "car: 3 is not a pair".
! 5_1.mo:Expected error in mat boolean=?: "incorrect number of arguments to #<procedure boolean=?>".
! 5_1.mo:Expected error in mat boolean=?: "incorrect number of arguments to #<procedure boolean=?>".
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
***************
*** 504,511 ****
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
! 5_1.mo:Expected error in mat symbol=?: "incorrect argument count in call (symbol=?)".
! 5_1.mo:Expected error in mat symbol=?: "incorrect argument count in call (symbol=? (quote f))".
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
--- 504,511 ----
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
5_1.mo:Expected error in mat boolean=?: "boolean=?: 3 is not a boolean".
! 5_1.mo:Expected error in mat symbol=?: "incorrect number of arguments to #<procedure symbol=?>".
! 5_1.mo:Expected error in mat symbol=?: "incorrect number of arguments to #<procedure symbol=?>".
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
5_1.mo:Expected error in mat symbol=?: "symbol=?: 3 is not a symbol".
***************
*** 547,554 ****
5_2.mo:Expected error in mat c....r-errors: "cddadr: incorrect list structure (a . b)".
5_2.mo:Expected error in mat c....r-errors: "cdddar: incorrect list structure (a . b)".
5_2.mo:Expected error in mat c....r-errors: "cddddr: incorrect list structure (a . b)".
! 5_2.mo:Expected error in mat list*: "incorrect argument count in call (list*)".
! 5_2.mo:Expected error in mat cons*: "incorrect argument count in call (cons*)".
5_2.mo:Expected error in mat list-ref: "list-ref: a is not a proper list".
5_2.mo:Expected error in mat list-ref: "list-ref: (a b . c) is not a proper list".
5_2.mo:Expected error in mat list-ref: "list-ref: index 4 is out of range for list (a b)".
--- 547,554 ----
5_2.mo:Expected error in mat c....r-errors: "cddadr: incorrect list structure (a . b)".
5_2.mo:Expected error in mat c....r-errors: "cdddar: incorrect list structure (a . b)".
5_2.mo:Expected error in mat c....r-errors: "cddddr: incorrect list structure (a . b)".
! 5_2.mo:Expected error in mat list*: "incorrect number of arguments to #<procedure list*>".
! 5_2.mo:Expected error in mat cons*: "incorrect number of arguments to #<procedure cons*>".
5_2.mo:Expected error in mat list-ref: "list-ref: a is not a proper list".
5_2.mo:Expected error in mat list-ref: "list-ref: (a b . c) is not a proper list".
5_2.mo:Expected error in mat list-ref: "list-ref: index 4 is out of range for list (a b)".
***************
*** 635,647 ****
5_2.mo:Expected error in mat append!: "append!: (b a b a b a ...) is circular".
5_2.mo:Expected error in mat append!: "append!: (c d a b a b ...) is circular".
5_2.mo:Expected error in mat append!: "append!: (a b . c) is not a proper list".
! 5_2.mo:Expected error in mat reverse: "incorrect argument count in call (reverse)".
5_2.mo:Expected error in mat reverse: "reverse: a is not a proper list".
5_2.mo:Expected error in mat reverse: "reverse: (a b . c) is not a proper list".
5_2.mo:Expected error in mat reverse: "reverse: (a b a b a b ...) is circular".
5_2.mo:Expected error in mat reverse: "reverse: (b a b a b a ...) is circular".
5_2.mo:Expected error in mat reverse: "reverse: (a b a b a b ...) is circular".
! 5_2.mo:Expected error in mat reverse!: "incorrect argument count in call (reverse!)".
5_2.mo:Expected error in mat reverse!: "reverse!: a is not a proper list".
5_2.mo:Expected error in mat reverse!: "reverse!: (a b . c) is not a proper list".
5_2.mo:Expected error in mat reverse!: "reverse!: (a b a b a b ...) is circular".
--- 635,647 ----
5_2.mo:Expected error in mat append!: "append!: (b a b a b a ...) is circular".
5_2.mo:Expected error in mat append!: "append!: (c d a b a b ...) is circular".
5_2.mo:Expected error in mat append!: "append!: (a b . c) is not a proper list".
! 5_2.mo:Expected error in mat reverse: "incorrect number of arguments to #<procedure reverse>".
5_2.mo:Expected error in mat reverse: "reverse: a is not a proper list".
5_2.mo:Expected error in mat reverse: "reverse: (a b . c) is not a proper list".
5_2.mo:Expected error in mat reverse: "reverse: (a b a b a b ...) is circular".
5_2.mo:Expected error in mat reverse: "reverse: (b a b a b a ...) is circular".
5_2.mo:Expected error in mat reverse: "reverse: (a b a b a b ...) is circular".
! 5_2.mo:Expected error in mat reverse!: "incorrect number of arguments to #<procedure reverse!>".
5_2.mo:Expected error in mat reverse!: "reverse!: a is not a proper list".
5_2.mo:Expected error in mat reverse!: "reverse!: (a b . c) is not a proper list".
5_2.mo:Expected error in mat reverse!: "reverse!: (a b a b a b ...) is circular".
***************
*** 654,671 ****
5_2.mo:Expected error in mat find: "find: improper list (a b . c)".
5_2.mo:Expected error in mat find: "find: improper list (a b c . d)".
5_2.mo:Expected error in mat find: "find: a is not a procedure".
! 5_2.mo:Expected error in mat memq: "incorrect argument count in call (memq)".
! 5_2.mo:Expected error in mat memq: "incorrect argument count in call (memq (quote c))".
5_2.mo:Expected error in mat memq: "memq: improper list a".
5_2.mo:Expected error in mat memq: "memq: cyclic list (a b a b a b ...)".
5_2.mo:Expected error in mat memq: "memq: improper list (a b . c)".
! 5_2.mo:Expected error in mat memv: "incorrect argument count in call (memv)".
! 5_2.mo:Expected error in mat memv: "incorrect argument count in call (memv (quote c))".
5_2.mo:Expected error in mat memv: "memv: improper list a".
5_2.mo:Expected error in mat memv: "memv: cyclic list (a b a b a b ...)".
5_2.mo:Expected error in mat memv: "memv: improper list (a b . c)".
! 5_2.mo:Expected error in mat member: "incorrect argument count in call (member)".
! 5_2.mo:Expected error in mat member: "incorrect argument count in call (member (quote c))".
5_2.mo:Expected error in mat member: "member: improper list a".
5_2.mo:Expected error in mat member: "member: cyclic list (a b a b a b ...)".
5_2.mo:Expected error in mat member: "member: improper list (a b . c)".
--- 654,671 ----
5_2.mo:Expected error in mat find: "find: improper list (a b . c)".
5_2.mo:Expected error in mat find: "find: improper list (a b c . d)".
5_2.mo:Expected error in mat find: "find: a is not a procedure".
! 5_2.mo:Expected error in mat memq: "incorrect number of arguments to #<procedure memq>".
! 5_2.mo:Expected error in mat memq: "incorrect number of arguments to #<procedure memq>".
5_2.mo:Expected error in mat memq: "memq: improper list a".
5_2.mo:Expected error in mat memq: "memq: cyclic list (a b a b a b ...)".
5_2.mo:Expected error in mat memq: "memq: improper list (a b . c)".
! 5_2.mo:Expected error in mat memv: "incorrect number of arguments to #<procedure memv>".
! 5_2.mo:Expected error in mat memv: "incorrect number of arguments to #<procedure memv>".
5_2.mo:Expected error in mat memv: "memv: improper list a".
5_2.mo:Expected error in mat memv: "memv: cyclic list (a b a b a b ...)".
5_2.mo:Expected error in mat memv: "memv: improper list (a b . c)".
! 5_2.mo:Expected error in mat member: "incorrect number of arguments to #<procedure member>".
! 5_2.mo:Expected error in mat member: "incorrect number of arguments to #<procedure member>".
5_2.mo:Expected error in mat member: "member: improper list a".
5_2.mo:Expected error in mat member: "member: cyclic list (a b a b a b ...)".
5_2.mo:Expected error in mat member: "member: improper list (a b . c)".
***************
*** 708,717 ****
5_2.mo:Expected error in mat assv: "assv: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
5_2.mo:Expected error in mat assoc: "assoc: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
5_2.mo:Expected error in mat assoc: "assoc: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
! 5_2.mo:Expected error in mat sort: "incorrect argument count in call (sort)".
! 5_2.mo:Expected error in mat sort: "incorrect argument count in call (sort >)".
! 5_2.mo:Expected error in mat sort: "incorrect argument count in call (sort (quote (a b c)))".
! 5_2.mo:Expected error in mat sort: "incorrect argument count in call (sort > (quote (1 2 3)) #t)".
5_2.mo:Expected error in mat sort: "sort: 3 is not a proper list".
5_2.mo:Expected error in mat sort: "sort: #(1 2 3) is not a proper list".
5_2.mo:Expected error in mat sort: "sort: (1 2 . 3) is not a proper list".
--- 708,717 ----
5_2.mo:Expected error in mat assv: "assv: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
5_2.mo:Expected error in mat assoc: "assoc: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
5_2.mo:Expected error in mat assoc: "assoc: cyclic alist ((a . 1) (b . 2) (3.2 . 3) ("a" . 4) (a . 1) (b . 2) ...)".
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments to #<procedure sort>".
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments to #<procedure sort>".
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments to #<procedure sort>".
! 5_2.mo:Expected error in mat sort: "incorrect number of arguments to #<procedure sort>".
5_2.mo:Expected error in mat sort: "sort: 3 is not a proper list".
5_2.mo:Expected error in mat sort: "sort: #(1 2 3) is not a proper list".
5_2.mo:Expected error in mat sort: "sort: (1 2 . 3) is not a proper list".
***************
*** 720,729 ****
5_2.mo:Expected error in mat sort: "sort: (q p a b a b ...) is circular".
5_2.mo:Expected error in mat sort: "sort: (a b c) is not a procedure".
5_2.mo:Expected error in mat sort: ">: b is not a real number".
! 5_2.mo:Expected error in mat list-sort: "incorrect argument count in call (list-sort)".
! 5_2.mo:Expected error in mat list-sort: "incorrect argument count in call (list-sort >)".
! 5_2.mo:Expected error in mat list-sort: "incorrect argument count in call (list-sort (quote (a b c)))".
! 5_2.mo:Expected error in mat list-sort: "incorrect argument count in call (list-sort > (quote (1 2 3)) #t)".
5_2.mo:Expected error in mat list-sort: "list-sort: 3 is not a proper list".
5_2.mo:Expected error in mat list-sort: "list-sort: #(1 2 3) is not a proper list".
5_2.mo:Expected error in mat list-sort: "list-sort: (1 2 . 3) is not a proper list".
--- 720,729 ----
5_2.mo:Expected error in mat sort: "sort: (q p a b a b ...) is circular".
5_2.mo:Expected error in mat sort: "sort: (a b c) is not a procedure".
5_2.mo:Expected error in mat sort: ">: b is not a real number".
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments to #<procedure list-sort>".
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments to #<procedure list-sort>".
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments to #<procedure list-sort>".
! 5_2.mo:Expected error in mat list-sort: "incorrect number of arguments to #<procedure list-sort>".
5_2.mo:Expected error in mat list-sort: "list-sort: 3 is not a proper list".
5_2.mo:Expected error in mat list-sort: "list-sort: #(1 2 3) is not a proper list".
5_2.mo:Expected error in mat list-sort: "list-sort: (1 2 . 3) is not a proper list".
***************
*** 732,741 ****
5_2.mo:Expected error in mat list-sort: "list-sort: (q p a b a b ...) is circular".
5_2.mo:Expected error in mat list-sort: "list-sort: (a b c) is not a procedure".
5_2.mo:Expected error in mat list-sort: ">: b is not a real number".
! 5_2.mo:Expected error in mat sort!: "incorrect argument count in call (sort!)".
! 5_2.mo:Expected error in mat sort!: "incorrect argument count in call (sort! >)".
! 5_2.mo:Expected error in mat sort!: "incorrect argument count in call (sort! (quote (a b c)))".
! 5_2.mo:Expected error in mat sort!: "incorrect argument count in call (sort! > (quote (1 2 3)) #t)".
5_2.mo:Expected error in mat sort!: "sort!: 3 is not a proper list".
5_2.mo:Expected error in mat sort!: "sort!: #(1 2 3) is not a proper list".
5_2.mo:Expected error in mat sort!: "sort!: (1 2 . 3) is not a proper list".
--- 732,741 ----
5_2.mo:Expected error in mat list-sort: "list-sort: (q p a b a b ...) is circular".
5_2.mo:Expected error in mat list-sort: "list-sort: (a b c) is not a procedure".
5_2.mo:Expected error in mat list-sort: ">: b is not a real number".
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments to #<procedure sort!>".
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments to #<procedure sort!>".
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments to #<procedure sort!>".
! 5_2.mo:Expected error in mat sort!: "incorrect number of arguments to #<procedure sort!>".
5_2.mo:Expected error in mat sort!: "sort!: 3 is not a proper list".
5_2.mo:Expected error in mat sort!: "sort!: #(1 2 3) is not a proper list".
5_2.mo:Expected error in mat sort!: "sort!: (1 2 . 3) is not a proper list".
***************
*** 764,781 ****
5_2.mo:Expected error in mat iota: "iota: -1 is not a nonnegative fixnum".
5_2.mo:Expected error in mat iota: "iota: 1000000000000000000000000000000 is not a nonnegative fixnum".
5_2.mo:Expected error in mat iota: "iota: 3/4 is not a nonnegative fixnum".
! 5_2.mo:Expected error in mat iota: "incorrect argument count in call (iota)".
! 5_2.mo:Expected error in mat iota: "incorrect argument count in call (iota 3 17)".
5_2.mo:Expected error in mat enumerate: "enumerate: a is not a proper list".
5_2.mo:Expected error in mat enumerate: "enumerate: (a . b) is not a proper list".
5_2.mo:Expected error in mat enumerate: "enumerate: (a b a b a b ...) is circular".
! 5_2.mo:Expected error in mat enumerate: "incorrect argument count in call (enumerate)".
! 5_2.mo:Expected error in mat enumerate: "incorrect argument count in call (enumerate (quote (a b c)) (quote (d e f)))".
5_3.mo:Expected error in mat string->number: "string->number: a is not a string".
5_3.mo:Expected error in mat string->number: "string->number: 0 is not a valid radix".
5_3.mo:Expected error in mat string->number: "string->number: 37 is not a valid radix".
5_3.mo:Expected error in mat string->number: "string->number: a is not a valid radix".
! 5_3.mo:Expected error in mat string->number: "incorrect argument count in call (string->number "a" 10 10)".
5_3.mo:Expected error in mat r6rs:string->number: "string->number: a is not a string".
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 0 is not a valid radix".
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 37 is not a valid radix".
--- 764,781 ----
5_2.mo:Expected error in mat iota: "iota: -1 is not a nonnegative fixnum".
5_2.mo:Expected error in mat iota: "iota: 1000000000000000000000000000000 is not a nonnegative fixnum".
5_2.mo:Expected error in mat iota: "iota: 3/4 is not a nonnegative fixnum".
! 5_2.mo:Expected error in mat iota: "incorrect number of arguments to #<procedure iota>".
! 5_2.mo:Expected error in mat iota: "incorrect number of arguments to #<procedure iota>".
5_2.mo:Expected error in mat enumerate: "enumerate: a is not a proper list".
5_2.mo:Expected error in mat enumerate: "enumerate: (a . b) is not a proper list".
5_2.mo:Expected error in mat enumerate: "enumerate: (a b a b a b ...) is circular".
! 5_2.mo:Expected error in mat enumerate: "incorrect number of arguments to #<procedure enumerate>".
! 5_2.mo:Expected error in mat enumerate: "incorrect number of arguments to #<procedure enumerate>".
5_3.mo:Expected error in mat string->number: "string->number: a is not a string".
5_3.mo:Expected error in mat string->number: "string->number: 0 is not a valid radix".
5_3.mo:Expected error in mat string->number: "string->number: 37 is not a valid radix".
5_3.mo:Expected error in mat string->number: "string->number: a is not a valid radix".
! 5_3.mo:Expected error in mat string->number: "incorrect number of arguments to #<procedure string->number>".
5_3.mo:Expected error in mat r6rs:string->number: "string->number: a is not a string".
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 0 is not a valid radix".
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 37 is not a valid radix".
***************
*** 786,792 ****
5_3.mo:Expected error in mat r6rs:string->number: "string->number: <int> is not a valid radix".
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 36 is not a valid radix".
5_3.mo:Expected error in mat r6rs:string->number: "string->number: a is not a valid radix".
! 5_3.mo:Expected error in mat r6rs:string->number: "incorrect argument count in call (string->number "a" 10 10)".
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
--- 786,792 ----
5_3.mo:Expected error in mat r6rs:string->number: "string->number: <int> is not a valid radix".
5_3.mo:Expected error in mat r6rs:string->number: "string->number: 36 is not a valid radix".
5_3.mo:Expected error in mat r6rs:string->number: "string->number: a is not a valid radix".
! 5_3.mo:Expected error in mat r6rs:string->number: "incorrect number of arguments to #<procedure string->number>".
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
5_3.mo:Expected error in mat number->string: "number->string: a is not a number".
***************
*** 822,828 ****
5_3.mo:Expected error in mat r6rs:number->string: "number->string: a precision is specified and radix 16 is not 10".
5_3.mo:Expected error in mat exact?: "exact?: a is not a number".
5_3.mo:Expected error in mat inexact?: "inexact?: () is not a number".
! 5_3.mo:Expected error in mat =: "incorrect argument count in call (=)".
5_3.mo:Expected error in mat =: "=: a is not a number".
5_3.mo:Expected error in mat =: "=: a is not a number".
5_3.mo:Expected error in mat =: "=: a is not a number".
--- 822,828 ----
5_3.mo:Expected error in mat r6rs:number->string: "number->string: a precision is specified and radix 16 is not 10".
5_3.mo:Expected error in mat exact?: "exact?: a is not a number".
5_3.mo:Expected error in mat inexact?: "inexact?: () is not a number".
! 5_3.mo:Expected error in mat =: "incorrect number of arguments to #<procedure =>".
5_3.mo:Expected error in mat =: "=: a is not a number".
5_3.mo:Expected error in mat =: "=: a is not a number".
5_3.mo:Expected error in mat =: "=: a is not a number".
***************
*** 831,837 ****
5_3.mo:Expected error in mat =: "=: a is not a number".
5_3.mo:Expected error in mat =: "=: a is not a number".
5_3.mo:Expected error in mat =: "=: a is not a number".
! 5_3.mo:Expected error in mat <: "incorrect argument count in call (<)".
5_3.mo:Expected error in mat <: "<: a is not a real number".
5_3.mo:Expected error in mat <: "<: a is not a real number".
5_3.mo:Expected error in mat <: "<: a is not a real number".
--- 831,837 ----
5_3.mo:Expected error in mat =: "=: a is not a number".
5_3.mo:Expected error in mat =: "=: a is not a number".
5_3.mo:Expected error in mat =: "=: a is not a number".
! 5_3.mo:Expected error in mat <: "incorrect number of arguments to #<procedure <>".
5_3.mo:Expected error in mat <: "<: a is not a real number".
5_3.mo:Expected error in mat <: "<: a is not a real number".
5_3.mo:Expected error in mat <: "<: a is not a real number".
***************
*** 851,857 ****
5_3.mo:Expected error in mat <: "<: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat <: "<: 2+1i is not a real number".
5_3.mo:Expected error in mat <: "<: 3+1i is not a real number".
! 5_3.mo:Expected error in mat <=: "incorrect argument count in call (<=)".
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
--- 851,857 ----
5_3.mo:Expected error in mat <: "<: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat <: "<: 2+1i is not a real number".
5_3.mo:Expected error in mat <: "<: 3+1i is not a real number".
! 5_3.mo:Expected error in mat <=: "incorrect number of arguments to #<procedure <=>".
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
5_3.mo:Expected error in mat <=: "<=: a is not a real number".
***************
*** 871,877 ****
5_3.mo:Expected error in mat <=: "<=: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat <=: "<=: 2+1i is not a real number".
5_3.mo:Expected error in mat <=: "<=: 3+1i is not a real number".
! 5_3.mo:Expected error in mat >: "incorrect argument count in call (>)".
5_3.mo:Expected error in mat >: ">: a is not a real number".
5_3.mo:Expected error in mat >: ">: a is not a real number".
5_3.mo:Expected error in mat >: ">: a is not a real number".
--- 871,877 ----
5_3.mo:Expected error in mat <=: "<=: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat <=: "<=: 2+1i is not a real number".
5_3.mo:Expected error in mat <=: "<=: 3+1i is not a real number".
! 5_3.mo:Expected error in mat >: "incorrect number of arguments to #<procedure >>".
5_3.mo:Expected error in mat >: ">: a is not a real number".
5_3.mo:Expected error in mat >: ">: a is not a real number".
5_3.mo:Expected error in mat >: ">: a is not a real number".
***************
*** 891,897 ****
5_3.mo:Expected error in mat >: ">: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat >: ">: 2+1i is not a real number".
5_3.mo:Expected error in mat >: ">: 3+1i is not a real number".
! 5_3.mo:Expected error in mat >=: "incorrect argument count in call (>=)".
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
--- 891,897 ----
5_3.mo:Expected error in mat >: ">: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat >: ">: 2+1i is not a real number".
5_3.mo:Expected error in mat >: ">: 3+1i is not a real number".
! 5_3.mo:Expected error in mat >=: "incorrect number of arguments to #<procedure >=>".
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
5_3.mo:Expected error in mat >=: ">=: a is not a real number".
***************
*** 911,918 ****
5_3.mo:Expected error in mat >=: ">=: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat >=: ">=: 2+1i is not a real number".
5_3.mo:Expected error in mat >=: ">=: 3+1i is not a real number".
! 5_3.mo:Expected error in mat r6rs:=: "incorrect argument count in call (=)".
! 5_3.mo:Expected error in mat r6rs:=: "incorrect argument count in call (= 3)".
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
--- 911,918 ----
5_3.mo:Expected error in mat >=: ">=: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat >=: ">=: 2+1i is not a real number".
5_3.mo:Expected error in mat >=: ">=: 3+1i is not a real number".
! 5_3.mo:Expected error in mat r6rs:=: "incorrect number of arguments to #<procedure =>".
! 5_3.mo:Expected error in mat r6rs:=: "incorrect number of arguments to #<procedure =>".
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
***************
*** 920,927 ****
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
! 5_3.mo:Expected error in mat r6rs:<: "incorrect argument count in call (<)".
! 5_3.mo:Expected error in mat r6rs:<: "incorrect argument count in call (< 3)".
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
--- 920,927 ----
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
5_3.mo:Expected error in mat r6rs:=: "=: a is not a number".
! 5_3.mo:Expected error in mat r6rs:<: "incorrect number of arguments to #<procedure <>".
! 5_3.mo:Expected error in mat r6rs:<: "incorrect number of arguments to #<procedure <>".
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
5_3.mo:Expected error in mat r6rs:<: "<: a is not a real number".
***************
*** 932,939 ****
5_3.mo:Expected error in mat r6rs:<: "<: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat r6rs:<: "<: 2+1i is not a real number".
5_3.mo:Expected error in mat r6rs:<: "<: 3+1i is not a real number".
! 5_3.mo:Expected error in mat r6rs:<=: "incorrect argument count in call (<=)".
! 5_3.mo:Expected error in mat r6rs:<=: "incorrect argument count in call (<= 3)".
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
--- 932,939 ----
5_3.mo:Expected error in mat r6rs:<: "<: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat r6rs:<: "<: 2+1i is not a real number".
5_3.mo:Expected error in mat r6rs:<: "<: 3+1i is not a real number".
! 5_3.mo:Expected error in mat r6rs:<=: "incorrect number of arguments to #<procedure <=>".
! 5_3.mo:Expected error in mat r6rs:<=: "incorrect number of arguments to #<procedure <=>".
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
5_3.mo:Expected error in mat r6rs:<=: "<=: a is not a real number".
***************
*** 944,951 ****
5_3.mo:Expected error in mat r6rs:<=: "<=: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat r6rs:<=: "<=: 2+1i is not a real number".
5_3.mo:Expected error in mat r6rs:<=: "<=: 3+1i is not a real number".
! 5_3.mo:Expected error in mat r6rs:>: "incorrect argument count in call (>)".
! 5_3.mo:Expected error in mat r6rs:>: "incorrect argument count in call (> 3)".
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
--- 944,951 ----
5_3.mo:Expected error in mat r6rs:<=: "<=: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat r6rs:<=: "<=: 2+1i is not a real number".
5_3.mo:Expected error in mat r6rs:<=: "<=: 3+1i is not a real number".
! 5_3.mo:Expected error in mat r6rs:>: "incorrect number of arguments to #<procedure >>".
! 5_3.mo:Expected error in mat r6rs:>: "incorrect number of arguments to #<procedure >>".
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
5_3.mo:Expected error in mat r6rs:>: ">: a is not a real number".
***************
*** 956,963 ****
5_3.mo:Expected error in mat r6rs:>: ">: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat r6rs:>: ">: 2+1i is not a real number".
5_3.mo:Expected error in mat r6rs:>: ">: 3+1i is not a real number".
! 5_3.mo:Expected error in mat r6rs:>=: "incorrect argument count in call (>=)".
! 5_3.mo:Expected error in mat r6rs:>=: "incorrect argument count in call (>= 3)".
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
--- 956,963 ----
5_3.mo:Expected error in mat r6rs:>: ">: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat r6rs:>: ">: 2+1i is not a real number".
5_3.mo:Expected error in mat r6rs:>: ">: 3+1i is not a real number".
! 5_3.mo:Expected error in mat r6rs:>=: "incorrect number of arguments to #<procedure >=>".
! 5_3.mo:Expected error in mat r6rs:>=: "incorrect number of arguments to #<procedure >=>".
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
5_3.mo:Expected error in mat r6rs:>=: ">=: a is not a real number".
***************
*** 977,983 ****
5_3.mo:Expected error in mat +: "oops".
5_3.mo:Expected error in mat +: "+: #f is not a number".
5_3.mo:Expected error in mat +: "+: #f is not a number".
! 5_3.mo:Expected error in mat -: "incorrect argument count in call (-)".
5_3.mo:Expected error in mat -: "-: a is not a number".
5_3.mo:Expected error in mat -: "-: a is not a number".
5_3.mo:Expected error in mat -: "-: a is not a number".
--- 977,983 ----
5_3.mo:Expected error in mat +: "oops".
5_3.mo:Expected error in mat +: "+: #f is not a number".
5_3.mo:Expected error in mat +: "+: #f is not a number".
! 5_3.mo:Expected error in mat -: "incorrect number of arguments to #<procedure ->".
5_3.mo:Expected error in mat -: "-: a is not a number".
5_3.mo:Expected error in mat -: "-: a is not a number".
5_3.mo:Expected error in mat -: "-: a is not a number".
***************
*** 990,996 ****
5_3.mo:Expected error in mat *: "*: a is not a number".
5_3.mo:Expected error in mat *: "*: #f is not a number".
5_3.mo:Expected error in mat *: "*: #f is not a number".
! 5_3.mo:Expected error in mat /: "incorrect argument count in call (/)".
5_3.mo:Expected error in mat /: "/: a is not a number".
5_3.mo:Expected error in mat /: "/: a is not a number".
5_3.mo:Expected error in mat /: "/: a is not a number".
--- 990,996 ----
5_3.mo:Expected error in mat *: "*: a is not a number".
5_3.mo:Expected error in mat *: "*: #f is not a number".
5_3.mo:Expected error in mat *: "*: #f is not a number".
! 5_3.mo:Expected error in mat /: "incorrect number of arguments to #<procedure />".
5_3.mo:Expected error in mat /: "/: a is not a number".
5_3.mo:Expected error in mat /: "/: a is not a number".
5_3.mo:Expected error in mat /: "/: a is not a number".
***************
*** 1004,1067 ****
5_3.mo:Expected error in mat infinite?: "infinite?: a is not a real number".
5_3.mo:Expected error in mat infinite?: "infinite?: 3+4i is not a real number".
5_3.mo:Expected error in mat infinite?: "infinite?: 3.0-0.0i is not a real number".
! 5_3.mo:Expected error in mat zero?: "incorrect argument count in call (zero?)".
! 5_3.mo:Expected error in mat zero?: "incorrect argument count in call (zero? 0 1)".
5_3.mo:Expected error in mat zero?: "zero?: a is not a number".
! 5_3.mo:Expected error in mat positive?: "incorrect argument count in call (positive?)".
! 5_3.mo:Expected error in mat positive?: "incorrect argument count in call (positive? 0 1)".
5_3.mo:Expected error in mat positive?: "positive?: a is not a real number".
5_3.mo:Expected error in mat positive?: "positive?: 1.0+1.0i is not a real number".
5_3.mo:Expected error in mat positive?: "positive?: 1+1i is not a real number".
5_3.mo:Expected error in mat positive?: "positive?: 1.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat nonpositive?: "incorrect argument count in call (nonpositive?)".
! 5_3.mo:Expected error in mat nonpositive?: "incorrect argument count in call (nonpositive? 0 1)".
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: a is not a real number".
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1.0+1.0i is not a real number".
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1+1i is not a real number".
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat negative?: "incorrect argument count in call (negative?)".
! 5_3.mo:Expected error in mat negative?: "incorrect argument count in call (negative? 0 1)".
5_3.mo:Expected error in mat negative?: "negative?: a is not a real number".
5_3.mo:Expected error in mat negative?: "negative?: 1.0+1.0i is not a real number".
5_3.mo:Expected error in mat negative?: "negative?: 1+1i is not a real number".
5_3.mo:Expected error in mat negative?: "negative?: 1.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat nonnegative?: "incorrect argument count in call (nonnegative?)".
! 5_3.mo:Expected error in mat nonnegative?: "incorrect argument count in call (nonnegative? 0 1)".
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: a is not a real number".
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1+1i is not a real number".
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1.0+1.0i is not a real number".
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat even?: "incorrect argument count in call (even?)".
! 5_3.mo:Expected error in mat even?: "incorrect argument count in call (even? 0 1)".
5_3.mo:Expected error in mat even?: "even?: a is not an integer".
5_3.mo:Expected error in mat even?: "even?: 3.2 is not an integer".
5_3.mo:Expected error in mat even?: "even?: 3.0+1.0i is not an integer".
5_3.mo:Expected error in mat even?: "even?: 1+1i is not an integer".
! 5_3.mo:Expected error in mat odd?: "incorrect argument count in call (odd?)".
! 5_3.mo:Expected error in mat odd?: "incorrect argument count in call (odd? 0 1)".
5_3.mo:Expected error in mat odd?: "odd?: a is not an integer".
5_3.mo:Expected error in mat odd?: "odd?: 3.2 is not an integer".
5_3.mo:Expected error in mat odd?: "odd?: 3.0+1.0i is not an integer".
5_3.mo:Expected error in mat odd?: "odd?: 3+1i is not an integer".
! 5_3.mo:Expected error in mat \x31;+: "incorrect argument count in call (\x31;+)".
! 5_3.mo:Expected error in mat \x31;+: "incorrect argument count in call (\x31;+ 0 1)".
5_3.mo:Expected error in mat \x31;+: "1+: a is not a number".
! 5_3.mo:Expected error in mat add1: "incorrect argument count in call (add1)".
! 5_3.mo:Expected error in mat add1: "incorrect argument count in call (add1 0 1)".
5_3.mo:Expected error in mat add1: "add1: a is not a number".
! 5_3.mo:Expected error in mat \x31;-: "incorrect argument count in call (\x31;-)".
! 5_3.mo:Expected error in mat \x31;-: "incorrect argument count in call (\x31;- 0 1)".
5_3.mo:Expected error in mat \x31;-: "1-: a is not a number".
! 5_3.mo:Expected error in mat sub1: "incorrect argument count in call (sub1)".
! 5_3.mo:Expected error in mat sub1: "incorrect argument count in call (sub1 0 1)".
5_3.mo:Expected error in mat sub1: "sub1: a is not a number".
! 5_3.mo:Expected error in mat \x2D;1+: "incorrect argument count in call (\x2D;1+)".
! 5_3.mo:Expected error in mat \x2D;1+: "incorrect argument count in call (\x2D;1+ 0 1)".
5_3.mo:Expected error in mat \x2D;1+: "-1+: a is not a number".
! 5_3.mo:Expected error in mat quotient: "incorrect argument count in call (quotient)".
! 5_3.mo:Expected error in mat quotient: "incorrect argument count in call (quotient 1)".
5_3.mo:Expected error in mat quotient: "quotient: undefined for 0".
! 5_3.mo:Expected error in mat quotient: "incorrect argument count in call (quotient 1 2 3)".
5_3.mo:Expected error in mat quotient: "quotient: a is not an integer".
5_3.mo:Expected error in mat quotient: "quotient: a is not an integer".
5_3.mo:Expected error in mat quotient: "quotient: 2/5 is not an integer".
--- 1004,1067 ----
5_3.mo:Expected error in mat infinite?: "infinite?: a is not a real number".
5_3.mo:Expected error in mat infinite?: "infinite?: 3+4i is not a real number".
5_3.mo:Expected error in mat infinite?: "infinite?: 3.0-0.0i is not a real number".
! 5_3.mo:Expected error in mat zero?: "incorrect number of arguments to #<procedure zero?>".
! 5_3.mo:Expected error in mat zero?: "incorrect number of arguments to #<procedure zero?>".
5_3.mo:Expected error in mat zero?: "zero?: a is not a number".
! 5_3.mo:Expected error in mat positive?: "incorrect number of arguments to #<procedure positive?>".
! 5_3.mo:Expected error in mat positive?: "incorrect number of arguments to #<procedure positive?>".
5_3.mo:Expected error in mat positive?: "positive?: a is not a real number".
5_3.mo:Expected error in mat positive?: "positive?: 1.0+1.0i is not a real number".
5_3.mo:Expected error in mat positive?: "positive?: 1+1i is not a real number".
5_3.mo:Expected error in mat positive?: "positive?: 1.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat nonpositive?: "incorrect number of arguments to #<procedure nonpositive?>".
! 5_3.mo:Expected error in mat nonpositive?: "incorrect number of arguments to #<procedure nonpositive?>".
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: a is not a real number".
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1.0+1.0i is not a real number".
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1+1i is not a real number".
5_3.mo:Expected error in mat nonpositive?: "nonpositive?: 1.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat negative?: "incorrect number of arguments to #<procedure negative?>".
! 5_3.mo:Expected error in mat negative?: "incorrect number of arguments to #<procedure negative?>".
5_3.mo:Expected error in mat negative?: "negative?: a is not a real number".
5_3.mo:Expected error in mat negative?: "negative?: 1.0+1.0i is not a real number".
5_3.mo:Expected error in mat negative?: "negative?: 1+1i is not a real number".
5_3.mo:Expected error in mat negative?: "negative?: 1.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat nonnegative?: "incorrect number of arguments to #<procedure nonnegative?>".
! 5_3.mo:Expected error in mat nonnegative?: "incorrect number of arguments to #<procedure nonnegative?>".
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: a is not a real number".
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1+1i is not a real number".
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1.0+1.0i is not a real number".
5_3.mo:Expected error in mat nonnegative?: "nonnegative?: 1.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat even?: "incorrect number of arguments to #<procedure even?>".
! 5_3.mo:Expected error in mat even?: "incorrect number of arguments to #<procedure even?>".
5_3.mo:Expected error in mat even?: "even?: a is not an integer".
5_3.mo:Expected error in mat even?: "even?: 3.2 is not an integer".
5_3.mo:Expected error in mat even?: "even?: 3.0+1.0i is not an integer".
5_3.mo:Expected error in mat even?: "even?: 1+1i is not an integer".
! 5_3.mo:Expected error in mat odd?: "incorrect number of arguments to #<procedure odd?>".
! 5_3.mo:Expected error in mat odd?: "incorrect number of arguments to #<procedure odd?>".
5_3.mo:Expected error in mat odd?: "odd?: a is not an integer".
5_3.mo:Expected error in mat odd?: "odd?: 3.2 is not an integer".
5_3.mo:Expected error in mat odd?: "odd?: 3.0+1.0i is not an integer".
5_3.mo:Expected error in mat odd?: "odd?: 3+1i is not an integer".
! 5_3.mo:Expected error in mat \x31;+: "incorrect number of arguments to #<procedure 1+>".
! 5_3.mo:Expected error in mat \x31;+: "incorrect number of arguments to #<procedure 1+>".
5_3.mo:Expected error in mat \x31;+: "1+: a is not a number".
! 5_3.mo:Expected error in mat add1: "incorrect number of arguments to #<procedure add1>".
! 5_3.mo:Expected error in mat add1: "incorrect number of arguments to #<procedure add1>".
5_3.mo:Expected error in mat add1: "add1: a is not a number".
! 5_3.mo:Expected error in mat \x31;-: "incorrect number of arguments to #<procedure 1->".
! 5_3.mo:Expected error in mat \x31;-: "incorrect number of arguments to #<procedure 1->".
5_3.mo:Expected error in mat \x31;-: "1-: a is not a number".
! 5_3.mo:Expected error in mat sub1: "incorrect number of arguments to #<procedure sub1>".
! 5_3.mo:Expected error in mat sub1: "incorrect number of arguments to #<procedure sub1>".
5_3.mo:Expected error in mat sub1: "sub1: a is not a number".
! 5_3.mo:Expected error in mat \x2D;1+: "incorrect number of arguments to #<procedure -1+>".
! 5_3.mo:Expected error in mat \x2D;1+: "incorrect number of arguments to #<procedure -1+>".
5_3.mo:Expected error in mat \x2D;1+: "-1+: a is not a number".
! 5_3.mo:Expected error in mat quotient: "incorrect number of arguments to #<procedure quotient>".
! 5_3.mo:Expected error in mat quotient: "incorrect number of arguments to #<procedure quotient>".
5_3.mo:Expected error in mat quotient: "quotient: undefined for 0".
! 5_3.mo:Expected error in mat quotient: "incorrect number of arguments to #<procedure quotient>".
5_3.mo:Expected error in mat quotient: "quotient: a is not an integer".
5_3.mo:Expected error in mat quotient: "quotient: a is not an integer".
5_3.mo:Expected error in mat quotient: "quotient: 2/5 is not an integer".
***************
*** 1074,1083 ****
5_3.mo:Expected error in mat quotient: "quotient: 2+1i is not an integer".
5_3.mo:Expected error in mat quotient: "quotient: 2+1i is not an integer".
5_3.mo:Expected error in mat quotient: "quotient: 2.0+1.0i is not an integer".
! 5_3.mo:Expected error in mat remainder: "incorrect argument count in call (remainder)".
! 5_3.mo:Expected error in mat remainder: "incorrect argument count in call (remainder 1)".
5_3.mo:Expected error in mat remainder: "remainder: undefined for 0".
! 5_3.mo:Expected error in mat remainder: "incorrect argument count in call (remainder 1 2 3)".
5_3.mo:Expected error in mat remainder: "remainder: a is not an integer".
5_3.mo:Expected error in mat remainder: "remainder: a is not an integer".
5_3.mo:Expected error in mat remainder: "remainder: 2/5 is not an integer".
--- 1074,1083 ----
5_3.mo:Expected error in mat quotient: "quotient: 2+1i is not an integer".
5_3.mo:Expected error in mat quotient: "quotient: 2+1i is not an integer".
5_3.mo:Expected error in mat quotient: "quotient: 2.0+1.0i is not an integer".
! 5_3.mo:Expected error in mat remainder: "incorrect number of arguments to #<procedure remainder>".
! 5_3.mo:Expected error in mat remainder: "incorrect number of arguments to #<procedure remainder>".
5_3.mo:Expected error in mat remainder: "remainder: undefined for 0".
! 5_3.mo:Expected error in mat remainder: "incorrect number of arguments to #<procedure remainder>".
5_3.mo:Expected error in mat remainder: "remainder: a is not an integer".
5_3.mo:Expected error in mat remainder: "remainder: a is not an integer".
5_3.mo:Expected error in mat remainder: "remainder: 2/5 is not an integer".
***************
*** 1088,1096 ****
5_3.mo:Expected error in mat remainder: "remainder: 2.5 is not an integer".
5_3.mo:Expected error in mat remainder: "remainder: 2.5 is not an integer".
5_3.mo:Expected error in mat remainder: "remainder: -3+2i is not an integer".
! 5_3.mo:Expected error in mat modulo: "incorrect argument count in call (modulo)".
! 5_3.mo:Expected error in mat modulo: "incorrect argument count in call (modulo 1)".
! 5_3.mo:Expected error in mat modulo: "incorrect argument count in call (modulo 1 2 3)".
5_3.mo:Expected error in mat modulo: "modulo: a is not an integer".
5_3.mo:Expected error in mat modulo: "modulo: a is not an integer".
5_3.mo:Expected error in mat modulo: "modulo: 3/5 is not an integer".
--- 1088,1096 ----
5_3.mo:Expected error in mat remainder: "remainder: 2.5 is not an integer".
5_3.mo:Expected error in mat remainder: "remainder: 2.5 is not an integer".
5_3.mo:Expected error in mat remainder: "remainder: -3+2i is not an integer".
! 5_3.mo:Expected error in mat modulo: "incorrect number of arguments to #<procedure modulo>".
! 5_3.mo:Expected error in mat modulo: "incorrect number of arguments to #<procedure modulo>".
! 5_3.mo:Expected error in mat modulo: "incorrect number of arguments to #<procedure modulo>".
5_3.mo:Expected error in mat modulo: "modulo: a is not an integer".
5_3.mo:Expected error in mat modulo: "modulo: a is not an integer".
5_3.mo:Expected error in mat modulo: "modulo: 3/5 is not an integer".
***************
*** 1100,1145 ****
5_3.mo:Expected error in mat modulo: "modulo: 3.2 is not an integer".
5_3.mo:Expected error in mat modulo: "modulo: -3.2 is not an integer".
5_3.mo:Expected error in mat modulo: "modulo: -3+2i is not an integer".
! 5_3.mo:Expected error in mat truncate: "incorrect argument count in call (truncate)".
! 5_3.mo:Expected error in mat truncate: "incorrect argument count in call (truncate 2 3)".
5_3.mo:Expected error in mat truncate: "truncate: a is not a real number".
5_3.mo:Expected error in mat truncate: "truncate: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat truncate: "truncate: 2+1i is not a real number".
5_3.mo:Expected error in mat truncate: "truncate: 2.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat floor: "incorrect argument count in call (floor)".
! 5_3.mo:Expected error in mat floor: "incorrect argument count in call (floor 2 3)".
5_3.mo:Expected error in mat floor: "floor: a is not a real number".
5_3.mo:Expected error in mat floor: "floor: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat floor: "floor: 2+1i is not a real number".
5_3.mo:Expected error in mat floor: "floor: 2.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat ceiling: "incorrect argument count in call (ceiling)".
! 5_3.mo:Expected error in mat ceiling: "incorrect argument count in call (ceiling 2 3)".
5_3.mo:Expected error in mat ceiling: "ceiling: a is not a real number".
5_3.mo:Expected error in mat ceiling: "ceiling: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat ceiling: "ceiling: -1.7+0.0i is not a real number".
5_3.mo:Expected error in mat ceiling: "ceiling: 2.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat round: "incorrect argument count in call (round)".
! 5_3.mo:Expected error in mat round: "incorrect argument count in call (round 2 3)".
5_3.mo:Expected error in mat round: "round: a is not a real number".
5_3.mo:Expected error in mat round: "round: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat round: "round: 2+1i is not a real number".
5_3.mo:Expected error in mat round: "round: 2.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat abs: "incorrect argument count in call (abs)".
! 5_3.mo:Expected error in mat abs: "incorrect argument count in call (abs 1 2)".
5_3.mo:Expected error in mat abs: "abs: a is not a real number".
5_3.mo:Expected error in mat abs: "abs: 3+4i is not a real number".
5_3.mo:Expected error in mat abs: "abs: 3.0+4.0i is not a real number".
! 5_3.mo:Expected error in mat magnitude: "incorrect argument count in call (magnitude)".
! 5_3.mo:Expected error in mat magnitude: "incorrect argument count in call (magnitude 1 2)".
5_3.mo:Expected error in mat magnitude: "magnitude: a is not a complex number".
! 5_3.mo:Expected error in mat max: "incorrect argument count in call (max)".
5_3.mo:Expected error in mat max: "max: a is not a real number".
5_3.mo:Expected error in mat max: "max: a is not a real number".
5_3.mo:Expected error in mat max: "max: a is not a real number".
5_3.mo:Expected error in mat max: "max: a is not a real number".
5_3.mo:Expected error in mat max: "max: 0.0+1.0i is not a real number".
5_3.mo:Expected error in mat max: "max: 0+1i is not a real number".
! 5_3.mo:Expected error in mat min: "incorrect argument count in call (min)".
5_3.mo:Expected error in mat min: "min: a is not a real number".
5_3.mo:Expected error in mat min: "min: a is not a real number".
5_3.mo:Expected error in mat min: "min: a is not a real number".
--- 1100,1145 ----
5_3.mo:Expected error in mat modulo: "modulo: 3.2 is not an integer".
5_3.mo:Expected error in mat modulo: "modulo: -3.2 is not an integer".
5_3.mo:Expected error in mat modulo: "modulo: -3+2i is not an integer".
! 5_3.mo:Expected error in mat truncate: "incorrect number of arguments to #<procedure truncate>".
! 5_3.mo:Expected error in mat truncate: "incorrect number of arguments to #<procedure truncate>".
5_3.mo:Expected error in mat truncate: "truncate: a is not a real number".
5_3.mo:Expected error in mat truncate: "truncate: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat truncate: "truncate: 2+1i is not a real number".
5_3.mo:Expected error in mat truncate: "truncate: 2.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat floor: "incorrect number of arguments to #<procedure floor>".
! 5_3.mo:Expected error in mat floor: "incorrect number of arguments to #<procedure floor>".
5_3.mo:Expected error in mat floor: "floor: a is not a real number".
5_3.mo:Expected error in mat floor: "floor: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat floor: "floor: 2+1i is not a real number".
5_3.mo:Expected error in mat floor: "floor: 2.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat ceiling: "incorrect number of arguments to #<procedure ceiling>".
! 5_3.mo:Expected error in mat ceiling: "incorrect number of arguments to #<procedure ceiling>".
5_3.mo:Expected error in mat ceiling: "ceiling: a is not a real number".
5_3.mo:Expected error in mat ceiling: "ceiling: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat ceiling: "ceiling: -1.7+0.0i is not a real number".
5_3.mo:Expected error in mat ceiling: "ceiling: 2.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat round: "incorrect number of arguments to #<procedure round>".
! 5_3.mo:Expected error in mat round: "incorrect number of arguments to #<procedure round>".
5_3.mo:Expected error in mat round: "round: a is not a real number".
5_3.mo:Expected error in mat round: "round: 2.0+1.0i is not a real number".
5_3.mo:Expected error in mat round: "round: 2+1i is not a real number".
5_3.mo:Expected error in mat round: "round: 2.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat abs: "incorrect number of arguments to #<procedure abs>".
! 5_3.mo:Expected error in mat abs: "incorrect number of arguments to #<procedure abs>".
5_3.mo:Expected error in mat abs: "abs: a is not a real number".
5_3.mo:Expected error in mat abs: "abs: 3+4i is not a real number".
5_3.mo:Expected error in mat abs: "abs: 3.0+4.0i is not a real number".
! 5_3.mo:Expected error in mat magnitude: "incorrect number of arguments to #<procedure magnitude>".
! 5_3.mo:Expected error in mat magnitude: "incorrect number of arguments to #<procedure magnitude>".
5_3.mo:Expected error in mat magnitude: "magnitude: a is not a complex number".
! 5_3.mo:Expected error in mat max: "incorrect number of arguments to #<procedure max>".
5_3.mo:Expected error in mat max: "max: a is not a real number".
5_3.mo:Expected error in mat max: "max: a is not a real number".
5_3.mo:Expected error in mat max: "max: a is not a real number".
5_3.mo:Expected error in mat max: "max: a is not a real number".
5_3.mo:Expected error in mat max: "max: 0.0+1.0i is not a real number".
5_3.mo:Expected error in mat max: "max: 0+1i is not a real number".
! 5_3.mo:Expected error in mat min: "incorrect number of arguments to #<procedure min>".
5_3.mo:Expected error in mat min: "min: a is not a real number".
5_3.mo:Expected error in mat min: "min: a is not a real number".
5_3.mo:Expected error in mat min: "min: a is not a real number".
***************
*** 1198,1220 ****
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
! 5_3.mo:Expected error in mat expt: "incorrect argument count in call (expt)".
! 5_3.mo:Expected error in mat expt: "incorrect argument count in call (expt 5)".
! 5_3.mo:Expected error in mat expt: "incorrect argument count in call (expt 3 4 5)".
5_3.mo:Expected error in mat expt: "expt: a is not a number".
5_3.mo:Expected error in mat expt: "expt: a is not a number".
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and -1".
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and 0+1i".
! 5_3.mo:Expected error in mat expt-mod: "incorrect argument count in call (expt-mod)".
! 5_3.mo:Expected error in mat expt-mod: "incorrect argument count in call (expt-mod 5)".
! 5_3.mo:Expected error in mat expt-mod: "incorrect argument count in call (expt-mod 4 5)".
! 5_3.mo:Expected error in mat expt-mod: "incorrect argument count in call (expt-mod 3 4 5 6)".
5_3.mo:Expected error in mat expt-mod: "expt-mod: a is not an integer".
5_3.mo:Expected error in mat expt-mod: "expt-mod: -2 is not a nonnegative integer".
5_3.mo:Expected error in mat expt-mod: "expt-mod: -2 is not a nonnegative integer".
! 5_3.mo:Expected error in mat random: "incorrect argument count in call (random)".
5_3.mo:Expected error in mat random: "random: invalid argument 0+1i".
! 5_3.mo:Expected error in mat random: "incorrect argument count in call (random 1 2)".
5_3.mo:Expected error in mat random: "random: invalid argument a".
5_3.mo:Expected error in mat random: "random: invalid argument -3".
5_3.mo:Expected error in mat random: "random: invalid argument 0".
--- 1198,1220 ----
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
5_3.mo:Expected error in mat lcm: "lcm: +nan.0 is not an integer".
! 5_3.mo:Expected error in mat expt: "incorrect number of arguments to #<procedure expt>".
! 5_3.mo:Expected error in mat expt: "incorrect number of arguments to #<procedure expt>".
! 5_3.mo:Expected error in mat expt: "incorrect number of arguments to #<procedure expt>".
5_3.mo:Expected error in mat expt: "expt: a is not a number".
5_3.mo:Expected error in mat expt: "expt: a is not a number".
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and -1".
5_3.mo:Expected error in mat expt: "expt: undefined for values 0 and 0+1i".
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments to #<procedure expt-mod>".
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments to #<procedure expt-mod>".
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments to #<procedure expt-mod>".
! 5_3.mo:Expected error in mat expt-mod: "incorrect number of arguments to #<procedure expt-mod>".
5_3.mo:Expected error in mat expt-mod: "expt-mod: a is not an integer".
5_3.mo:Expected error in mat expt-mod: "expt-mod: -2 is not a nonnegative integer".
5_3.mo:Expected error in mat expt-mod: "expt-mod: -2 is not a nonnegative integer".
! 5_3.mo:Expected error in mat random: "incorrect number of arguments to #<procedure random>".
5_3.mo:Expected error in mat random: "random: invalid argument 0+1i".
! 5_3.mo:Expected error in mat random: "incorrect number of arguments to #<procedure random>".
5_3.mo:Expected error in mat random: "random: invalid argument a".
5_3.mo:Expected error in mat random: "random: invalid argument -3".
5_3.mo:Expected error in mat random: "random: invalid argument 0".
***************
*** 1227,1265 ****
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument 0".
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument -1".
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument <int>".
! 5_3.mo:Expected error in mat inexact: "incorrect argument count in call (inexact)".
! 5_3.mo:Expected error in mat inexact: "incorrect argument count in call (inexact 1 2)".
5_3.mo:Expected error in mat inexact: "inexact: a is not a number".
! 5_3.mo:Expected error in mat exact: "incorrect argument count in call (exact)".
! 5_3.mo:Expected error in mat exact: "incorrect argument count in call (exact 1 2)".
5_3.mo:Expected error in mat exact: "exact: a is not a number".
! 5_3.mo:Expected error in mat rationalize: "incorrect argument count in call (rationalize)".
! 5_3.mo:Expected error in mat rationalize: "incorrect argument count in call (rationalize 3 4 5)".
! 5_3.mo:Expected error in mat rationalize: "incorrect argument count in call (rationalize 3)".
5_3.mo:Expected error in mat rationalize: "rationalize: a is not a real number".
5_3.mo:Expected error in mat rationalize: "rationalize: a is not a real number".
5_3.mo:Expected error in mat rationalize: "rationalize: 3.4+0.0i is not a real number".
! 5_3.mo:Expected error in mat numerator: "incorrect argument count in call (numerator)".
! 5_3.mo:Expected error in mat numerator: "incorrect argument count in call (numerator 3 4)".
5_3.mo:Expected error in mat numerator: "numerator: a is not a rational number".
5_3.mo:Expected error in mat numerator: "numerator: 0+1i is not a rational number".
5_3.mo:Expected error in mat numerator: "numerator: 2.2+1.1i is not a rational number".
5_3.mo:Expected error in mat numerator: "numerator: +inf.0 is not a rational number".
5_3.mo:Expected error in mat numerator: "numerator: -inf.0 is not a rational number".
5_3.mo:Expected error in mat numerator: "numerator: +nan.0 is not a rational number".
! 5_3.mo:Expected error in mat denominator: "incorrect argument count in call (denominator)".
! 5_3.mo:Expected error in mat denominator: "incorrect argument count in call (denominator 3 4)".
5_3.mo:Expected error in mat denominator: "denominator: a is not a rational number".
5_3.mo:Expected error in mat denominator: "denominator: 0+1i is not a rational number".
5_3.mo:Expected error in mat denominator: "denominator: 2.2+1.1i is not a rational number".
5_3.mo:Expected error in mat denominator: "denominator: +inf.0 is not a rational number".
5_3.mo:Expected error in mat denominator: "denominator: -inf.0 is not a rational number".
5_3.mo:Expected error in mat denominator: "denominator: +nan.0 is not a rational number".
! 5_3.mo:Expected error in mat real-part: "incorrect argument count in call (real-part)".
! 5_3.mo:Expected error in mat real-part: "incorrect argument count in call (real-part 3 4)".
5_3.mo:Expected error in mat real-part: "real-part: a is not a complex number".
! 5_3.mo:Expected error in mat imag-part: "incorrect argument count in call (imag-part)".
! 5_3.mo:Expected error in mat imag-part: "incorrect argument count in call (imag-part 3 4)".
5_3.mo:Expected error in mat imag-part: "imag-part: a is not a complex number".
5_3.mo:Expected error in mat make-rectangular: "make-rectangular: a is not a real number".
5_3.mo:Expected error in mat make-rectangular: "make-rectangular: b is not a real number".
--- 1227,1265 ----
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument 0".
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument -1".
5_3.mo:Expected error in mat random-seed: "random-seed: invalid argument <int>".
! 5_3.mo:Expected error in mat inexact: "incorrect number of arguments to #<procedure inexact>".
! 5_3.mo:Expected error in mat inexact: "incorrect number of arguments to #<procedure inexact>".
5_3.mo:Expected error in mat inexact: "inexact: a is not a number".
! 5_3.mo:Expected error in mat exact: "incorrect number of arguments to #<procedure exact>".
! 5_3.mo:Expected error in mat exact: "incorrect number of arguments to #<procedure exact>".
5_3.mo:Expected error in mat exact: "exact: a is not a number".
! 5_3.mo:Expected error in mat rationalize: "incorrect number of arguments to #<procedure rationalize>".
! 5_3.mo:Expected error in mat rationalize: "incorrect number of arguments to #<procedure rationalize>".
! 5_3.mo:Expected error in mat rationalize: "incorrect number of arguments to #<procedure rationalize>".
5_3.mo:Expected error in mat rationalize: "rationalize: a is not a real number".
5_3.mo:Expected error in mat rationalize: "rationalize: a is not a real number".
5_3.mo:Expected error in mat rationalize: "rationalize: 3.4+0.0i is not a real number".
! 5_3.mo:Expected error in mat numerator: "incorrect number of arguments to #<procedure numerator>".
! 5_3.mo:Expected error in mat numerator: "incorrect number of arguments to #<procedure numerator>".
5_3.mo:Expected error in mat numerator: "numerator: a is not a rational number".
5_3.mo:Expected error in mat numerator: "numerator: 0+1i is not a rational number".
5_3.mo:Expected error in mat numerator: "numerator: 2.2+1.1i is not a rational number".
5_3.mo:Expected error in mat numerator: "numerator: +inf.0 is not a rational number".
5_3.mo:Expected error in mat numerator: "numerator: -inf.0 is not a rational number".
5_3.mo:Expected error in mat numerator: "numerator: +nan.0 is not a rational number".
! 5_3.mo:Expected error in mat denominator: "incorrect number of arguments to #<procedure denominator>".
! 5_3.mo:Expected error in mat denominator: "incorrect number of arguments to #<procedure denominator>".
5_3.mo:Expected error in mat denominator: "denominator: a is not a rational number".
5_3.mo:Expected error in mat denominator: "denominator: 0+1i is not a rational number".
5_3.mo:Expected error in mat denominator: "denominator: 2.2+1.1i is not a rational number".
5_3.mo:Expected error in mat denominator: "denominator: +inf.0 is not a rational number".
5_3.mo:Expected error in mat denominator: "denominator: -inf.0 is not a rational number".
5_3.mo:Expected error in mat denominator: "denominator: +nan.0 is not a rational number".
! 5_3.mo:Expected error in mat real-part: "incorrect number of arguments to #<procedure real-part>".
! 5_3.mo:Expected error in mat real-part: "incorrect number of arguments to #<procedure real-part>".
5_3.mo:Expected error in mat real-part: "real-part: a is not a complex number".
! 5_3.mo:Expected error in mat imag-part: "incorrect number of arguments to #<procedure imag-part>".
! 5_3.mo:Expected error in mat imag-part: "incorrect number of arguments to #<procedure imag-part>".
5_3.mo:Expected error in mat imag-part: "imag-part: a is not a complex number".
5_3.mo:Expected error in mat make-rectangular: "make-rectangular: a is not a real number".
5_3.mo:Expected error in mat make-rectangular: "make-rectangular: b is not a real number".
***************
*** 1269,1345 ****
5_3.mo:Expected error in mat make-polar: "make-polar: b is not a real number".
5_3.mo:Expected error in mat make-polar: "make-polar: 3.4+0.0i is not a real number".
5_3.mo:Expected error in mat make-polar: "make-polar: 3.4+0.0i is not a real number".
! 5_3.mo:Expected error in mat angle: "incorrect argument count in call (angle)".
! 5_3.mo:Expected error in mat angle: "incorrect argument count in call (angle 3 4)".
5_3.mo:Expected error in mat angle: "angle: a is not a complex number".
! 5_3.mo:Expected error in mat sqrt: "incorrect argument count in call (sqrt)".
! 5_3.mo:Expected error in mat sqrt: "incorrect argument count in call (sqrt 3 4)".
5_3.mo:Expected error in mat sqrt: "sqrt: a is not a number".
! 5_3.mo:Expected error in mat isqrt: "incorrect argument count in call (isqrt)".
! 5_3.mo:Expected error in mat isqrt: "incorrect argument count in call (isqrt 3 4)".
5_3.mo:Expected error in mat isqrt: "isqrt: 1.1 is not a nonnegative integer".
5_3.mo:Expected error in mat isqrt: "isqrt: a is not a nonnegative integer".
5_3.mo:Expected error in mat isqrt: "isqrt: -1 is not a nonnegative integer".
5_3.mo:Expected error in mat isqrt: "isqrt: 10.0+0.0i is not a nonnegative integer".
! 5_3.mo:Expected error in mat exp: "incorrect argument count in call (exp)".
! 5_3.mo:Expected error in mat exp: "incorrect argument count in call (exp 3 4)".
5_3.mo:Expected error in mat exp: "exp: a is not a number".
! 5_3.mo:Expected error in mat log: "incorrect argument count in call (log)".
5_3.mo:Expected error in mat log: "log: a is not a number".
5_3.mo:Expected error in mat log: "log: undefined for 0".
! 5_3.mo:Expected error in mat sin: "incorrect argument count in call (sin)".
! 5_3.mo:Expected error in mat sin: "incorrect argument count in call (sin 3 4)".
5_3.mo:Expected error in mat sin: "sin: a is not a number".
! 5_3.mo:Expected error in mat cos: "incorrect argument count in call (cos)".
! 5_3.mo:Expected error in mat cos: "incorrect argument count in call (cos 3 4)".
5_3.mo:Expected error in mat cos: "cos: a is not a number".
! 5_3.mo:Expected error in mat tan: "incorrect argument count in call (tan)".
! 5_3.mo:Expected error in mat tan: "incorrect argument count in call (tan 3 4)".
5_3.mo:Expected error in mat tan: "tan: a is not a number".
! 5_3.mo:Expected error in mat asin: "incorrect argument count in call (asin)".
! 5_3.mo:Expected error in mat asin: "incorrect argument count in call (asin 3 4)".
5_3.mo:Expected error in mat asin: "asin: a is not a number".
! 5_3.mo:Expected error in mat acos: "incorrect argument count in call (acos)".
! 5_3.mo:Expected error in mat acos: "incorrect argument count in call (acos 3 4)".
5_3.mo:Expected error in mat acos: "acos: a is not a number".
! 5_3.mo:Expected error in mat atan: "incorrect argument count in call (atan)".
! 5_3.mo:Expected error in mat atan: "incorrect argument count in call (atan 3 4 5)".
5_3.mo:Expected error in mat atan: "atan: a is not a number".
5_3.mo:Expected error in mat atan: "atan: a is not a real number".
5_3.mo:Expected error in mat atan: "atan: a is not a real number".
5_3.mo:Expected error in mat atan: "atan: undefined for 0+1i".
5_3.mo:Expected error in mat atan: "atan: undefined for 0-1i".
5_3.mo:Expected error in mat atan: "atan: 3.0+0.0i is not a real number".
! 5_3.mo:Expected error in mat asinh: "incorrect argument count in call (asinh)".
! 5_3.mo:Expected error in mat asinh: "incorrect argument count in call (asinh 3 4)".
5_3.mo:Expected error in mat asinh: "asinh: a is not a number".
! 5_3.mo:Expected error in mat acosh: "incorrect argument count in call (acosh)".
! 5_3.mo:Expected error in mat acosh: "incorrect argument count in call (acosh 3 4)".
5_3.mo:Expected error in mat acosh: "acosh: a is not a number".
! 5_3.mo:Expected error in mat atanh: "incorrect argument count in call (atanh)".
! 5_3.mo:Expected error in mat atanh: "incorrect argument count in call (atanh 3 4)".
5_3.mo:Expected error in mat atanh: "atanh: a is not a number".
5_3.mo:Expected error in mat atanh: "atan: undefined for -1".
5_3.mo:Expected error in mat atanh: "atan: undefined for 1".
! 5_3.mo:Expected error in mat ash: "incorrect argument count in call (ash)".
! 5_3.mo:Expected error in mat ash: "incorrect argument count in call (ash 1)".
! 5_3.mo:Expected error in mat ash: "incorrect argument count in call (ash 1 1 1)".
5_3.mo:Expected error in mat ash: "ash: 0.1 is not an exact integer".
5_3.mo:Expected error in mat ash: "ash: 0.1 is not an exact integer".
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect argument count in call (bitwise-arithmetic-shift)".
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect argument count in call (bitwise-arithmetic-shift 1)".
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift: "incorrect argument count in call (bitwise-arithmetic-shift 1 1 1)".
5_3.mo:Expected error in mat bitwise-arithmetic-shift: "bitwise-arithmetic-shift: 0.1 is not an exact integer".
5_3.mo:Expected error in mat bitwise-arithmetic-shift: "bitwise-arithmetic-shift: 0.1 is not an exact integer".
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect argument count in call (bitwise-arithmetic-shift-left)".
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect argument count in call (bitwise-arithmetic-shift-left 1)".
! 5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "incorrect argument count in call (bitwise-arithmetic-shift-left 1 1 1)".
5_3.mo:Expected error in mat bitwise-arithmetic-shift-left/right: "bitwise-arithmetic-shift-left: 0.1 is not an exact integer".