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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
|
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
-- Copyright (C) 2007-2010, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are
-- met:
--
-- - Redistributions of source code must retain the above copyright
-- notice, this list of conditions and the following disclaimer.
--
-- - Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in
-- the documentation and/or other materials provided with the
-- distribution.
--
-- - Neither the name of The Numerical ALgorithms Group Ltd. nor the
-- names of its contributors may be used to endorse or promote products
-- derived from this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
-- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
-- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
-- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
-- OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import i_-coerfn
namespace BOOT
$domPvar := nil
sayFunctionSelection(op,args,target,dc,func) ==
$abbreviateTypes : local := true
startTimingProcess 'debug
fsig := formatSignatureArgs args
if not LISTP fsig then fsig := LIST fsig
if func then func := bright ['"by ",func]
sayMSG concat ['%l,:bright '"Function Selection for",op,:func,'%l,
'" Arguments:",:bright fsig]
if target then sayMSG concat ['" Target type:",
:bright prefix2String target]
if dc then sayMSG concat ['" From: ",
:bright prefix2String dc]
stopTimingProcess 'debug
sayFunctionSelectionResult(op,args,mmS) ==
$abbreviateTypes : local := true
startTimingProcess 'debug
if mmS then printMms mmS
else sayMSG concat ['" -> no function",:bright op,
'"found for arguments",:bright formatSignatureArgs args]
stopTimingProcess 'debug
selectMms(op,args,$declaredMode) ==
-- selects applicable modemaps for node op and arguments args
-- if there is no local modemap, and it is not a package call, then
-- the cached function selectMms1 is called
startTimingProcess 'modemaps
n:= getUnname op
val := getValue op
opMode := objMode val
-- see if we have a functional parameter
((isSharpVarWithNum(n) and opMode) or (val and opMode)) and
opMode is ['Mapping,:ta] =>
imp :=
val => getValueNormalForm val
n
[[['local,:ta], imp , NIL]]
((isSharpVarWithNum(n) and opMode) or (val and opMode)) and
opMode is ['Variable,f] =>
emptyAtree op
op.0 := f
selectMms(op,args,$declaredMode)
isSharpVarWithNum(n) and opMode is ['FunctionCalled,f] =>
op.0 := f
selectMms(op,args,$declaredMode)
types1 := getOpArgTypes(n,args)
numArgs := #args
member($EmptyMode,types1) => NIL
tar := getTarget op
dc := getAtree(op,'dollar)
null dc and val and objMode(val) = $AnonymousFunction =>
tree := mkAtree objValUnwrap getValue op
putTarget(tree,['Mapping,tar,:types1])
bottomUp tree
val := getValue tree
[[['local,:rest objMode val], getValueNormalForm val, NIL]]
if (n = 'map) and (first types1 = $AnonymousFunction)
then
tree := mkAtree objValUnwrap getValue first args
ut :=
tar => underDomainOf tar
NIL
ua := [underDomainOf x for x in rest types1]
member(NIL,ua) => NIL
putTarget(tree,['Mapping,ut,:ua])
bottomUp tree
val := getValue tree
types1 := [objMode val,:rest types1]
args.first := tree
if numArgs = 1 and (n = "numer" or n = "denom") and
isEqualOrSubDomain(first types1,$Integer) and null dc then
dc := ['Fraction, $Integer]
putAtree(op, 'dollar, dc)
if $reportBottomUpFlag then sayFunctionSelection(n,types1,tar,dc,NIL)
identType := 'Variable
for x in types1 while not $declaredMode repeat
x isnt [=identType,:.] => $declaredMode:= x
types2 := [altTypeOf(x,y,$declaredMode) for x in types1 for y in args]
mmS:=
dc => selectDollarMms(dc,n,types1,types2)
if n = "/" and tar = $Integer then
tar := $RationalNumber
putTarget(op,tar)
-- now to speed up some standard selections
if not tar then
tar := defaultTarget(op,n,#types1,types1)
if tar and $reportBottomUpFlag then
sayMSG concat ['" Default target type:",
:bright prefix2String tar]
selectLocalMms(op,n,types1,tar) or
(VECTORP op and selectMms1(n,tar,types1,types2,'T))
if $reportBottomUpFlag then sayFunctionSelectionResult(n,types1,mmS)
stopTimingProcess 'modemaps
mmS
-- selectMms1 is in clammed.boot
selectMms2(op,tar,args1,args2,$Coerce) ==
-- decides whether to find functions from a domain or package
-- or by general modemap evaluation
or/[string? arg for arg in args1] => NIL
if tar = $EmptyMode then tar := NIL
nargs := #args1
mmS := NIL
mmS :=
-- special case map for the time being
$Coerce and (op = 'map) and (2 = nargs) and
(first(args1) is ['Variable,fun]) =>
null (ud := underDomainOf second args1) => NIL
if tar then ut := underDomainOf(tar)
else ut := nil
null (mapMms := selectMms1(fun,ut,[ud],[NIL],true)) => NIL
mapMm := CDAAR mapMms
selectMms1(op,tar,[['Mapping,:mapMm],second args1],
[NIL,second args2],$Coerce)
$Coerce and (op = 'map) and (2 = nargs) and
(first(args1) is ['FunctionCalled,fun]) =>
null (ud := underDomainOf second args1) => NIL
if tar then ut := underDomainOf(tar)
else ut := nil
funNode := mkAtreeNode fun
transferPropsToNode(fun,funNode)
null (mapMms := selectLocalMms(funNode,fun,[ud],NIL)) => NIL
mapMm := CDAAR mapMms
selectMms1(op,tar,[['Mapping,:mapMm],second args1],
[NIL,second args2],$Coerce)
-- get the argument domains and the target
a := nil
for x in args1 repeat if x then a := [x,:a]
for x in args2 repeat if x then a := [x,:a]
if tar and not isPartialMode tar then a := [tar,:a]
-- for typically homogeneous functions, throw in resolve too
if op in '(_= _+ _* _- ) then
r := resolveTypeList a
if r ~= nil then a := [r,:a]
if tar and not isPartialMode tar then
if xx := underDomainOf(tar) then a := [xx,:a]
for x in args1 repeat
cons?(x) and first(x) in '(List Vector Stream FiniteSet Array) =>
xx := underDomainOf(x) => a := [xx,:a]
-- now extend this list with those from the arguments to
-- any Unions, Mapping or Records
a' := nil
a := nreverse removeDuplicates a
for x in a repeat
null x => 'iterate
x = '(RationalRadicals) => a' := [$RationalNumber,:a']
x is ['Union,:l] =>
-- check if we have a tagged union
l and first l is [":",:.] =>
for [.,.,t] in l repeat
a' := [t,:a']
a' := append(reverse l,a')
x is ['Mapping,:l] => a' := append(reverse l,a')
x is ['Record,:l] =>
a' := append(reverse [third s for s in l],a')
x is ['FunctionCalled,name] =>
(xm := get(name,'mode,$e)) and not isPartialMode xm =>
a' := [xm,:a']
a := append(a,removeDuplicates a')
a := [x for x in a | cons?(x)]
-- step 1. see if we have one without coercing
a' := a
while a repeat
x:= first a
a:= rest a
atom x => 'iterate
mmS := append(mmS, findFunctionInDomain(op,x,tar,args1,args2,NIL,NIL))
-- step 2. if we didn't get one, trying coercing (if we are
-- suppose to)
if null(mmS) and $Coerce then
a := a'
while a repeat
x:= first a
a:= rest a
atom x => 'iterate
mmS := append(mmS,
findFunctionInDomain(op,x,tar,args1,args2,$Coerce,NIL))
mmS or selectMmsGen(op,tar,args1,args2)
mmS and orderMms(op, mmS,args1,args2,tar)
isAVariableType t ==
t is ['Variable,.] or t = $Symbol or t is ['OrderedVariableList,.]
defaultTarget(opNode,op,nargs,args) ==
-- this is for efficiency. Chooses standard targets for operations
-- when no target exists.
target := nil
nargs = 0 =>
op = 'nil =>
putTarget(opNode, target := '(List (None)))
target
op = 'true or op = 'false =>
putTarget(opNode, target := $Boolean)
target
op = 'pi =>
putTarget(opNode, target := ['Pi])
target
op = 'infinity =>
putTarget(opNode, target := ['OnePointCompletion, $Integer])
target
member(op, '(plusInfinity minusInfinity)) =>
putTarget(opNode, target := ['OrderedCompletion, $Integer])
target
target
a1 := first args
atom a1 => target
a1f := first a1
nargs = 1 =>
op = 'kernel =>
putTarget(opNode, target := ['Kernel, ['Expression, $Integer]])
target
op = 'list =>
putTarget(opNode, target := ['List, a1])
target
target
a2 := second args
nargs >= 2 and op = "draw" and a1 is ['FunctionCalled,sym] and a2 is ['Segment,.] =>
-- this clears up some confusion over 2D and 3D graphics
symNode := mkAtreeNode sym
transferPropsToNode(sym,symNode)
nargs >= 3 and third args is ['Segment,.] =>
selectLocalMms(symNode,sym,[$DoubleFloat, $DoubleFloat],NIL)
putTarget(opNode, target := '(ThreeDimensionalViewport))
target
(mms := selectLocalMms(symNode,sym,[$DoubleFloat],NIL)) =>
[.,targ,:.] := CAAR mms
targ = $DoubleFloat =>
putTarget(opNode, target := '(TwoDimensionalViewport))
target
targ = ['Point, $DoubleFloat] =>
putTarget(opNode, target := '(ThreeDimensionalViewport))
target
target
target
nargs >= 2 and op = "makeObject" and a1 is ['FunctionCalled,sym] and a2 is ['Segment,.] =>
-- we won't actually bother to put a target on makeObject
-- this is just to figure out what the first arg is
symNode := mkAtreeNode sym
transferPropsToNode(sym,symNode)
nargs >= 3 and third args is ['Segment,.] =>
selectLocalMms(symNode,sym,[$DoubleFloat, $DoubleFloat],NIL)
target
selectLocalMms(symNode,sym,[$DoubleFloat],NIL)
target
nargs = 2 =>
op = "elt" =>
a1 = '(BasicOperator) and a2 is ['List, ['OrderedVariableList, .]] =>
['Expression, $Integer]
target
op = "eval" =>
a1 is ['Expression,b1] and a2 is ['Equation, ['Polynomial,b2]] =>
target :=
canCoerce(b2, a1) => a1
t := resolveTT(b1, b2)
(not t) or (t = $Any) => nil
resolveTT(a1, t)
if target then putTarget(opNode, target)
target
a1 is ['Equation, .] and a2 is ['Equation, .] =>
target := resolveTT(a1, a2)
if target and not (target = $Any) then putTarget(opNode,target)
else target := nil
target
a1 is ['Equation, .] and a2 is ['List, a2e] and a2e is ['Equation, .] =>
target := resolveTT(a1, a2e)
if target and not (target = $Any) then putTarget(opNode,target)
else target := nil
target
a2 is ['Equation, a2e] or a2 is ['List, ['Equation, a2e]] =>
target := resolveTT(a1, a2e)
if target and not (target = $Any) then putTarget(opNode,target)
else target := nil
target
op = "**" or op = "^" =>
a2 = $Integer =>
if (target := resolveTCat(a1,'(Field))) then
putTarget(opNode,target)
target
a1 = '(AlgebraicNumber) and (a2 = $Float or a2 = $DoubleFloat) =>
target := ['Expression, a2]
putTarget(opNode,target)
target
a1 = '(AlgebraicNumber) and a2 is ['Complex, a3] and (a3 = $Float or a3 = $DoubleFloat) =>
target := ['Expression, a3]
putTarget(opNode,target)
target
((a2 = $RationalNumber) and
(typeIsASmallInteger(a1) or isEqualOrSubDomain(a1,$Integer))) =>
putTarget(opNode, target := '(AlgebraicNumber))
target
((a2 = $RationalNumber) and (isAVariableType(a1)
or a1 is ['Polynomial,.] or a1 is ['RationalFunction,.])) =>
putTarget(opNode, target := defaultTargetFE a1)
target
isAVariableType(a1) and (a2 = $PositiveInteger or a2 = $NonNegativeInteger) =>
putTarget(opNode, target := '(Polynomial (Integer)))
target
isAVariableType(a2) =>
putTarget(opNode, target := defaultTargetFE a1)
target
a2 is ['Polynomial, D] =>
(a1 = a2) or isAVariableType(a1)
or ((a1 is ['RationalFunction, D1]) and (D1 = D)) or (a1 = D)
or ((a1 is [=$QuotientField, D1]) and (D1 = a1)) =>
putTarget(opNode, target := defaultTargetFE a2)
target
target
a2 is ['RationalFunction, D] =>
(a1 = a2) or isAVariableType(a1)
or ((a1 is ['RationalFunction, D1]) and (D1 = D)) or (a1 = D)
or ((a1 is [=$QuotientField, D1]) and (D1 = a1)) =>
putTarget(opNode, target := defaultTargetFE a2)
target
target
target
op = "/" =>
isEqualOrSubDomain(a1, $Integer) and isEqualOrSubDomain(a2, $Integer) =>
putTarget(opNode, target := $RationalNumber)
target
a1 = a2 =>
if (target := resolveTCat(first args,'(Field))) then
putTarget(opNode,target)
target
a1 is ['Variable,.] and a2 is ['Variable,.] =>
putTarget(opNode,target := mkRationalFunction '(Integer))
target
isEqualOrSubDomain(a1,$Integer) and a2 is ['Variable,.] =>
putTarget(opNode,target := mkRationalFunction '(Integer))
target
a1 is ['Variable,.] and
a2 is ['Polynomial,D] =>
putTarget(opNode,target := mkRationalFunction D)
target
target
a2 is ['Variable,.] and
a1 is ['Polynomial,D] =>
putTarget(opNode,target := mkRationalFunction D)
target
target
a2 is ['Polynomial,D] and (a1 = D) =>
putTarget(opNode,target := mkRationalFunction D)
target
target
a3 := third args
nargs = 3 =>
op = "eval" =>
a3 is ['List, a3e] =>
target := resolveTT(a1, a3e)
if not (target = $Any) then putTarget(opNode,target)
else target := nil
target
target := resolveTT(a1, a3)
if not (target = $Any) then putTarget(opNode,target)
else target := nil
target
target
mkRationalFunction D == ['Fraction, ['Polynomial, D]]
defaultTargetFE(a,:options) ==
a is ['Variable,.] or a = $RationalNumber or MEMQ(a.op,
[$Symbol.op, 'RationalRadicals,
'Pi]) or typeIsASmallInteger(a) or isEqualOrSubDomain(a, $Integer) or
a = '(AlgebraicNumber) =>
IFCAR options => [$FunctionalExpression, ['Complex, $Integer]]
[$FunctionalExpression, $Integer]
a is ['Complex,uD] => defaultTargetFE(uD, true)
a is [D,uD] and D in '(Polynomial RationalFunction Fraction) =>
defaultTargetFE(uD, IFCAR options)
a is [=$FunctionalExpression,.] => a
IFCAR options => [$FunctionalExpression, ['Complex, a]]
[$FunctionalExpression, a]
altTypeOf(type,val,$declaredMode) ==
(type = $Symbol or type is ["Variable",:.]) and
(a := getMinimalVarMode(objValUnwrap getValue(val),$declaredMode)) =>
a
type is ['OrderedVariableList,vl] and
integer?(val1 := objValUnwrap getValue(val)) and
(a := getMinimalVarMode(vl.(val1 - 1),$declaredMode)) =>
a
type = $PositiveInteger => $Integer
type = $NonNegativeInteger => $Integer
type = '(List (PositiveInteger)) => '(List (Integer))
NIL
getOpArgTypes(opname, args) ==
l := getOpArgTypes1(opname, args)
[f(a,opname) for a in l] where
f(x,op) ==
x is ['FunctionCalled,g] and op ~= 'name =>
m := get(g,'mode,$e) =>
m is ['Mapping,:.] => m
x
x
x
getOpArgTypes1(opname, args) ==
null args => NIL
-- special cases first
opname = 'coef and args is [b,n] =>
[first getModeSet b, first getModeSetUseSubdomain n]
opname = 'monom and args is [d,c] =>
[first getModeSetUseSubdomain d,first getModeSet c]
opname = 'monom and args is [v,d,c] =>
[first getModeSet v,first getModeSetUseSubdomain d,first getModeSet c]
(opname = 'cons) and (2 = #args) and (second(args) = 'nil) =>
ms := [first getModeSet x for x in args]
if second(ms) = '(List (None)) then
ms := [first ms,['List,first ms]]
ms
nargs := #args
v := argCouldBelongToSubdomain(opname,nargs)
mss := NIL
for i in 0..(nargs-1) for x in args repeat
ms :=
v.i = 0 => first getModeSet x
first getModeSetUseSubdomain x
mss := [ms,:mss]
nreverse mss
argCouldBelongToSubdomain(op, nargs) ==
-- this returns a vector containing 0 or ^0 for each argument.
-- if ^0, this indicates that there exists a modemap for the
-- op that needs a subdomain in that position
nargs = 0 => NIL
v := GETZEROVEC nargs
isMap(op) => v
mms := getModemapsFromDatabase(op,nargs)
null mms => v
nargs:=nargs-1
-- each signature has form
-- [domain of implementation, target, arg1, arg2, ...]
for [sig,cond,:.] in mms repeat
for t in CDDR sig for i in 0..(nargs) repeat
CONTAINEDisDomain(t,cond) =>
v.i := 1 + v.i
v
CONTAINEDisDomain(symbol,cond) ==
-- looks for [isSubDomain,symbol,[domain]] in cond: returning T or NIL
-- with domain being one of PositiveInteger and NonNegativeInteger
atom cond => false
cond.op in '(AND OR and or %and %or) =>
or/[CONTAINEDisDomain(symbol, u) for u in cond.args]
cond.op = 'isDomain =>
EQ(symbol,second cond) and cons?(dom:=third cond) and
dom in '(PositiveInteger NonNegativeInteger)
false
selectDollarMms(dc,name,types1,types2) ==
-- finds functions for name in domain dc
isPartialMode dc => throwKeyedMsg("S2IF0001",NIL)
mmS := findFunctionInDomain(name,dc,NIL,types1,types2,'T,'T) =>
orderMms(name, mmS,types1,types2,NIL)
if $reportBottomUpFlag then sayMSG
["%b",'" function not found in ",prefix2String dc,"%d","%l"]
NIL
selectLocalMms(op,name,types,tar) ==
-- partial rewrite, looks now for exact local modemap
mmS:= getLocalMms(name,types,tar) => mmS
obj := getValue op
obj and (objVal obj is ["%Map",:mapDef]) and
analyzeMap(op,types,mapDef,tar) and getLocalMms(name,types,tar)
-- next defn may be better, test when more time. RSS 3/11/94
-- selectLocalMms(op,name,types,tar) ==
-- mmS := getLocalMms(name,types,tar)
-- -- if no target, just return what we got
-- mmS and null tar => mmS
-- matchingMms := nil
-- for mm in mmS repeat
-- [., targ, :.] := mm
-- if tar = targ then matchingMms := [mm,:matchingMms]
-- -- if we got some exact matchs on the target, return them
-- matchingMms => nreverse matchingMms
--
-- obj := getValue op
-- obj and (objVal obj is ["%Map",:mapDef]) and
-- analyzeMap(op,types,mapDef,tar) and getLocalMms(name,types,tar)
getLocalMms(name,types,tar) ==
-- looks for exact or subsumed local modemap in $e
mmS := NIL
for (mm:=[dcSig,:.]) in get(name,'localModemap,$e) repeat
-- check format and destructure
dcSig isnt [dc,result,:args] => NIL
-- make number of args is correct
#types ~= #args => NIL
-- check for equal or subsumed arguments
subsume := (not $useIntegerSubdomain) or (tar = result) or
get(name,'recursive,$e)
acceptableArgs :=
and/[f(b,a,subsume) for a in args for b in types] where
f(x,y,subsume) ==
if subsume
then isEqualOrSubDomain(x,y)
else x = y
not acceptableArgs =>
-- interpreted maps are ok
dc = 'interpOnly and not($Coerce)=> mmS := [mm,:mmS]
NIL
mmS := [mm,:mmS]
nreverse mmS
mmCost(name, sig,cond,tar,args1,args2) ==
cost := mmCost0(name, sig,cond,tar,args1,args2)
res := second sig
res = $PositiveInteger => cost - 2
res = $NonNegativeInteger => cost - 1
res = $DoubleFloat => cost + 1
cost
mmCost0(name, sig,cond,tar,args1,args2) ==
sigArgs := CDDR sig
n:=
null cond => 1
not (or/cond) => 1
0
-- try to favor homogeneous multiplication
--if name = "*" and 2 = #sigArgs and first sigArgs ~= second sigArgs then n := n + 1
-- because of obscure problem in evalMm, sometimes we will have extra
-- modemaps with the wrong number of arguments if we want to the one
-- with no arguments and the name is overloaded. Thus check for this.
if args1 then
for x1 in args1 for x2 in args2 for x3 in sigArgs repeat
n := n +
isEqualOrSubDomain(x1,x3) => 0
topcon := first deconstructT x1
topcon2 := first deconstructT x3
topcon = topcon2 => 3
first topcon2 = 'Mapping => 2
4
else if sigArgs then n := n + 100000000000
res := second sig
res=tar => 10000*n
10000*n + 1000*domainDepth(res) + hitListOfTarget(res)
orderMms(name, mmS,args1,args2,tar) ==
-- it counts the number of necessary coercions of the argument types
-- if this isn't enough, it compares the target types
mmS and null rest mmS => mmS
mS:= NIL
N:= NIL
for mm in MSORT mmS repeat
[sig,.,cond]:= mm
b:= 'T
p:= [m := mmCost(name, sig,cond,tar,args1,args2),:mm]
mS:=
null mS => list p
m < CAAR mS => [p,:mS]
S:= mS
until b repeat
b:= null rest S or m < CAADR S =>
S.rest := [p,:rest S]
S:= rest S
mS
mmS and [rest p for p in mS]
domainDepth(d) ==
-- computes the depth of lisp structure d
atom d => 0
MAX(domainDepth(first d)+1,domainDepth(rest d))
hitListOfTarget(t) ==
-- assigns a number between 1 and 998 to a type t
-- want to make it hard to go to Polynomial Pi
t = '(Polynomial (Pi)) => 90000
first t ='Polynomial => 300
first t = 'List => 400
first t = 'Matrix => 910
first t = 'UniversalSegment => 501
first t = 'RationalFunction => 900
first t = 'Union => 999
first t = 'Expression => 1600
500
getFunctionFromDomain(op,dc,args) ==
-- finds the function op with argument types args in dc
-- complains, if no function or ambiguous
$reportBottomUpFlag:local:= NIL
member(first dc,$nonLisplibDomains) =>
throwKeyedMsg("S2IF0002",[first dc])
not constructor? first dc =>
throwKeyedMsg("S2IF0003",[first dc])
p:= findFunctionInDomain(op,dc,NIL,args,args,NIL,NIL) =>
--+
--sig := [NIL,:args]
domain := evalDomain dc
for mm in nreverse p until b repeat
[[.,:osig],nsig,:.] := mm
b := compiledLookup(op,nsig,domain)
b or throwKeyedMsg("S2IS0023",[op,dc])
throwKeyedMsg("S2IF0004",[op,dc])
isOpInDomain(opName,dom,nargs) ==
-- returns true only if there is an op in the given domain with
-- the given number of arguments
mmList := ASSQ(opName,getConstructorOperationsFromDB dom.op)
mmList := subCopy(mmList,constructSubst dom)
null mmList => NIL
gotOne := NIL
nargs := nargs + 1
for mm in rest mmList while not gotOne repeat
nargs = #first mm => gotOne := [mm, :gotOne]
gotOne
findCommonSigInDomain(opName,dom,nargs) ==
-- this looks at all signatures in dom with given opName and nargs
-- number of arguments. If no matches, returns NIL. Otherwise returns
-- a "signature" where a type position is non-NIL only if all
-- signatures shares that type .
first(dom) in '(Union Record Mapping) => NIL
mmList := ASSQ(opName,getConstructorOperationsFromDB dom.op)
mmList := subCopy(mmList,constructSubst dom)
null mmList => NIL
gotOne := NIL
nargs := nargs + 1
vec := NIL
for mm in rest mmList repeat
nargs = #first mm =>
null vec => vec := LIST2VEC first mm
for i in 0.. for x in first mm repeat
if vec.i and vec.i ~= x then vec.i := NIL
VEC2LIST vec
findUniqueOpInDomain(op,opName,dom) ==
-- return function named op in domain dom if unique, choose one if not
mmList := ASSQ(opName,getConstructorOperationsFromDB dom.op)
mmList := subCopy(mmList,constructSubst dom)
null mmList =>
throwKeyedMsg("S2IS0021",[opName,dom])
mmList := rest mmList -- ignore the operator name
-- use evaluation type context to narrow down the candidate set
if target := getTarget op then
mmList := [mm for mm in mmList | mm is [=rest target,:.]]
null mmList => throwKeyedMsg("S2IS0062",[opName,target,dom])
if #mmList > 1 then
mm := selectMostGeneralMm mmList
sayKeyedMsg("S2IS0022",[opName,dom,['Mapping,:first mm]])
else mm := first mmList
[sig,slot,:.] := mm
fun :=
$genValue =>
compiledLookupCheck(opName,sig,evalDomain dom)
NRTcompileEvalForm(opName, sig, evalDomain dom)
fun=nil or not cons? fun => nil
first fun = function(Undef) => throwKeyedMsg("S2IS0023",[opName,dom])
binVal :=
$genValue => wrap fun
fun
putValue(op,objNew(binVal,m:=['Mapping,:sig]))
putModeSet(op,[m])
selectMostGeneralMm mmList ==
-- selects the modemap in mmList with arguments all the other
-- argument types can be coerced to
-- also selects function with #args closest to 2
min := 100
mml := mmList
while mml repeat
[mm,:mml] := mml
sz := #first mm
if (met := ABS(sz - 3)) < min then
min := met
fsz := sz
mmList := [mm for mm in mmList | (#first mm) = fsz]
mml := rest mmList
genMm := first mmList
while mml repeat
[mm,:mml] := mml
and/[canCoerceFrom(genMmArg,mmArg) for mmArg in CDAR mm
for genMmArg in CDAR genMm] => genMm := mm
genMm
findFunctionInDomain(op,dc,tar,args1,args2,$Coerce,$SubDom) ==
-- looks for a modemap for op with signature args1 -> tar
-- in the domain of computation dc
-- tar may be NIL (= unknown)
null isLegitimateMode(tar, nil, nil) => nil
dcName:= first dc
member(dcName,'(Union Record Mapping Enumeration)) =>
-- First cut code that ignores args2, $Coerce and $SubDom
-- When domains no longer have to have Set, the hard coded 6 and 7
-- should go.
op = '_= =>
#args1 ~= 2 or args1.0 ~= dc or args1.1 ~= dc => NIL
tar and tar ~= $Boolean => NIL
[[[dc, $Boolean, dc, dc], [$Boolean,'$,'$], [NIL, NIL]]]
op = 'coerce =>
#args1 ~= 1 => nil
dcName='Enumeration and (args1.0=$Symbol or tar=dc)=>
[[[dc, dc, $Symbol], ['$,$Symbol], [NIL, NIL]]]
args1.0 ~= dc => NIL
tar and tar ~= $Expression => NIL
[[[dc, $Expression, dc], [$Expression,'$], [NIL, NIL]]]
member(dcName,'(Record Union)) =>
findFunctionInCategory(op,dc,tar,args1,args2,$Coerce,$SubDom)
NIL
fun:= NIL
( p := ASSQ(op,getConstructorOperationsFromDB dcName) ) and
SL := constructSubst dc
-- if the arglist is homogeneous, first look for homogeneous
-- functions. If we don't find any, look at remaining ones
if isHomogeneousList args1 then
q := NIL
r := NIL
for mm in rest p repeat
-- CDAR of mm is the signature argument list
if isHomogeneousList CDAR mm then q := [mm,:q]
else r := [mm,:r]
q := allOrMatchingMms(q,args1,tar,dc)
for mm in q repeat
fun:= nconc(fun,findFunctionInDomain1(mm,op,tar,args1,args2,SL))
r := reverse r
else r := rest p
r := allOrMatchingMms(r,args1,tar,dc)
if not fun then -- consider remaining modemaps
for mm in r repeat
fun:= nconc(fun,findFunctionInDomain1(mm,op,tar,args1,args2,SL))
if not fun and $reportBottomUpFlag then
sayMSG concat
['" -> no appropriate",:bright op,'"found in",
:bright prefix2String dc]
fun
allOrMatchingMms(mms,args1,tar,dc) ==
-- if there are exact matches on the arg types, return them
-- otherwise return the original list
null mms or null rest mms => mms
x := NIL
for mm in mms repeat
[sig,:.] := mm
[res,:args] := MSUBSTQ(dc,"$",sig)
args ~= args1 => nil
x := [mm,:x]
if x then x
else mms
isHomogeneousList y ==
y is [x] => true
y and rest y =>
z := first y
"and"/[x = z for x in rest y]
NIL
findFunctionInDomain1(omm,op,tar,args1,args2,SL) ==
dc:= rest (dollarPair := ASSQ('$,SL))
-- need to drop '$ from SL
mm:= subCopy(omm, SL)
-- tests whether modemap mm is appropriate for the function
-- defined by op, target type tar and argument types args
$RTC:local:= NIL
-- $RTC is a list of run-time checks to be performed
[sig,slot,cond,y] := mm
[osig,:.] := omm
osig := subCopy(osig, SUBSTQ(['$,:'$], dollarPair, SL))
if CONTAINED('_#, sig) or CONTAINED('construct,sig) then
sig := [replaceSharpCalls t for t in sig]
matchMmCond cond and matchMmSig(mm,tar,args1,args2) and
y="Subsumed" and
-- hmmmm: do Union check in following because (as in DP)
-- Unions are subsumed by total modemaps which are in the
-- mm list in findFunctionInDomain.
y := 'ELT -- if subsumed fails try it again
not $SubDom and first sig isnt ['Union,:.] and slot is [tar,:args] and
(f := findFunctionInDomain(op,dc,tar,args,args,NIL,NIL)) => f
y='ELT => [[[dc,:sig],osig,nreverse $RTC]]
y='CONST => [[[dc,:sig],osig,nreverse $RTC]]
y='ASCONST => [[[dc,:sig],osig,nreverse $RTC]]
y is ['XLAM,:.] => [[[dc,:sig],y,nreverse $RTC]]
sayKeyedMsg("S2IF0006",[y])
NIL
findFunctionInCategory(op,dc,tar,args1,args2,$Coerce,$SubDom) ==
-- looks for a modemap for op with signature args1 -> tar
-- in the domain of computation dc
-- tar may be NIL (= unknown)
dcName:= first dc
not (dcName in '(Record Union Enumeration)) => NIL
fun:= NIL
-- cat := constructorCategory dc
makeFunc := GETL(dcName,"makeFunctionList") or
systemErrorHere ["findFunctionInCategory",dcName]
[funlist,.] := FUNCALL(makeFunc,"$",dc,$CategoryFrame)
-- get list of implementations and remove sharps
maxargs := -1
impls := nil
for [a,b,d] in funlist repeat
not EQ(a,op) => nil
d is ['XLAM,xargs,:.] =>
if cons?(xargs) then maxargs := MAX(maxargs,#xargs)
else maxargs := MAX(maxargs,1)
impls := [[b,nil,true,d],:impls]
d isnt [k,"$",n] => systemErrorHere ["findFunctionInCategory",d]
impls := [[b,n,true,k],:impls]
impls := nreverse impls
if maxargs ~= -1 then
SL:= NIL
for i in 1..maxargs repeat
impls := SUBSTQ(gensym(),INTERNL('"#",STRINGIMAGE i),impls)
impls and
SL:= constructSubst dc
for mm in impls repeat
fun:= nconc(fun,findFunctionInDomain1(mm,op,tar,args1,args2,SL))
if not fun and $reportBottomUpFlag then
sayMSG concat
['" -> no appropriate",:bright op,'"found in",
:bright prefix2String dc]
fun
matchMmCond(cond) ==
-- tests the condition, which comes with a modemap
-- cond is 'T or a list, but I hate to test for 'T (ALBI)
$domPvar: local := nil
atom cond or
cond.op in '(AND and %and) =>
and/[matchMmCond c for c in cond.args]
cond.op in '(OR or %or) =>
or/[matchMmCond c for c in cond.args]
cond is ["has",dom,x] =>
hasCaty(dom,x,NIL) ~= 'failed
cond is [op,cond1] and op in '(not NOT %not) => not matchMmCond cond1
keyedSystemError("S2GE0016",
['"matchMmCond",'"unknown form of condition"])
matchMmSig(mm,tar,args1,args2) ==
-- matches the modemap signature against args1 -> tar
-- if necessary, runtime checks are created for subdomains
-- then the modemap condition is evaluated
[sig,:.]:= mm
if CONTAINED('_#, sig) then
sig := [replaceSharpCalls COPY t for t in sig]
null args1 => matchMmSigTar(tar,first sig)
a:= rest sig
arg:= NIL
for i in 1.. while args1 and args2 and a until not b repeat
x1:= first args1
args1:= rest args1
x2:= first args2
args2:= rest args2
x:= first a
a:= rest a
rtc:= NIL
if x is ['SubDomain,y,:.] then x:= y
b := isEqualOrSubDomain(x1,x) or
(string?(x) and (x1 is ['Variable,v]) and (x = PNAME v)) or
$SubDom and isSubDomain(x,x1) => rtc:= 'T
$Coerce => x2=x or canCoerceFrom(x1,x)
x1 is ['Variable,:.] and x = $Symbol
$RTC:= [rtc,:$RTC]
null args1 and null a and b and matchMmSigTar(tar,first sig)
matchMmSigTar(t1,t2) ==
-- t1 is a target type specified by :: or by a declared variable
-- t2 is the target of a modemap signature
null t1 or
isEqualOrSubDomain(t2,t1) => true
if t2 is ['Union,a,b] then
if a='"failed" then return matchMmSigTar(t1, b)
if b='"failed" then return matchMmSigTar(t1, a)
$Coerce and
isPartialMode t1 => resolveTM(t2,t1)
-- I think this should be true -SCM
-- true
canCoerceFrom(t2,t1)
constructSubst(d) ==
-- constructs a substitution which substitutes d for $
-- and the arguments of d for #1, #2 ..
SL:= list ['$,:d]
for x in rest d for i in 1.. repeat
SL:= [[INTERNL('"#",STRINGIMAGE i),:x],:SL]
SL
filterModemapsFromPackages(mms, names, op) ==
-- mms is a list of modemaps
-- names is a list of domain constructors
-- this returns a 2-list containing those modemaps that have one
-- of the names in the package source of the modemap and all the
-- rest of the modemaps in the second element.
good := NIL
bad := NIL
-- hack to speed up factorization choices for mpolys and to overcome
-- some poor naming of packages
mpolys := '("Polynomial" "MultivariatePolynomial"
"DistributedMultivariatePolynomial"
"HomogeneousDistributedMultivariatePolynomial")
mpacks := '("MFactorize" "MRationalFactorize")
for mm in mms repeat
isFreeFunctionFromMm(mm) => bad := [mm,:bad]
type := getDomainFromMm mm
null type => bad := [mm,:bad]
if cons? type then type := first type
getConstructorKindFromDB type = "category" => bad := [mm,:bad]
name := object2String type
found := nil
for n in names while not found repeat
STRPOS(n,name,0,NIL) => found := true
-- hack, hack
(op = 'factor) and member(n,mpolys) and member(name,mpacks) =>
found := true
if found
then good := [mm,:good]
else bad := [mm,:bad]
[good,bad]
isTowerWithSubdomain(towerType,elem) ==
atom towerType => NIL
dt := deconstructT towerType
2 ~= #dt => NIL
s := underDomainOf(towerType)
isEqualOrSubDomain(s,elem) and constructM(first dt,[elem])
selectMmsGen(op,tar,args1,args2) ==
-- general modemap evaluation of op with argument types args1
-- evaluates the condition and looks for the slot number
-- returns all functions which are applicable
-- args2 is a list of polynomial types for symbols
$Subst: local := NIL
$SymbolType: local := NIL
null (S := getModemapsFromDatabase(op,QLENGTH args1)) => NIL
if (op = 'map) and (2 = #args1) and
(first(args1) is ['Mapping,., elem]) and
(a := isTowerWithSubdomain(second args1,elem))
then args1 := [first args1,a]
-- we first split the modemaps into two groups:
-- haves: these are from packages that have one of the top level
-- constructor names in the package name
-- havenots: everything else
-- get top level constructor names for constructors with parameters
conNames := nil
if op = 'reshape then args := append(rest args1, rest args2)
else args := append(args1,args2)
if tar then args := [tar,:args]
-- for common aggregates, use under domain also
for a in removeDuplicates args repeat
a =>
atom a => nil
fa := a.op
fa in '(Record Union) => NIL
conNames := insert(STRINGIMAGE fa, conNames)
if conNames
then [haves,havenots] := filterModemapsFromPackages(S,conNames,op)
else
haves := NIL
havenots := S
mmS := NIL
if $reportBottomUpFlag then
sayMSG ['%l,:bright '"Modemaps from Associated Packages"]
if haves then
[havesExact,havesInexact] := exact?(haves,tar,args1)
if $reportBottomUpFlag then
for mm in append(havesExact,havesInexact) for i in 1.. repeat
sayModemapWithNumber(mm,i)
if havesExact then
mmS := matchMms(havesExact,op,tar,args1,args2)
if mmS then
if $reportBottomUpFlag then
sayMSG '" found an exact match!"
return mmS
mmS := matchMms(havesInexact,op,tar,args1,args2)
else if $reportBottomUpFlag then sayMSG '" no modemaps"
mmS => mmS
if $reportBottomUpFlag then
sayMSG ['%l,:bright '"Remaining General Modemaps"]
-- for mm in havenots for i in 1.. repeat sayModemapWithNumber(mm,i)
if havenots then
[havesNExact,havesNInexact] := exact?(havenots,tar,args1)
if $reportBottomUpFlag then
for mm in append(havesNExact,havesNInexact) for i in 1.. repeat
sayModemapWithNumber(mm,i)
if havesNExact then
mmS := matchMms(havesNExact,op,tar,args1,args2)
if mmS then
if $reportBottomUpFlag then
sayMSG '" found an exact match!"
return mmS
mmS := matchMms(havesNInexact,op,tar,args1,args2)
else if $reportBottomUpFlag then sayMSG '" no modemaps"
mmS
where
exact?(mmS,tar,args) ==
ex := inex := NIL
for (mm := [sig,[mmC,:.],:.]) in mmS repeat
[c,t,:a] := sig
ok := true
for pat in a for arg in args while ok repeat
not CONTAINED(['isDomain,pat,arg],mmC) => ok := NIL
ok => ex := [mm,:ex]
inex := [mm,:inex]
[ex,inex]
matchMms(mmaps,op,tar,args1,args2) ==
mmS := NIL
for [sig,mmC] in mmaps repeat
-- sig is [dc,result,:args]
$Subst :=
tar and not isPartialMode tar =>
-- throw in the target if it is not the same as one
-- of the arguments
res := second sig
member(res,CDDR sig) => NIL
[[res,:tar]]
NIL
[c,t,:a] := sig
if a then matchTypes(a,args1,args2)
$Subst ~= 'failed =>
mmS := nconc(evalMm(op,tar,sig,mmC),mmS)
mmS
matchTypes(pm,args1,args2) ==
-- pm is a list of pattern variables, args1 a list of argument types,
-- args2 a list of polynomial types for symbols
-- the result is a match from pm to args, if one exists
for v in pm for t1 in args1 for t2 in args2 until $Subst='failed repeat
p:= ASSQ(v,$Subst) =>
t:= rest p
t=t1 => $Coerce and t1 = $Symbol and
(q := ASSQ(v,$SymbolType)) and t2 and
(t3 := resolveTT(rest q, t2)) and
(q.rest := t3)
$Coerce =>
if t = $Symbol and (q := ASSQ(v,$SymbolType)) then
t := rest q
if t1 = $Symbol and t2 then t1:= t2
t0 := resolveTT(t,t1) => p.rest := t0
$Subst:= 'failed
$Subst:= 'failed
$Subst:= [[v,:t1],:$Subst]
if t1 = $Symbol and t2 then $SymbolType:= [[v,:t2],:$SymbolType]
evalMm(op,tar,sig,mmC) ==
-- evaluates a modemap with signature sig and condition mmC
-- the result is a list of lists [sig,slot,cond] or NIL
--if $Coerce is NIL, tar has to be the same as the computed target type
--if CONTAINED('LinearlyExplicitRingOver,mmC) then hohoho()
mS:= NIL
for st in evalMmStack mmC repeat
SL:= evalMmCond(op,sig,st)
SL ~= 'failed =>
SL := fixUpTypeArgs SL
sig:= [subCopy(deepSubCopy(x,SL),$Subst) for x in sig]
not containsVars sig =>
isFreeFunctionFromMmCond mmC and (m := evalMmFreeFunction(op,tar,sig,mmC)) =>
mS:= nconc(m,mS)
"or"/[not isValidType(arg) for arg in sig] => nil
[dc,t,:args]:= sig
$Coerce or null tar or tar=t =>
mS:= nconc(findFunctionInDomain(op,dc,t,args,args,NIL,'T),mS)
mS
evalMmFreeFunction(op,tar,sig,mmC) ==
[dc,t,:args]:= sig
$Coerce or null tar or tar=t =>
nilArgs := nil
for a in args repeat nilArgs := [NIL,:nilArgs]
[[[["__FreeFunction__",:dc],t,:args], [t, :args], nilArgs]]
nil
evalMmStack(mmC) ==
-- translates the modemap condition mmC into a list of stacks
mmC is [op,:a] and op in '(AND and %and) =>
["NCONC"/[evalMmStackInner cond for cond in a]]
mmC is [op,:args] and op in '(OR or %or) =>
[:evalMmStack a for a in args]
mmC is ['partial,:mmD] => evalMmStack mmD
mmC is ['ofCategory,pvar,cat] and cat is ['Join,:args] =>
evalMmStack ['%and,:[['ofCategory,pvar,c] for c in args]]
mmC is ['ofType,:.] => [NIL]
mmC is ["has",pat,x] =>
x in '(ATTRIBUTE SIGNATURE) =>
[[['ofCategory,pat,['CATEGORY,'unknown,x]]]]
[['ofCategory,pat,x]]
[[mmC]]
evalMmStackInner(mmC) ==
mmC is [op,:args] and op in '(OR or %or) =>
keyedSystemError("S2GE0016",
['"evalMmStackInner",'"OR condition nested inside an AND"])
mmC is ['partial,:mmD] => evalMmStackInner mmD
mmC is ['ofCategory,pvar,cat] and cat is ['Join,:args] =>
[['ofCategory, pvar, c] for c in args]
mmC is ['ofType,:.] => NIL
mmC is ['isAsConstant] => NIL
mmC is ["has",pat,x] =>
x in '(ATTRIBUTE SIGNATURE) =>
[['ofCategory,pat,['CATEGORY,'unknown,x]]]
[['ofCategory,pat,x]]
[mmC]
evalMmCond(op,sig,st) ==
$insideEvalMmCondIfTrue : local := true
evalMmCond0(op,sig,st)
evalMmCond0(op,sig,st) ==
-- evaluates the nonempty list of modemap conditions st
-- the result is either 'failed or a substitution list
SL:= evalMmDom st
SL='failed => 'failed
for p in SL until p1 and not b repeat b:=
p1:= ASSQ(first p,$Subst)
p1 and
t1:= rest p1
t:= rest p
t=t1 or
containsVars t =>
if $Coerce and t1 = $Symbol then t1:= getSymbolType first p
resolveTM1(t1,t)
$Coerce and
-- if we are looking at the result of a function, the coerce
-- goes the opposite direction
(t1 = $AnonymousFunction and t is ['Mapping, :.]) => t
first p = second sig and not member(first p, CDDR sig) =>
canCoerceFrom(t,t1) => 'T
NIL
canCoerceFrom(t1,t) => 'T
isSubDomain(t,t1) => p.rest := t1
t1 = $Symbol and canCoerceFrom(getSymbolType first p,t)
( SL and p1 and not b and 'failed ) or evalMmCat(op,sig,st,SL)
fixUpTypeArgs SL ==
for (p := [v, :t2]) in SL repeat
t1 := LASSOC(v, $Subst)
null t1 => p.rest := replaceSharpCalls t2
p.rest := coerceTypeArgs(t1, t2, SL)
SL
replaceSharpCalls t ==
noSharpCallsHere t => t
doReplaceSharpCalls t
doReplaceSharpCalls t ==
atom t => t
t is ['_#, l] => #l
t is ['construct,: l] => eval ['LIST,:l]
[first t,:[ doReplaceSharpCalls u for u in rest t]]
noSharpCallsHere t ==
t isnt [con, :args] => true
con in '(construct _#) => NIL
and/[noSharpCallsHere u for u in args]
coerceTypeArgs(t1, t2, SL) ==
-- if the type t has type-valued arguments, coerce them to the new types,
-- if needed.
t1 isnt [con1, :args1] or t2 isnt [con2, :args2] => t2
con1 ~= con2 => t2
coSig := rest getDualSignatureFromDB first t1
and/coSig => t2
csub1 := constructSubst t1
csub2 := constructSubst t2
cs1 := rest getConstructorSignature con1
cs2 := rest getConstructorSignature con2
[con1, :
[makeConstrArg(arg1, arg2, constrArg(c1,csub1,SL),
constrArg(c2,csub2,SL), cs)
for arg1 in args1 for arg2 in args2 for c1 in cs1 for c2 in cs2
for cs in coSig]]
constrArg(v,sl,SL) ==
x := LASSOC(v,sl) =>
y := LASSOC(x,SL) => y
y := LASSOC(x, $Subst) => y
x
y := LASSOC(x, $Subst) => y
v
makeConstrArg(arg1, arg2, t1, t2, cs) ==
if arg1 is ['_#, l] then arg1 := # l
if arg2 is ['_#, l] then arg2 := # l
cs => arg2
t1 = t2 => arg2
obj1 := objNewWrap(arg1, t1)
obj2 := coerceInt(obj1, t2)
null obj2 => throwKeyedMsgCannotCoerceWithValue(wrap arg1,t1,t2)
objValUnwrap obj2
evalMmDom(st) ==
-- evals all isDomain(v,d) of st
SL:= NIL
for mmC in st until SL='failed repeat
mmC is ['isDomain,v,d] =>
string? d => SL:= 'failed
p:= ASSQ(v,SL) and not (d=rest p) => SL:= 'failed
d1:= subCopy(d,SL)
cons?(d1) and MEMQ(v,d1) => SL:= 'failed
SL:= augmentSub(v,d1,SL)
mmC is ['isFreeFunction,v,fun] =>
SL:= augmentSub(v,subCopy(fun,SL),SL)
SL
orderMmCatStack st ==
-- tries to reorder stack so that free pattern variables appear
-- as parameters first
null(st) or null rest(st) => st
vars := DELETE_-DUPLICATES [second(s) for s in st | isPatternVar(second(s))]
null vars => st
havevars := nil
haventvars := nil
for s in st repeat
cat := third s
mem := nil
for v in vars while not mem repeat
if MEMQ(v,cat) then
mem := true
havevars := [s,:havevars]
if not mem then haventvars := [s,:haventvars]
null havevars => st
st := nreverse nconc(haventvars,havevars)
SORT(st, function mmCatComp)
mmCatComp(c1, c2) ==
b1 := ASSQ(second c1, $Subst)
b2 := ASSQ(second c2, $Subst)
b1 and null(b2) => true
false
evalMmCat(op,sig,stack,SL) ==
-- evaluates all ofCategory's of stack as soon as possible
$hope:local:= NIL
numConds:= #stack
stack:= orderMmCatStack [mmC for mmC in stack | mmC is ["ofCategory",:.]]
while stack until not makingProgress repeat
st := stack
stack := NIL
makingProgress := NIL
for mmC in st repeat
S:= evalMmCat1(mmC,op, SL)
S='failed and $hope =>
stack:= [mmC,:stack]
S = 'failed => return S
cons? S =>
makingProgress:= 'T
SL:= mergeSubs(S,SL)
if stack or S='failed then 'failed else SL
evalMmCat1(mmC is ['ofCategory,d,c],op, SL) ==
-- evaluates mmC using information from the lisplib
-- d may contain variables, and the substitution list $Subst is used
-- the result is a substitution or failed
$domPvar: local := NIL
$hope:= NIL
NSL:= hasCate(d,c,SL)
NSL='failed and isPatternVar d and $Coerce and ( p:= ASSQ(d,$Subst) )
and (rest(p) is ["Variable",:.] or rest(p) = $Symbol) =>
p.rest := getSymbolType d
hasCate(d,c,SL)
NSL='failed and isPatternVar d =>
-- following is hack to take care of the case where we have a
-- free substitution variable with a category condition on it.
-- This would arise, for example, where a package has an argument
-- that is not in a needed modemap. After making the following
-- dummy substitutions, the package can be instantiated and the
-- modemap used. RSS 12-22-85
-- If c is not Set, Ring or Field then the more general mechanism
dom := defaultTypeForCategory(c, SL)
null dom =>
op ~= 'coerce => 'failed -- evalMmCatLastChance(d,c,SL)
null (p := ASSQ(d,$Subst)) =>
dom =>
NSL := [[d,:dom]]
op ~= 'coerce => 'failed -- evalMmCatLastChance(d,c,SL)
if containsVars dom then dom := resolveTM(rest p, dom)
$Coerce and canCoerce(rest p, dom) =>
NSL := [[d,:dom]]
op ~= 'coerce => 'failed -- evalMmCatLastChance(d,c,SL)
NSL
hasCate(dom,cat,SL) ==
-- asks whether dom has cat under SL
-- augments substitution SL or returns 'failed
dom = $EmptyMode => NIL
isPatternVar dom =>
(p:= ASSQ(dom,SL)) and ((NSL := hasCate(rest p,cat,SL)) ~= 'failed) =>
NSL
(p:= ASSQ(dom,$Subst)) or (p := ASSQ(dom, SL)) =>
-- S:= hasCate(rest p,cat,augmentSub(first p,rest p,copy SL))
S:= hasCate1(rest p,cat,SL, dom)
not (S='failed) => S
hasCateSpecial(dom,rest p,cat,SL)
if SL ~= 'failed then $hope:= 'T
'failed
SL1 := [[v,:d] for [v,:d] in SL | not containsVariables d]
if SL1 then cat := subCopy(cat, SL1)
hasCaty(dom,cat,SL)
hasCate1(dom, cat, SL, domPvar) ==
$domPvar:local := domPvar
hasCate(dom, cat, SL)
hasCateSpecial(v,dom,cat,SL) ==
-- v is a pattern variable, dom it's binding under $Subst
-- tries to change dom, so that it has category cat under SL
-- the result is a substitution list or 'failed
dom is ['FactoredForm,arg] =>
if isSubDomain(arg,$Integer) then arg := $Integer
d := ['FactoredRing,arg]
SL:= hasCate(arg,'(Ring),augmentSub(v,d,SL))
SL = 'failed => 'failed
hasCaty(d,cat,SL)
cat = $Field or cat = $DivisionRing =>
if isSubDomain(dom,$Integer) then dom := $Integer
d:= eqType [$QuotientField, dom]
hasCaty(dom,'(IntegralDomain),augmentSub(v,d,SL))
cat is ['PolynomialCategory, d, :.] =>
dom' := ['Polynomial, d]
(containsVars d or canCoerceFrom(dom, dom'))
and hasCaty(dom', cat, augmentSub(v,dom',SL))
isSubDomain(dom,$Integer) =>
NSL:= hasCate($Integer,cat,augmentSub(v,$Integer,SL))
NSL = 'failed =>
hasCateSpecialNew(v, dom, cat, SL)
hasCaty($Integer,cat,NSL)
hasCateSpecialNew(v, dom, cat, SL)
-- to be used in $newSystem only
hasCateSpecialNew(v,dom,cat,SL) ==
fe := member(cat.op, '(ElementaryFunctionCategory
TrigonometricFunctionCategory ArcTrigonometricFunctionCategory
HyperbolicFunctionCategory ArcHyperbolicFunctionCategory
PrimitiveFunctionCategory SpecialFunctionCategory Evalable
CombinatorialOpsCategory TranscendentalFunctionCategory
AlgebraicallyClosedFunctionSpace ExpressionSpace
LiouvillianFunctionCategory FunctionSpace))
alg := member(cat.op, '(RadicalCategory AlgebraicallyClosedField))
fefull := fe or alg or cat = $CombinatorialFunctionCategory
partialResult :=
dom is ["Variable",:.] or dom = $Symbol =>
first(cat) in
'(SemiGroup AbelianSemiGroup Monoid AbelianGroup AbelianMonoid
PartialDifferentialRing Ring InputForm) =>
d := ['Polynomial, $Integer]
augmentSub(v, d, SL)
cat = $Group =>
d := ['Fraction, ['Polynomial, $Integer]]
augmentSub(v, d, SL)
fefull =>
d := defaultTargetFE dom
augmentSub(v, d, SL)
'failed
isEqualOrSubDomain(dom, $Integer) =>
fe =>
d := defaultTargetFE $Integer
augmentSub(v, d, SL)
alg =>
d := '(AlgebraicNumber)
--d := defaultTargetFE $Integer
augmentSub(v, d, SL)
'failed
underDomainOf dom = $ComplexInteger =>
d := defaultTargetFE $ComplexInteger
hasCaty(d,cat,augmentSub(v, d, SL))
(dom = $RationalNumber) and alg =>
d := '(AlgebraicNumber)
--d := defaultTargetFE $Integer
augmentSub(v, d, SL)
fefull =>
d := defaultTargetFE dom
augmentSub(v, d, SL)
'failed
partialResult = 'failed => 'failed
hasCaty(d, cat, partialResult)
hasCaty(d,cat,SL) ==
-- calls hasCat, which looks up a hashtable and returns:
-- 1. T, NIL or a (has x1 x2) condition, if cat is not parameterized
-- 2. a list of pairs (argument to cat,condition) otherwise
-- then the substitution SL is augmented, or the result is 'failed
cat is ['CATEGORY,.,:y] => hasAttSig(d,subCopy(y,constructSubst d),SL)
cat is ['SIGNATURE,foo,sig] =>
hasSig(d,foo,subCopy(sig,constructSubst d),SL)
cat is ['ATTRIBUTE,a] => hasAtt(d,subCopy(a,constructSubst d),SL)
cat is ["Join",:.] =>
for c in rest cat while SL ~= "failed" repeat
SL := hasCaty(d,c,SL)
SL
x:= hasCat(opOf d,opOf cat) =>
y:= KDR cat =>
S := constructSubst d
for [z,:cond] in x until not (S1='failed) repeat
S' := [[p, :mkDomPvar(p, d, z, y)] for [p,:d] in S]
if $domPvar then
dom := [first d, :[domArg(arg, i, z, y) for i in 0..
for arg in rest d]]
SL := augmentSub($domPvar, dom, copy SL)
z' := [domArg2(a, S, S') for a in z]
S1:= unifyStruct(y,z',copy SL)
if not (S1='failed) then S1:=
atom cond => S1
ncond := subCopy(cond, S)
ncond is ["has", =d, =cat] => 'failed
hasCaty1(ncond,S1)
S1
atom x => SL
ncond := subCopy(x, constructSubst d)
ncond is ["has", =d, =cat] => 'failed
hasCaty1(ncond, SL)
'failed
mkDomPvar(p, d, subs, y) ==
l := MEMQ(p, $FormalMapVariableList) =>
domArg(d, #$FormalMapVariableList - #l, subs, y)
d
domArg(type, i, subs, y) ==
p := MEMQ($FormalMapVariableList.i, subs) =>
y.(#subs - #p)
type
domArg2(arg, SL1, SL2) ==
isSharpVar arg => subCopy(arg, SL1)
arg = '_$ and $domPvar => $domPvar
subCopy(arg, SL2)
hasCaty1(cond,SL) ==
-- cond is either a (has a b) or an OR clause of such conditions
-- SL is augmented, if cond is true, otherwise the result is 'failed
$domPvar: local := NIL
cond is ["has",a,b] => hasCate(a,b,SL)
cond is [op,:args] and op in '(AND and %and) =>
for x in args while not (S='failed) repeat S:=
x is ["has",a,b] => hasCate(a,b, SL)
-- next line is for an obscure bug in the table
x is [["has",a,b]] => hasCate(a,b, SL)
--'failed
hasCaty1(x, SL)
S
cond is [op,:args] and op in '(OR or %or) =>
for x in args until not (S='failed) repeat S:=
x is ["has",a,b] => hasCate(a,b,copy SL)
-- next line is for an obscure bug in the table
x is [["has",a,b]] => hasCate(a,b,copy SL)
--'failed
hasCaty1(x, copy SL)
S
keyedSystemError("S2GE0016",
['"hasCaty1",'"unexpected condition from category table"])
hasAttSig(d,x,SL) ==
-- d is domain, x a list of attributes and signatures
-- the result is an augmented SL, if d has x, 'failed otherwise
for y in x until SL='failed repeat SL:=
y is ['ATTRIBUTE,a] => hasAtt(d,a,SL)
y is ['SIGNATURE,foo,s] => hasSig(d,foo,s,SL)
keyedSystemError("S2GE0016",
['"hasAttSig",'"unexpected form of unnamed category"])
SL
hasSigAnd(andCls, S0, SL) ==
dead := NIL
SA := 'failed
for cls in andCls while not dead repeat
SA :=
atom cls => copy SL
cls is ["has",a,b] =>
hasCate(subCopy(a,S0),subCopy(b,S0),copy SL)
keyedSystemError("S2GE0016",
['"hasSigAnd",'"unexpected condition for signature"])
if SA = 'failed then dead := true
SA
hasSigOr(orCls, S0, SL) ==
found := NIL
SA := 'failed
for cls in orCls until found repeat
SA :=
atom cls => copy SL
cls is ["has",a,b] =>
hasCate(subCopy(a,S0),subCopy(b,S0),copy SL)
cls is [op,:andCls] and op in '(AND and %and) =>
hasSigAnd(andCls, S0, SL)
keyedSystemError("S2GE0016",
['"hasSigOr",'"unexpected condition for signature"])
if SA ~= 'failed then found := true
SA
hasSig(dom,foo,sig,SL) ==
-- tests whether domain dom has function foo with signature sig
-- under substitution SL
$domPvar: local := nil
fun:= constructor? first dom =>
S0:= constructSubst dom
p := ASSQ(foo,getConstructorOperationsFromDB dom.op) =>
for [x,.,cond,.] in rest p until not (S='failed) repeat
S:=
atom cond => copy SL
cond is ["has",a,b] =>
hasCate(subCopy(a,S0),subCopy(b,S0),copy SL)
cond is [op,:andCls] and op in '(AND and %and) =>
hasSigAnd(andCls, S0, SL)
cond is [op,:orCls] and op in '(OR or %or) =>
hasSigOr(orCls, S0, SL)
keyedSystemError("S2GE0016",
['"hasSig",'"unexpected condition for signature"])
not (S='failed) => S:= unifyStruct(subCopy(x,S0),sig,S)
S
'failed
'failed
hasAtt(dom,att,SL) ==
-- tests whether dom has attribute att under SL
-- needs S0 similar to hasSig above ??
$domPvar: local := nil
fun:= first dom =>
atts:= subCopy(getConstructorAttributesFromDB fun,constructSubst dom) =>
cons? (u := getInfovec first dom) =>
--UGH! New world has attributes stored as pairs not as lists!!
for [x,:cond] in atts until not (S='failed) repeat
S:= unifyStruct(x,att,copy SL)
cons? cond and not (S='failed) => S := hasCatExpression(cond,S)
S
for [x,cond] in atts until not (S='failed) repeat
S:= unifyStruct(x,att,copy SL)
cons? cond and not (S='failed) => S := hasCatExpression(cond,S)
S
'failed
'failed
hasCatExpression(cond,SL) ==
cond is [op,:l] and op in '(OR or %or) =>
or/[(y:=hasCatExpression(x,SL)) ~= 'failed for x in l] => y
cond is [op,:l] and op in '(AND and %and) =>
and/[(SL:= hasCatExpression(x,SL)) ~= 'failed for x in l] => SL
cond is ["has",a,b] => hasCate(a,b,SL)
keyedSystemError("S2GE0016",
['"hasSig",'"unexpected condition for attribute"])
unifyStruct(s1,s2,SL) ==
-- tests for equality of s1 and s2 under substitutions SL and $Subst
-- the result is a substitution list or 'failed
s1=s2 => SL
if s1 is [":",x,.] then s1:= x
if s2 is [":",x,.] then s2:= x
if cons? s1 and first s1 = '_# then s1:= # second s1
if cons? s2 and first s2 = '_# then s2:= # second s2
s1=s2 => SL
isPatternVar s1 => unifyStructVar(s1,s2,SL)
isPatternVar s2 => unifyStructVar(s2,s1,SL)
atom s1 or atom s2 => 'failed
until null s1 or null s2 or SL='failed repeat
SL:= unifyStruct(first s1,first s2,SL)
s1:= rest s1
s2:= rest s2
s1 or s2 => 'failed
SL
unifyStructVar(v,s,SL) ==
-- the first argument is a pattern variable, which is not substituted
-- by SL
CONTAINED(v,s) => 'failed
ps := LASSOC(s, SL)
s1 := (ps => ps; s)
(s0 := LASSOC(v, SL)) or (s0 := LASSOC(v,$Subst)) =>
S:= unifyStruct(s0,s1,copy SL)
S='failed =>
$Coerce and cons? s0 and constructor? first s0 =>
containsVars s0 or containsVars s1 =>
ns0 := subCopy(s0, SL)
ns1 := subCopy(s1, SL)
containsVars ns0 or containsVars ns1 =>
$hope:= 'T
'failed
if canCoerce(ns0, ns1) then s3 := s1
else if canCoerce(ns1, ns0) then s3 := s0
else s3 := nil
s3 =>
if (s3 ~= s0) then SL := augmentSub(v,s3,SL)
if (s3 ~= s1) and isPatternVar(s) then SL := augmentSub(s,s3,SL)
SL
'failed
$domPvar =>
s3 := resolveTT(s0,s1)
s3 =>
if (s3 ~= s0) then SL := augmentSub(v,s3,SL)
if (s3 ~= s1) and isPatternVar(s) then SL := augmentSub(s,s3,SL)
SL
'failed
-- isSubDomain(s,s0) => augmentSub(v,s0,SL)
'failed
'failed
augmentSub(v,s,S)
augmentSub(v,s,SL)
ofCategory(dom,cat) ==
-- entry point to category evaluation from other points than type
-- analysis
-- the result is true or NIL
$Subst:local:= NIL
$hope:local := NIL
IDENTP dom => NIL
cat is ['Join,:cats] => and/[ofCategory(dom,c) for c in cats]
(hasCaty(dom,cat,NIL) ~= 'failed)
printMms(mmS) ==
-- mmS a list of modemap signatures
sayMSG '" "
for [sig,imp,.] in mmS for i in 1.. repeat
istr := strconc('"[",STRINGIMAGE i,'"]")
if QCSIZE(istr) = 3 then istr := strconc(istr,'" ")
sayMSG [:bright istr,'"signature: ",:formatSignature rest sig]
first sig='local =>
sayMSG ['" implemented: local function ",imp]
imp is ['XLAM,:.] =>
sayMSG concat('" implemented: XLAM from ",
prefix2String first sig)
sayMSG concat('" implemented: slot ",imp,
'" from ",prefix2String first sig)
sayMSG '" "
containsVars(t) ==
-- tests whether term t contains a * variable
atom t => isPatternVar t
containsVars1(t)
containsVars1(t) ==
-- recursive version, which works on a list
[t1,:t2]:= t
atom t1 =>
isPatternVar t1 or
atom t2 => isPatternVar t2
containsVars1(t2)
containsVars1(t1) or
atom t2 => isPatternVar t2
containsVars1(t2)
isPartialMode m ==
CONTAINED($EmptyMode,m)
getSymbolType var ==
-- var is a pattern variable
p:= ASSQ(var,$SymbolType) => rest p
t:= '(Polynomial (Integer))
$SymbolType:= [[var,:t],:$SymbolType]
t
isEqualOrSubDomain(d1,d2) ==
-- last 2 parts are for tagged unions (hack for now, RSS)
(d1=d2) or isSubDomain(d1,d2) or
(atom(d1) and ((d2 is ['Variable,=d1]) or (d2 is [=d1])))
or (atom(d2) and ((d1 is ['Variable,=d2]) or (d1 is [=d2])))
defaultTypeForCategory(cat, SL) ==
-- this function returns a domain belonging to cat
-- note that it is important to note that in some contexts one
-- might not want to use this result. For example, evalMmCat1
-- calls this and should possibly fail in some cases.
cat := subCopy(cat, SL)
c := first cat
d := getConstructorDefaultFromDB c
d => [d, :rest cat]
cat is [c] =>
c = 'Field => $RationalNumber
c in '(Ring IntegralDomain EuclideanDomain GcdDomain
OrderedRing DifferentialRing) => $Integer
c = 'OrderedSet => $Symbol
c = 'FloatingPointSystem => $Float
NIL
cat is [c,p1] =>
c = 'FiniteLinearAggregate => ['Vector, p1]
c = 'VectorCategory => ['Vector, p1]
c = 'SetAggregate => ['Set, p1]
c = 'SegmentCategory => ['Segment, p1]
NIL
cat is [c,p1,p2] =>
NIL
cat is [c,p1,p2,p3] =>
cat is ['MatrixCategory, d, ['Vector, =d], ['Vector, =d]] =>
['Matrix, d]
NIL
NIL
|