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 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112
|
subroutine polops
c ====================================================================
c
c operations sur les matrices de polynomes
c
c ====================================================================
c
c Copyright INRIA
include '../stack.h'
c
integer plus,minus,star,dstar,slash,bslash,dot,colon
integer quote,equal,less,great,insert,extrac
c
double precision sr,si,e1,e2,st
integer vol,var1(4),var2(4),var3(4),var4(4),volr,rhs1,top0,op
integer topin
logical chkvar
integer sadr,iadr
c
data plus/45/,minus/46/,star/47/,dstar/62/,slash/48/
data bslash/49/,dot/51/,colon/44/,quote/53/
data equal/50/,less/59/,great/60/,insert/2/,extrac/3/
c
iadr(l)=l+l-1
sadr(l)=(l/2)+1
c
op=fin
if (ddt .eq. 4) then
write(buf(1:4),'(i4)') fin
call basout(io,wte,' polops '//buf(1:4))
endif
c
fun=0
lw=lstk(top+1)
topin=top
if(op.eq.dstar) goto 80
if(op.eq.dstar+dot) goto 70
if(op.eq.colon) goto 200
if(op.eq.extrac) goto 130
if(op.eq.insert) goto 120
c
top0=top+1-rhs
rhs1=rhs
c
var2(1)=0
it2=0
if(rhs.eq.1) goto 05
il2=iadr(lstk(top))
if(istk(il2).lt.0) il2=iadr(istk(il2+1))
if(istk(il2).gt.2) goto 03
m2=istk(il2+1)
n2=istk(il2+2)
it2=istk(il2+3)
mn2=m2*n2
if(istk(il2).ne.1) then
id2=il2+8
call icopy(4,istk(il2+4),1,var2,1)
l2r=sadr(id2+mn2+1)
vol=istk(id2+mn2)-1
l2i=l2r+vol
l3r=lw
goto 03
else
l2r=sadr(il2+4)
l2i=l2r+mn2
id2=iadr(lw)
l3r=sadr(id2+mn2+1)
err=l3r-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call ivimp(1,mn2+1,1,istk(id2))
l3r=l3r+1
endif
03 continue
top = top-1
05 il1=iadr(lstk(top))
if(istk(il1).lt.0) il1=iadr(istk(il1+1))
if(istk(il1).gt.2) goto 10
m1=istk(il1+1)
n1=istk(il1+2)
it1=istk(il1+3)
mn1 = m1*n1
if(istk(il1).ne.1) then
id1=il1+8
call icopy(4,istk(il1+4),1,var1,1)
c
if(var2(1).eq.0) call icopy(4,var1,1,var2,1)
if(op.ne.equal.and.op.ne.less+great) then
if(.not.chkvar(var1,var2)) then
fin=-fin
top=top+1
return
endif
endif
c
l1r=sadr(id1+mn1+1)
vol=istk(id1+mn1)-1
l1i=l1r+vol
else
l1r=sadr(il1+4)
l1i=l1r+mn1
call icopy(4,var2,1,var1,1)
id1=iadr(l3r)
l3r=sadr(id1+mn1+1)
err=l3r-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call ivimp(1,mn1+1,1,istk(id1))
l3r=l3r+1
lw=l3r
endif
c
10 it3=max(it1,it2)
c
goto (60,120,130,65) op
if (op .eq. quote.or.op .eq. quote+dot) goto 110
if (rhs .eq. 1 .and. op .eq. minus) goto 101
if (op .eq. plus .or. op .eq. minus) go to 20
if (op .eq. star.or. op.eq.star+dot) go to 40
if(op.eq.slash.or.op.eq.slash+dot) goto 150
if(op.eq.bslash.or.op.eq.bslash+dot) goto 155
if(op.eq.equal.or.op.eq.less+great) goto 160
c
c operations non implantees
top=top0-1+rhs
fin=-fin
return
c
c addition et soustraction
c
20 continue
vol=istk(id2+mn2)-1
if(op.eq.minus.and.vol.gt.0) call dscal(vol*(it2+1),-1.0d+0
$ ,stk(l2r),1)
if(m1.eq.1.and.n1.eq.1.and.mn2.gt.1) then
c . p+P , p-P
c . p*ones(P) is generated
n=istk(id1+1)-istk(id1)
istk(il1+1)=m2
istk(il1+2)=n2
m1=m2
n1=n2
mn1=m1*n1
l=l1r
c
id1=iadr(l3r)
l1r=sadr(id1+mn2+1)
vol=mn1*n
l1i=l1r+vol
l3r=l1i+vol*it1
err=l3r-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
l1=l1r
istk(id1)=1
do 21 i=1,mn1
istk(id1+i)=istk(id1-1+i)+n
call unsfdcopy(n,stk(l),1,stk(l1),1)
if(it1.eq.1) call unsfdcopy(n,stk(l+n),1,stk(l1+vol),1)
l1=l1+n
21 continue
elseif(m2.eq.1.and.n2.eq.1.and.mn1.gt.1) then
c . P+p, P-p
c . p*ones(P) is generated
n=istk(id2+1)-istk(id2)
m2=abs(m1)
n2=abs(n1)
mn2=m2*n2
l=l2r
c
id2=iadr(l3r)
l2r=sadr(id2+mn1+1)
vol=mn2*n
l2i=l2r+vol
l3r=l2i+vol*it2
err=l3r-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
l2=l2r
istk(id2)=1
do 22 i=1,mn2
istk(id2+i)=istk(id2-1+i)+n
call unsfdcopy(n,stk(l),1,stk(l2),1)
if(it2.eq.1) call unsfdcopy(n,stk(l+n),1,stk(l2+vol),1)
l2=l2+n
22 continue
elseif(mn1.eq.0) then
c . []+P, []-P
call icopy(9+mn2,istk(il2),1,istk(il1),1)
l1=sadr(il1+9+mn2)
vol=(istk(id2+mn2)-1)*(it2+1)
call unsfdcopy(vol,stk(l2r),1,stk(l1),1)
lstk(top+1)=l1+vol
goto 999
elseif(mn2.eq.0) then
c . P+[] , P-[]
goto 999
elseif(m1.lt.0) then
c eye*p+A
c . p*eye(A) is generated
n=istk(id1+1)-istk(id1)
istk(il1+1)=m2
istk(il1+2)=n2
m1=abs(m2)
n1=abs(n2)
mn1=m1*n1
l=l1r
id1=iadr(l3r)
l1r=sadr(id1+mn2+1)
vol=min(n1,m1)*(n-1)+mn2
l1i=l1r+vol
l3r=l1i+vol*it1
err=l3r-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call dset(vol*(it1+1),0.0d+0,stk(l1r),1)
l1=l1r
do 23 i=1,min(n1,m1)
call unsfdcopy(n,stk(l),1,stk(l1),1)
if(it1.eq.1) call unsfdcopy(n,stk(l+n),1,stk(l1+vol),1)
l1=l1+n+m1
23 continue
l1=id1
istk(l1)=1
do 25 j=1,n1
do 24 i=1,m1
l1=l1+1
istk(l1)=istk(l1-1)+1
if(i.eq.j) istk(l1)=istk(l1)+n-1
24 continue
25 continue
elseif(m2.lt.0) then
c A+eye*p
c . p*eye(A) is generated
m2=abs(m1)
n2=abs(n1)
l=l2r
id=id2
n=istk(id+1)-istk(id)
id2=iadr(l3r)
l2r=sadr(id2+mn1+1)
vol=m2*(n-1)+mn1
l2i=l2r+vol
l3r=l2i+vol*it2
err=l3r-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call dset(vol*(it2+1),0.0d+0,stk(l2r),1)
l2=l2r
do 26 i=1,min(n2,m2)
call unsfdcopy(n,stk(l),1,stk(l2),1)
if(it2.eq.1) call unsfdcopy(n,stk(l+n),1,stk(l2+vol),1)
l2=l2+n+m2
26 continue
l2=id2
istk(l2)=1
do 28 j=1,n2
do 27 i=1,m2
l2=l2+1
istk(l2)=istk(l2-1)+1
if(i.eq.j) istk(l2)=istk(l2)+n-1
27 continue
28 continue
elseif(m1.eq.m2.and.n1.eq.n2) then
c . P1+P2 P1-P2
else
if (op.eq.plus) then
call error(8)
else
call error(9)
endif
return
endif
c
id3=iadr(l3r)
l3r=sadr(id3+mn1+1)
vol=0
do 31 k=1,mn1
vol=vol+max(istk(id1+k)-istk(id1+k-1),istk(id2+k)
$ -istk(id2+k-1))
31 continue
l3i=l3r+vol
err=l3i+vol*it3-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
goto (32,33,34) it1+2*it2
call dmpad(stk(l1r),istk(id1),m1,stk(l2r),istk(id2),m2,stk(l3r),
& istk(id3),m1,n1)
call dmpadj(stk(l3r),istk(id3),m1,n1)
goto 35
32 call wdmpad(stk(l1r),stk(l1i),istk(id1),m1,stk(l2r),istk(id2),
& m2,stk(l3r),stk(l3i),istk(id3),m1,n1)
call wmpadj(stk(l3r),stk(l3i),istk(id3),m1,n1)
goto 35
33 call wdmpad(stk(l2r),stk(l2i),istk(id2),m2,stk(l1r),istk(id1),
& m1,stk(l3r),stk(l3i),istk(id3),m1,n1)
call wmpadj(stk(l3r),stk(l3i),istk(id3),m1,n1)
goto 35
34 call wmpad(stk(l1r),stk(l1i),istk(id1),m1,stk(l2r),stk(l2i),
& istk(id2),m2,stk(l3r),stk(l3i),istk(id3),m1,n1)
call wmpadj(stk(l3r),stk(l3i),istk(id3),m1,n1)
35 continue
istk(il1)=2
istk(il1+1)=m1
istk(il1+2)=n1
istk(il1+3)=it3
call icopy(4,var1,1,istk(il1+4),1)
vol=istk(id3+m1*n1)-1
call icopy(mn1+1,istk(id3),1,istk(il1+8),1)
l1r=sadr(il1+9+mn1)
call unsfdcopy(vol,stk(l3r),1,stk(l1r),1)
if(it3.eq.1) call unsfdcopy(vol,stk(l3i),1,stk(l1r+vol),1)
lstk(top+1)=l1r+vol*(it3+1)
goto 999
c
c multiplications
c
40 if(mn1.eq.0.or.mn2.eq.0) then
istk(il1)=1
istk(il1+1)=0
istk(il1+2)=0
istk(il1+3)=0
lstk(top+1)=sadr(il1+4)+1
goto 999
endif
indef=0
if(m1.lt.0) then
if(mn2.eq.1) then
indef=1
else
call error(14)
return
endif
elseif(m2.lt.0) then
if(mn1.eq.1) then
indef=1
else
call error(14)
return
endif
endif
m1=abs(m1)
n1=abs(n1)
m2=abs(m2)
n2=abs(n2)
if(mn1.gt.1.and.mn2.gt.1 .and. op.gt.dot) then
c . a.*b
if(m1.ne.m2.or.n1.ne.n2) then
call error(10)
return
endif
m3=m1
n3=n1
n1=0
vol=istk(id1+mn1)+istk(id2+mn2)-mn2-2
elseif(mn1.eq.1) then
c . cst*b or cst.*b
m1=0
n1=m2
m3=m2
n3=n2
vol=istk(id2+mn2)-1+mn2*(istk(id1+1)-2)
elseif(mn2.eq.1) then
c . a*cst or a.*cst
n2=0
m3=m1
n3=n1
vol=istk(id1+mn1)-1+mn1*(istk(id2+1)-2)
else
c . a*b
if(n1.ne.m2) then
call error(10)
return
endif
m3=m1
n3=n2
c . estimate result size
vol=0
do 46 i=1,m3
j1=id2-m2
do 45 j=1,n3
j1=j1+m2
k1=id1-m1
mx=0
do 44 k=1,n1
k1=k1+m1
ll1=istk(i+k1)-istk(i-1+k1)
ll2=istk(k+j1)-istk(k-1+j1)
mx=max(mx,ll1+ll2)
44 continue
vol=vol+mx-1
45 continue
46 continue
endif
c
50 continue
id3=iadr(l3r)
l3r=sadr(id3+m3*n3+1)
l3i=l3r+vol
err=l3i+it3*vol-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
c
m=max(1,m1)
goto (51,52,53) it1+2*it2
call dmpmu(stk(l1r),istk(id1),m,stk(l2r),istk(id2),m2,
& stk(l3r),istk(id3),m1,n1,n2)
call dmpadj(stk(l3r),istk(id3),m3,n3)
goto 55
51 call wdmpmu(stk(l1r),stk(l1i),istk(id1),m,stk(l2r),istk(id2),
& m2,stk(l3r),stk(l3i),istk(id3),m1,n1,n2)
call wmpadj(stk(l3r),stk(l3i),istk(id3),m3,n3)
goto 55
52 continue
call dwmpmu(stk(l1r),istk(id1),m,stk(l2r),stk(l2i),istk(id2),
& m2,stk(l3r),stk(l3i),istk(id3),m1,n1,n2)
call wmpadj(stk(l3r),stk(l3i),istk(id3),m3,n3)
goto 55
53 call wmpmu(stk(l1r),stk(l1i),istk(id1),m,stk(l2r),stk(l2i),
& istk(id2),m2,stk(l3r),stk(l3i),istk(id3),m1,n1,n2)
call wmpadj(stk(l3r),stk(l3i),istk(id3),m3,n3)
goto 55
c
55 if(istk(il1).eq.1) id1=il1+8
l1r=sadr(id1+m3*n3+1)
call icopy(m3*n3+1,istk(id3),1,istk(id1),1)
vol=istk(id1+m3*n3)-1
call unsfdcopy(vol,stk(l3r),1,stk(l1r),1)
if(it3.eq.1) call unsfdcopy(vol,stk(l3i),1,stk(l1r+vol),1)
lstk(top+1)=l1r+vol*(it3+1)
istk(il1)=2
istk(il1+1)=m3
istk(il1+2)=n3
istk(il1+3)=it3
call icopy(4,var1,1,istk(il1+4),1)
if(indef.eq.0) goto 999
istk(il1+1)=-1
istk(il1+2)=-1
goto 999
c
c concatenation [a b]
c
60 continue
if(m1.lt.0.or.m2.lt.0) then
call error(14)
return
endif
if(m2.eq.0) then
return
elseif(m1.eq.0)then
call unsfdcopy(lstk(top+2)-lstk(top+1),stk(lstk(top+1)),1,
& stk(lstk(top)),1)
lstk(top+1)=lstk(top)+lstk(top+2)-lstk(top+1)
return
elseif(m1.ne.m2) then
call error(5)
return
endif
c
id3=iadr(l3r)
l3r=sadr(id3+mn1+mn2+1)
vol=istk(id1+mn1)+istk(id2+mn2)-2
l3i=l3r+vol
lw=l3i+vol*it3
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
goto (61,62,63) it1+2*it2
call dmpcnc(stk(l1r),istk(id1),m1,stk(l2r),istk(id2),m1,
& stk(l3r),istk(id3),m1,n1,n2,1)
goto 64
61 call wmpcnc(stk(l1r),stk(l1i),istk(id1),m1,stk(l2r),st,
& istk(id2),m1,stk(l3r),stk(l3i),istk(id3),m1,n1,n2,3)
goto 64
62 call wmpcnc(stk(l1r),st,istk(id1),m1,stk(l2r),stk(l2i),
& istk(id2),m1,stk(l3r),stk(l3i),istk(id3),m1,n1,n2,2)
goto 64
63 call wmpcnc(stk(l1r),stk(l1i),istk(id1),m1,stk(l2r),stk(l2i),
& istk(id2),m1,stk(l3r),stk(l3i),istk(id3),m1,n1,n2,1)
goto 64
c
64 istk(il1)=2
istk(il1+1)=m1
istk(il1+2)=n1+n2
istk(il1+3)=it3
call icopy(mn1+mn2+1,istk(id3),1,istk(il1+8),1)
l1r=sadr(il1+9+mn1+mn2)
call unsfdcopy(vol*(it3+1),stk(l3r),1,stk(l1r),1)
call icopy(4,var1,1,istk(il1+4),1)
lstk(top+1)=l1r+vol*(it3+1)
goto 999
c
c concatenation [a;b]
65 if(n1.lt.0.or.n2.lt.0) then
call error(14)
return
endif
if(n2.eq.0) then
goto 999
elseif(n1.eq.0)then
call unsfdcopy(lstk(top+2)-lstk(top+1),stk(lstk(top+1)),1,
& stk(lstk(top)),1)
lstk(top+1)=lstk(top)+lstk(top+2)-lstk(top+1)
goto 999
elseif(n1.ne.n2) then
call error(6)
return
endif
m=m1+m2
mn=m*n1
c
id3=iadr(l3r)
l3r=sadr(id3+mn+1)
vol=istk(id1+mn1)+istk(id2+mn2)-2
l3i=l3r+vol
lw=l3i+vol*it3
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
goto (66,67,68) it1+2*it2
call dmpcnc(stk(l1r),istk(id1),m1,stk(l2r),istk(id2),m2,
& stk(l3r),istk(id3),m1,m2,n2,-1)
goto 69
66 call wmpcnc(stk(l1r),stk(l1i),istk(id1),m1,stk(l2r),st,
& istk(id2),m2,stk(l3r),stk(l3i),istk(id3),m1,m2,n2,-3)
goto 69
67 call wmpcnc(stk(l1r),st,istk(id1),m1,stk(l2r),stk(l2i),
& istk(id2),m2,stk(l3r),stk(l3i),istk(id3),m1,m2,n2,-2)
goto 69
68 call wmpcnc(stk(l1r),stk(l1i),istk(id1),m1,stk(l2r),stk(l2i),
& istk(id2),m2,stk(l3r),stk(l3i),istk(id3),m1,m2,n2,-1)
goto 69
c
69 istk(il1)=2
istk(il1+1)=m
istk(il1+2)=n1
istk(il1+3)=it3
call icopy(mn1+mn2+1,istk(id3),1,istk(il1+8),1)
l1r=sadr(il1+9+mn1+mn2)
call unsfdcopy(vol*(it3+1),stk(l3r),1,stk(l1r),1)
call icopy(4,var1,1,istk(il1+4),1)
lstk(top+1)=l1r+vol*(it3+1)
goto 999
c
c puissance .^
c
70 il2=iadr(lstk(top))
m2=istk(il2+1)
n2=istk(il2+2)
top=top-1
if(istk(il2).ne.1.or.istk(il2+3).ne.0) then
call error(30)
return
endif
mn2=istk(il2+1)*istk(il2+2)
if (mn2.eq.0) then
il1=iadr(lstk(top))
istk(il1)=1
istk(il1+1)=0
istk(il1+2)=0
istk(il1+3)=0
lstk(top+1)=sadr(il1+4)+1
return
endif
l2=sadr(il2+4)
c
il1=iadr(lstk(top))
m1=abs(istk(il1+1))
n1=abs(istk(il1+2))
it1=istk(il1+3)
mn1=m1*n1
id1=il1+8
l1r=sadr(id1+mn1+1)
vol=istk(id1+mn1)-1
l1i=l1r+vol
c
if (mn2 .gt. 1) then
m=m2
n=n2
inc2=1
if (mn1 .eq.1) then
inc1=0
elseif(m1.eq.m2.and.n1.eq.n2) then
inc1=1
else
call error(30)
return
endif
else
inc2=0
inc1=1
m=m1
n=n1
endif
mn=m*n
c
idr=iadr(lw)
lr=sadr(idr+mn+1)
err=lr-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
istk(idr)=1
do 71 i=0,mn-1
i1=i*inc1
i2=i*inc2
nexp=int(stk(l2+i2))
if(dble(nexp).ne.stk(l2+i2)) then
call error(30)
return
elseif(nexp.lt.0) then
fin=-fin
top=top+1
return
endif
istk(idr+i+1)=istk(idr+i)+
$ (istk(id1+i1+1)-istk(id1+i1)-1)*nexp+1
71 continue
nr=istk(idr+mn)-1
err=lr+nr*(it1+1)-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
do 73 i=1,mn
i1=(i-1)*inc1
i2=(i-1)*inc2
nexp=int(stk(l2+i2))
l1=l1r+istk(id1+i1)-1
l=lr+istk(idr+i-1)-1
ni=istk(id1+i1+1)-istk(id1+i1)
if(nexp.gt.0) then
call unsfdcopy(ni,stk(l1),1,stk(l),1)
if(it1.eq.1) call unsfdcopy(ni,stk(l1+vol),1,stk(l+nr),1)
else
stk(l)=1.0d0
if(it1.eq.1) stk(l+nr)=0.0d0
endif
mi=ni-1
if(nexp.gt.1) then
do 72 ne=2,nexp
if(it1.eq.0) then
call dpmul1(stk(l),mi,stk(l1),ni-1,stk(l))
else
call wpmul1(stk(l),stk(l+nr),mi,stk(l1),
& stk(l1+vol),ni-1,stk(l),stk(l+nr))
endif
mi=mi+ni-1
72 continue
endif
73 continue
istk(il1+1)=m
istk(il1+2)=n
istk(il1+3)=it1
call icopy(mn+1,istk(idr),1,istk(id1),1)
l1=sadr(id1+mn+1)
call unsfdcopy(nr*(it1+1),stk(lr),1,stk(l1),1)
lstk(top+1)=l1+nr*(it1+1)
goto 999
c puissance de matrice
80 continue
il2=iadr(lstk(top))
mn2=istk(il2+1)*istk(il2+2)
il1=iadr(lstk(top-1))
m1=abs(istk(il1+1))
n1=abs(istk(il1+2))
it1=istk(il1+3)
mn1=m1*n1
if(mn1.eq.1) goto 70
if(mn2.gt.1) then
fin=-fin
return
endif
if(m1.ne.n1) then
if(mn2.eq.1.and.(m1.eq.1.or.n1.eq.1)) goto 70
err=1
call error(20)
return
endif
fin=-fin
return
c
101 vol=istk(id1+mn1)-1
c multiplication par -1
call dscal(vol*(it1+1),-1.0d+0,stk(l1r),1)
goto 999
c
c transposition
110 continue
vol=istk(id1+mn1)-1
if(abs(m1).eq.1.or.abs(n1).eq.1) then
if(it1.eq.1.and.op.ne.quote+dot) then
call dscal(vol,-1.0d0,stk(l1i),1)
endif
istk(il1+1)=n1
istk(il1+2)=m1
goto 999
endif
id2=iadr(lstk(top+1))
l2r=sadr(id2+mn1+1)
l2i=l2r+vol
err=l2r+vol*(it1+1)-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
if(it1.eq.1) goto 111
call dmptra(stk(l1r),istk(id1),m1,stk(l2r),istk(id2),m1,n1)
goto 112
111 call wmptra(stk(l1r),stk(l1i),istk(id1),m1,stk(l2r),stk(l2i),
& istk(id2),m1,n1)
112 istk(il1+1)=n1
istk(il1+2)=m1
call icopy(mn1+1,istk(id2),1,istk(id1),1)
call unsfdcopy(vol*(it1+1),stk(l2r),1,stk(l1r),1)
if (it1.eq.1.and.op.ne.quote+dot) then
call dscal(vol,-1.0d0,stk(l1r+vol),1)
endif
goto 999
c
c
c insertion
c
120 continue
if(rhs.gt.4) then
top=topin
fin=-fin
return
endif
if(rhs.eq.4) goto 124
c arg3(arg1)=arg2
c
c get arg3
var3(1)=0
il3=iadr(lstk(top))
if(istk(il3).lt.0) il3=iadr(istk(il3+1))
m3=istk(il3+1)
n3=istk(il3+2)
it3=istk(il3+3)
mn3=m3*n3
if(istk(il3).eq.2) then
id3=il3+8
call icopy(4,istk(il3+4),1,var3,1)
l3r=sadr(id3+mn3+1)
vol=istk(id3+mn3)-1
l3i=l3r+vol
elseif(istk(il3).eq.1) then
l3r=sadr(il3+4)
l3i=l3r+mn3
id3=iadr(lw)
lw=sadr(id3+mn3+1)
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call ivimp(1,mn3+1,1,istk(id3))
endif
c get arg2
top=top-1
var2(1)=0
il2=iadr(lstk(top))
if(istk(il2).lt.0) il2=iadr(istk(il2+1))
if(istk(il2).eq.0) then
call error(220)
return
endif
m2=istk(il2+1)
n2=istk(il2+2)
it2=istk(il2+3)
mn2=m2*n2
if(istk(il2).eq.2) then
id2=il2+8
call icopy(4,istk(il2+4),1,var2,1)
l2r=sadr(id2+mn2+1)
vol=istk(id2+mn2)-1
l2i=l2r+vol
else
l2r=sadr(il2+4)
l2i=l2r+mn2
id2=iadr(lw)
lw=sadr(id2+mn2+1)
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call ivimp(1,mn2+1,1,istk(id2))
endif
if(var2(1).eq.0) call icopy(4,var3,1,var2,1)
if(.not.chkvar(var2,var3)) then
fin=-fin
top=top+1
endif
c get arg1
top=top-1
il1=iadr(lstk(top))
ilrs=il1
if(il1.lt.0) il1=iadr(istk(il1))
if(istk(il1).eq.0) then
call error(220)
return
endif
if (istk(il1).eq.10.or.istk(il1).eq.15) then
top=topin
fin=-fin
return
endif
m1=istk(il1+1)
n1=istk(il1+2)
c
if (m2.eq.0) then
c . arg3(arg1)=[]
if(m1.eq.-1) then
c . arg3(:)=[] -->[]
istk(ilrs)=1
istk(ilrs+1)=0
istk(ilrs+2)=0
istk(ilrs+3)=0
lstk(top+1)=sadr(ilrs+4)+1
goto 999
elseif(m1.eq.0) then
c . arg3([])=[] --> arg3
volr=istk(id3+mn3)-1
istk(ilrs)=2
istk(ilrs+1)=m3
istk(ilrs+2)=n3
istk(ilrs+3)=it3
call icopy(4,var2,1,istk(ilrs+4),1)
call icopy(mn3+1,istk(id3),1,istk(ilrs+8),1)
l1=sadr(ilrs+9+mn3)
call unsfdcopy(volr*(it3+1),stk(l3r),1,stk(l1),1)
lstk(top+1)=l1+volr*(it3+1)
goto 999
else
c . arg3(arg1)=[] --> arg3(compl(arg1))
call indxgc(il1,mn3,ilr,mi,mx,lw)
if(err.gt.0) return
l2r=l3r
l2i=l3i
n2=n3
m2=m3
mn2=m2*n2
it2=it3
id2=id3
ili=ilr
c . call extraction
goto 131
endif
elseif(m2.lt.0.or.m3.lt.0) then
c . arg3=eye,arg2=eye
call error(14)
return
elseif(m1.lt.0) then
c . arg3(:)=arg2
if(mn2.ne.mn3) then
if(mn2.eq.1) goto 121
call error(15)
return
endif
c . reshape arg2 according to arg3
volr=lstk(top+2)-lstk(top+1)
c . copy arg2
call unsfdcopy(volr,stk(lstk(top+1)),1,stk(lstk(top)),1)
c . change dimensions
istk(ilrs+1)=m3
istk(ilrs+2)=n3
lstk(top+1)=lstk(top)+volr
goto 999
endif
121 call indxg(il1,mn3,ili,mi,mxi,lw,1)
if(err.gt.0) return
if(mi.eq.0) then
c . arg3([])=arg2
if(mn2.eq.1) then
c . arg3([])=c --> arg3
volr=istk(id3+mn3)-1
istk(ilrs)=2
istk(ilrs+1)=m3
istk(ilrs+2)=n3
istk(ilrs+3)=it3
call icopy(4,var2,1,istk(ilrs+4),1)
call icopy(mn3+1,istk(id3),1,istk(ilrs+8),1)
l1=sadr(ilrs+9+mn3)
call unsfdcopy(volr*(it3+1),stk(l3r),1,stk(l1),1)
lstk(top+1)=l1+volr*(it3+1)
goto 999
else
call error(15)
return
endif
endif
inc2=1
if(mi.ne.mn2) then
if(mn2.eq.1) then
inc2=0
else
call error(15)
return
endif
endif
c
if (n3.gt.1.and.m3.gt.1) then
c . arg3 is not a vector
if(n2.gt.1.and.m2.gt.1) then
call error(15)
return
endif
if(mxi.gt.m3*n3) then
call error(21)
return
endif
mr=m3
nr=n3
elseif (n3.le.1.and.n2.le.1) then
c . arg3 and arg2 are column vectors
mr=max(m3,mxi)
nr=max(n3,1)
elseif (m3.le.1.and.m2.le.1) then
c . row vectors
nr=max(n3,mxi)
mr=max(m3,1)
else
c . arg3 and arg2 dimensions dont agree
call error(15)
return
endif
c
itr=max(it2,it3)
mnr=mr*nr
c set result pointers
idr=iadr(lw)
lr=sadr(idr+mr*nr+1)
lw=lr
err=lr-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call mpinsp(istk(id3),m3*n3,1,istk(ili),mi,1,1,istk(id2),m2*n2,1
$ ,istk(idr),mr*nr,1,err)
if(err.gt.0) then
call error(15)
return
endif
volr=istk(idr)
c set result coefficients
li=lr+volr
lw=li+volr*itr
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
c
if(it2.eq.0) then
if(it3.eq.0) then
call dmpins(stk(l3r),istk(id3),m3*n3,1,stk(l2r),istk(id2),
$ m2*n2,1,stk(lr),istk(idr),mr*nr,1)
else
l2i=lw
lw=l2i+istk(id2+mn2)
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call dset(istk(id2+mn2)-1,0.0d+0,stk(l2i),1)
call wmpins(stk(l3r),stk(l3i),istk(id3),m3*n3,1,
$ stk(l2r),stk(l2i),istk(id2),m2*n2,1,stk(lr),
$ stk(lr+volr),istk(idr),mr*nr,1)
endif
else
if(it3.eq.0) then
l3i=lw
lw=l3i+istk(id3+mn3)
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call dset(istk(id3+mn3)-1,0.0d+0,stk(l3i),1)
call wmpins(stk(l3r),stk(l3i),istk(id3),m3*n3,1,
$ stk(l2r),stk(l2i),istk(id2),m2*n2,1,stk(lr),
$ stk(lr+volr),istk(idr),mr*nr,1)
else
call wmpins(stk(l3r),stk(l3i),istk(id3),m3*n3,1,
$ stk(l2r),stk(l2i),istk(id2),m2*n2,1,stk(lr),
$ stk(lr+volr),istk(idr),mr*nr,1)
endif
endif
c set output variable
il1=iadr(lstk(top))
istk(il1)=2
istk(il1+1)=mr
istk(il1+2)=nr
istk(il1+3)=itr
call icopy(4,var2,1,istk(il1+4),1)
call icopy(mr*nr+1,istk(idr),1,istk(il1+8),1)
l1=sadr(il1+mr*nr+9)
call unsfdcopy(volr*(itr+1),stk(lr),1,stk(l1),1)
lstk(top+1)=l1+volr*(itr+1)
goto 999
c
124 continue
c arg4(arg1,arg2)=arg3
c get arg4
var4(1)=0
il4=iadr(lstk(top))
if(istk(il4).lt.0) il4=iadr(istk(il4+1))
m4=istk(il4+1)
n4=istk(il4+2)
it4=istk(il4+3)
mn4=m4*n4
if(istk(il4).eq.2) then
id4=il4+8
call icopy(4,istk(il4+4),1,var4,1)
l4r=sadr(id4+mn4+1)
vol=istk(id4+mn4)-1
l4i=l4r+vol
else
l4r=sadr(il4+4)
l4i=l4r+mn4
id4=iadr(lw)
lw=sadr(id4+mn4+1)
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call ivimp(1,mn4+1,1,istk(id4))
endif
top=top-1
c get arg3
var3(1)=0
il3=iadr(lstk(top))
if(istk(il3).lt.0) il3=iadr(istk(il3+1))
if(istk(il3).eq.0) then
call error(220)
return
endif
m3=istk(il3+1)
n3=istk(il3+2)
it3=istk(il3+3)
mn3=m3*n3
if(istk(il3).eq.2) then
id3=il3+8
call icopy(4,istk(il3+4),1,var3,1)
l3r=sadr(id3+mn3+1)
vol=istk(id3+mn3)-1
l3i=l3r+vol
else
l3r=sadr(il3+4)
l3i=l3r+mn3
id3=iadr(lw)
lw=sadr(id3+mn3+1)
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call ivimp(1,mn3+1,1,istk(id3))
endif
if(var3(1).eq.0) call icopy(4,var4,1,var3,1)
if(.not.chkvar(var3,var4)) then
fin=-fin
top=top+2
endif
c get arg2
top=top-1
il2=iadr(lstk(top))
if(istk(il2).lt.0) il2=iadr(istk(il2+1))
if(istk(il2).eq.0) then
call error(220)
return
endif
m2=istk(il2+1)
c get arg1
top=top-1
il1=iadr(lstk(top))
ilrs=il1
if(istk(il1).lt.0) il1=iadr(istk(il1+1))
if(istk(il1).eq.0) then
call error(220)
return
endif
m1=istk(il1+1)
if (m3.eq.0) then
c . arg4(arg1,arg2)=[]
if(m1.eq.-1.and.m2.eq.-1) then
c . arg4(:,:)=[] -->[]
istk(ilrs)=1
istk(ilrs+1)=0
istk(ilrs+2)=0
istk(ilrs+3)=0
lstk(top+1)=sadr(ilrs+4)+1
goto 999
elseif(m1.eq.0.or.m2.eq.0) then
c . arg4([],arg2)=[], arg4(arg1,[])=[] --> arg4
volr=istk(id4+mn4)-1
istk(ilrs)=2
istk(ilrs+1)=m4
istk(ilrs+2)=n4
istk(ilrs+3)=it4
call icopy(4,var3,1,istk(ilrs+4),1)
call icopy(mn4+1,istk(id4),1,istk(ilrs+8),1)
l1=sadr(ilrs+9+mn4)
call unsfdcopy(volr*(it4+1),stk(l4r),1,stk(l1),1)
lstk(top+1)=l1+volr*(it4+1)
goto 999
elseif(m2.eq.-1) then
c . arg4(arg1,:)=[] --> arg3(compl(arg1),:)
call indxgc(il1,m4,ili,mi,mxi,lw)
if(err.gt.0) return
call indxg(il2,n4,ilj,nj,mxj,lw,1)
if(err.gt.0) return
l3r=l4r
l3i=l4i
n3=n4
m3=m4
mn3=m3*n3
it3=it4
id3=id4
c . call extraction
goto 133
elseif(m1.eq.-1) then
c . arg4(:,arg2)=[] --> arg4(:,compl(arg2))
call indxgc(il2,n4,ilj,nj,mxj,lw)
if(err.gt.0) return
call indxg(il1,m4,ili,mi,mxi,lw,1)
if(err.gt.0) return
l3r=l4r
l3i=l4i
n3=n4
m3=m4
mn3=m3*n3
it3=it4
id3=id4
c . call extraction
goto 133
else
c . arg4(arg1,arg2)=[]
lw1=lw
call indxgc(il2,n4,ilj,nj,mxj,lw)
if(err.gt.0) return
if(nj.eq.0) then
c . arg4(arg1,1:n4)=[]
call indxgc(il1,m4,ili,mi,mxi,lw)
lw2=lw
if(err.gt.0) return
c . arg2=1:n4
if(mi.eq.0) then
c . arg4(1:m4,1:n4)=[]
istk(ilrs)=1
istk(ilrs+1)=0
istk(ilrs+2)=0
istk(ilrs+3)=0
lstk(top+1)=sadr(ilrs+4)+1
goto 999
else
c . arg4(arg1,1:n4)=[]
c . replace arg2 by ":"
il2=iadr(lw2)
istk(il2)=1
istk(il2+1)=-1
istk(il2+2)=-1
istk(il2+3)=0
c .
lw=lw2+2
call indxg(il2,n4,ilj,nj,mxj,lw,1)
if(err.gt.0) return
l3r=l4r
n3=n4
m3=m4
it3=it4
mn3=m3*n3
id3=id4
c . call extraction
goto 133
endif
else
c lw=lw1
call indxgc(il1,m4,ili,mi,mxi,lw)
if(err.gt.0) return
if(mi.eq.0) then
call indxg(il1,m4,ili,mi,mxi,lw,1)
if(err.gt.0) return
l3r=l4r
n3=n4
m3=m4
it3=it4
mn3=m3*n3
id3=id4
c . call extraction
goto 133
else
call error(15)
return
endif
endif
endif
elseif(m3.lt.0.or.m4.lt.0) then
c . arg3=eye , arg4=eye
call error(14)
return
elseif(m1.eq.-1.and.m2.eq.-1) then
c . arg4(:,:)=arg3
if(mn3.ne.mn4) then
if(mn3.eq.1) goto 125
call error(15)
return
endif
c . reshape arg3 according to arg4
volr=istk(id3+mn3)-1
istk(ilrs)=2
istk(ilrs+1)=m4
istk(ilrs+2)=n4
istk(ilrs+3)=it3
call icopy(4,var3,1,istk(ilrs+4),1)
call icopy(mn3+1,istk(id3),1,istk(ilrs+8),1)
l1=sadr(ilrs+9+mn3)
call unsfdcopy(volr*(it3+1),stk(l3r),1,stk(l1),1)
lstk(top+1)=l1+volr*(it3+1)
goto 999
endif
125 call indxg(il1,m4,ili,mi,mxi,lw,1)
if(err.gt.0) return
call indxg(il2,n4,ilj,mj,mxj,lw,1)
if(err.gt.0) return
if(mi.ne.m3.or.mj.ne.n3) then
c . sizes of arg1 or arg2 dont agree with arg3 sizes
inc3=1
if(mn3.eq.1) then
if(mi.eq.0.or.mj.eq.0) then
volr=istk(id4+mn4)-1
istk(ilrs)=2
istk(ilrs+1)=m4
istk(ilrs+2)=n4
istk(ilrs+3)=it4
call icopy(4,var3,1,istk(ilrs+4),1)
call icopy(mn4+1,istk(id4),1,istk(ilrs+8),1)
l1=sadr(ilrs+9+mn4)
call unsfdcopy(volr*(it4+1),stk(l4r),1,stk(l1),1)
lstk(top+1)=l1+volr*(it4+1)
goto 999
endif
inc3=0
else
call error(15)
return
endif
else
if(mi.eq.0.or.mj.eq.0) then
call error(15)
return
endif
endif
mr=max(m4,mxi)
nr=max(n4,mxj)
c
mnr=mr*nr
itr=max(it4,it3)
c set result pointers
idr=iadr(lw)
lr=sadr(idr+mr*nr+1)
lw=lr
err=lr-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call mpinsp(istk(id4),m4,n4,istk(ili),mi,istk(ilj),mj,istk(id3)
$ ,m3,n3,istk(idr),mr,nr,err)
if(err.gt.0) then
call error(15)
return
endif
volr=istk(idr)
c set result coefficients
li=lr+volr
lw=li+volr*itr
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
c
if(it3.eq.0) then
if(it4.eq.0) then
call dmpins(stk(l4r),istk(id4),m4,n4,stk(l3r),istk(id3),
$ m3,n3,stk(lr),istk(idr),mr,nr)
else
l3i=lw
lw=l3i+istk(id3+mn3)
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call dset(istk(id3+mn3),0.0d+0,stk(l3i),1)
call wmpins(stk(l4r),stk(l4i),istk(id4),m4,n4,
$ stk(l3r),stk(l3i),istk(id3),m3,n3,stk(lr),
$ stk(lr+volr),istk(idr),mr,nr)
endif
else
if(it4.eq.0) then
l4i=lw
lw=l4i+istk(id4+mn4)
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call dset(istk(id4+mn4),0.0d+0,stk(l4i),1)
call wmpins(stk(l4r),stk(l4i),istk(id4),m4,n4,
$ stk(l3r),stk(l3i),istk(id3),m3,n3,stk(lr),
$ stk(lr+volr),istk(idr),mr,nr)
else
call wmpins(stk(l4r),stk(l4i),istk(id4),m4,n4,
$ stk(l3r),stk(l3i),istk(id3),m3,n3,stk(lr),
$ stk(lr+volr),istk(idr),mr,nr)
endif
endif
c set output variable
il1=iadr(lstk(top))
istk(il1)=2
istk(il1+1)=mr
istk(il1+2)=nr
istk(il1+3)=itr
call icopy(4,var3,1,istk(il1+4),1)
call icopy(mr*nr+1,istk(idr),1,istk(il1+8),1)
l1=sadr(il1+mr*nr+9)
call unsfdcopy(volr*(itr+1),stk(lr),1,stk(l1),1)
lstk(top+1)=l1+volr*(itr+1)
goto 999
c
c extraction
130 continue
if(rhs.lt.2) then
call error(227)
return
endif
if(rhs.gt.2) goto 132
c arg2(arg1)
c get arg2
il2=iadr(lstk(top))
if(istk(il2).lt.0) il2=iadr(istk(il2+1))
m2=istk(il2+1)
n2=istk(il2+2)
it2=istk(il2+3)
mn2=m2*n2
id2=il2+8
call icopy(4,istk(il2+4),1,var2,1)
l2r=sadr(id2+mn2+1)
vol=istk(id2+mn2)-1
l2i=l2r+vol
c get arg1
top=top-1
il1=iadr(lstk(top))
if(istk(il1).lt.0) il1=iadr(istk(il1+1))
if(istk(il1).eq.0) then
call error(220)
return
endif
m1=istk(il1+1)
n1=istk(il1+2)
if(mn2.eq.0) then
c . arg2=[]
il1=iadr(lstk(top))
istk(il1)=1
istk(il1+1)=0
istk(il1+2)=0
istk(il1+3)=0
l1=sadr(il1+4)
lstk(top+1)=l1+1
goto 999
elseif(m2.lt.0) then
c . arg2=eye
call error(14)
return
elseif(m1.lt.0) then
c . arg2(:), just reshape to column vector
volr=istk(id2+mn2)-1
il1=iadr(lstk(top))
istk(il1)=2
istk(il1+1)=mn2
istk(il1+2)=1
istk(il1+3)=istk(il2+3)
call icopy(4,var2,1,istk(il1+4),1)
call icopy(mn2+1,istk(id2),1,istk(il1+8),1)
l1=sadr(il1+9+mn2)
call unsfdcopy(volr*(it2+1),stk(l2r),1,stk(l1),1)
lstk(top+1)=l1+volr*(it2+1)
goto 999
endif
c check and convert indices variable
call indxg(il1,mn2,ili,mi,mx,lw,1)
if(err.gt.0) return
if(mx.gt.mn2) then
call error(21)
return
endif
131 if(mi.eq.0) then
c arg2([])
il1=iadr(lstk(top))
istk(il1)=1
istk(il1+1)=0
istk(il1+2)=0
istk(il1+3)=0
l1=sadr(il1+4)
lstk(top+1)=l1+1
goto 999
endif
c get memory for the result
idr=iadr(lw)
lr=sadr(idr+mi+1)
lw=lr
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
c set result pointers
if (m2 .gt. 1.or.m1.lt.0) then
call dmpext(stk(l2r),istk(id2),m2,n2,istk(ili),mi,1,1,stk(lr)
$ ,istk(idr),0,err)
else
call dmpext(stk(l2r),istk(id2),m2,n2,1,1,istk(ili),mi,stk(lr)
$ ,istk(idr),0,err)
endif
if(err.gt.0) then
call error(21)
return
endif
c set result coefficients
volr=istk(idr+mi)-1
lw=lr+volr*(it2+1)
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
if (m2.eq.1.and.n2.eq.1.and.m1.gt.0) then
m = m1
n = min(n1,mi)
call dmpext(stk(l2r),istk(id2),m2,n2,istk(ili),mi,1,1,stk(lr)
$ ,istk(idr),1,err)
if(it2.eq.1) call dmpext(stk(l2i),istk(id2),m2,n2,istk(ili),mi
$ ,1,1,stk(lr+volr),istk(idr),1,err)
elseif (m2 .gt. 1.or.m1.lt.0) then
call dmpext(stk(l2r),istk(id2),m2,n2,istk(ili),mi,1,1,stk(lr)
$ ,istk(idr),1,err)
if(it2.eq.1) call dmpext(stk(l2i),istk(id2),m2,n2,istk(ili),mi
$ ,1,1,stk(lr+volr),istk(idr),1,err)
m = mi
n = 1
else
call dmpext(stk(l2r),istk(id2),m2,n2,1,1,istk(ili),mi,stk(lr)
$ ,istk(idr),1,err)
if(it2.eq.1) call dmpext(stk(l2i),istk(id2),m2,n2,1,1,istk(ili)
$ ,mi,stk(lr+volr),istk(idr),1,err)
n = mi
m = 1
endif
c form resulting variable
il1=iadr(lstk(top))
istk(il1)=2
istk(il1+1)=m
istk(il1+2)=n
istk(il1+3)=it2
call icopy(4,var2,1,istk(il1+4),1)
call icopy(mi+1,istk(idr),1,istk(il1+8),1)
l1=sadr(il1+9+mi)
call unsfdcopy(volr*(it2+1),stk(lr),1,stk(l1),1)
lstk(top+1)=l1+volr*(it2+1)
go to 999
c
132 continue
c arg3(arg1,arg2)
if(rhs.gt.3) then
call error(36)
return
endif
c get arg3
il3=iadr(lstk(top))
if(istk(il3).lt.0) il3=iadr(istk(il3+1))
m3=istk(il3+1)
n3=istk(il3+2)
it3=istk(il3+3)
mn3=m3*n3
id3=il3+8
call icopy(4,istk(il3+4),1,var3,1)
l3r=sadr(id3+mn3+1)
vol=istk(id3+mn3)-1
l3i=l3r+vol
c get arg2
top=top-1
il2=iadr(lstk(top))
if(istk(il2).lt.0) il2=iadr(istk(il2+1))
if(istk(il2).eq.0) then
call error(220)
return
endif
m2=istk(il2+1)
c get arg1
top=top-1
il1=iadr(lstk(top))
if(istk(il1).lt.0) il1=iadr(istk(il1+1))
if(istk(il1).eq.0) then
call error(220)
return
endif
m1=istk(il1+1)
c
if(mn3.eq.0) then
c . arg3=[]
il1=iadr(lstk(top))
istk(il1)=1
istk(il1+1)=0
istk(il1+2)=0
istk(il1+3)=0
l1=sadr(il1+4)
lstk(top+1)=l1+1
goto 999
elseif(m3.lt.0) then
c .arg3=eye
call error(14)
return
endif
c check and convert indices variables
call indxg(il1,m3,ili,mi,mxi,lw,1)
if(err.gt.0) return
if(mxi.gt.m3) then
call error(21)
return
endif
call indxg(il2,n3,ilj,nj,mxj,lw,1)
if(err.gt.0) return
if(mxj.gt.n3) then
call error(21)
return
endif
c
c perform extraction
133 mnr=mi*nj
if(mnr.eq.0) then
c . arg1=[] or arg2=[]
il1=iadr(lstk(top))
istk(il1)=1
istk(il1+1)=0
istk(il1+2)=0
istk(il1+3)=0
l1=sadr(il1+4)
lstk(top+1)=l1+1
goto 999
endif
idr=iadr(lw)
lr=sadr(idr+mnr+1)
lw=lr
err=lr-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
c set result pointers
call dmpext(stk(l3r),istk(id3),m3,n3,istk(ili),mi,istk(ilj),nj
$ ,stk(lr),istk(idr),0,err)
if(err.gt.0) then
call error(21)
return
endif
c set result coefficients
volr=istk(idr+mnr)-1
lw=lr+volr*(it3+1)
err=lw-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call dmpext(stk(l3r),istk(id3),m3,n3,istk(ili),mi,istk(ilj),nj
$ ,stk(lr),istk(idr),1,err)
if(it3.eq.1) call dmpext(stk(l3i),istk(id3),m3,n3,istk(ili),mi
$ ,istk(ilj),nj,stk(lr+volr),istk(idr),1,err)
c
il1=iadr(lstk(top))
istk(il1)=2
istk(il1+1)=mi
istk(il1+2)=nj
istk(il1+3)=it3
call icopy(4,var3,1,istk(il1+4),1)
call icopy(mnr+1,istk(idr),1,istk(il1+8),1)
l1=sadr(il1+9+mnr)
call unsfdcopy(volr*(it3+1),stk(lr),1,stk(l1),1)
lstk(top+1)=l1+volr*(it3+1)
goto 999
c
c divisions
c
c division a droite
150 continue
if(mn1.eq.0.or.mn2.eq.0) then
istk(il1)=1
istk(il1+1)=0
istk(il1+2)=0
istk(il1+3)=0
lstk(top+1)=sadr(il1+4)+1
goto 999
endif
if(op.eq.slash) then
if(mn2.ne.1.and.mn1.ne.1.and.n2.ne.n1) then
call error(11)
return
endif
if(istk(il2).ne.1) then
c . divisor is a polynomial
fin=-op
top=top+1
goto 999
elseif(mn2.gt.1) then
c . divisor is not a scalar
fin=-op
top=top+1
goto 999
else
c . scalar divisor
mn=mn2
l=l2r
il=il2
it=it2
goto 157
endif
elseif(op.eq.dot+slash) then
if(mn2.ne.1.and.mn1.ne.1.and.(m1.ne.m2.or.n1.ne.n2)) then
call error(11)
return
endif
if(istk(il2).ne.1) then
c . divisor is a polynomial
fin=-op
top=top+1
goto 999
else
c . divisor is a vector of scalar
mn=mn2
l=l2r
il=il2
it=it2
goto 157
endif
endif
c
c
c division a gauche
155 continue
if(mn1.eq.0.or.mn2.eq.0) then
istk(il1)=1
istk(il1+1)=0
istk(il1+2)=0
istk(il1+3)=0
lstk(top+1)=sadr(il1+4)+1
goto 999
endif
if(op.eq.bslash) then
if(mn2.ne.1.and.mn1.ne.1.and.m2.ne.m1) then
call error(12)
return
endif
if(istk(il1).ne.1) then
c . divisor is a polynomial
fin=-op
top=top+1
goto 999
elseif(mn1.gt.1) then
c . divisor is not a scalar
fin=-op
top=top+1
goto 999
else
c . scalar divisor
mn=mn1
l=l1r
il=il1
it=it1
goto 157
endif
elseif(op.eq.dot+bslash) then
if(mn2.ne.1.and.mn1.ne.1.and.(m1.ne.m2.or.n1.ne.n2)) then
call error(12)
return
endif
if(istk(il1).ne.1) then
c . divisor is a polynomial
fin=-op
top=top+1
goto 999
else
c . divisor is a vector of scalar
mn=mn1
l=l1r
il=il1
it=it1
goto 157
endif
endif
go to 999
c in-line inversion procedure
157 continue
c divisor is a vector of scalars
do 158 i=1,mn
sr=stk(l-1+i)
si=0.0d+0
if(it.eq.1) si=stk(l+mn-1+i)
e1=max(abs(sr),abs(si))
if(e1.eq.0.d0) then
call error(27)
return
endif
sr=sr/e1
si=si/e1
e1=e1*(sr*sr+si*si)
stk(l-1+i)=sr/e1
if(it.eq.1) stk(l+mn-1+i)=-si/e1
158 continue
c . goto multiplication alg
goto 40
c
c comparaisons
160 continue
itrue=1
if(op.eq.less+great) itrue=0
c comparaison des types
if(istk(il1).gt.2.or.istk(il2).gt.2) then
istk(il1)=4
istk(il1+1)=1
istk(il1+2)=1
istk(il1+3)=1-itrue
lstk(top+1)=sadr(il1+4)
return
endif
c des nom de variable
do 161 i=1,4
if(var1(i).ne.var2(i)) then
istk(il1)=4
istk(il1+1)=1
istk(il1+2)=1
istk(il1+3)=1-itrue
lstk(top+1)=sadr(il1+4)
return
endif
161 continue
c des dimensions
if(m1.eq.-1) then
c . eye op b
nn1=istk(id1+1)-1
il1w=iadr(lw)
lw=sadr(il1w+m2*n2)
err=lw+2-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
stk(lw)=0.0d0
stk(lw+1)=0.0d0
i2=id2
n2=abs(n2)
m2=abs(m2)
do 166 i=1,n2
do 165 j=1,m2
if (i.eq.j) then
if(nn1.ne.istk(i2+1)-istk(i2) ) goto 164
nl=nn1
l1=l1r-1
else
if(1.ne.istk(i2+1)-istk(i2) ) goto 164
l1=lw-1
nl=1
endif
l2=l2r+istk(i2)-2
do 162 ii=1,nl
if(stk(l1+ii).ne.stk(l2+ii)) goto 164
162 continue
if(max(it1,it2).eq.1) then
e1=0.0d+0
e2=0.0d+0
do 163 ii=1,nl
if(it1.eq.1) e1=stk(l1+nl+ii)
if(it2.eq.1) e2=stk(l2i+istk(i2)-2+ii)
if(e1.ne.e2) goto 164
163 continue
endif
i2=i2+1
istk(il1w-1+(j-1)*m2+i)=itrue
goto 165
164 continue
i2=i2+1
istk(il1w-1+(j-1)*m2+i)=1-itrue
165 continue
166 continue
istk(il1)=4
istk(il1+1)=m2
istk(il1+2)=n2
call icopy(m2*n2,istk(il1w),1,istk(il1+3),1)
lstk(top+1)=sadr(il1+3+m2*n2)
goto 999
elseif(m2.eq.-1) then
c . b op eye
nn2=istk(id2+1)-1
il1w=iadr(lw)
lw=sadr(il1w+m1*n1)
err=lw+2-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
stk(lw)=0.0d0
stk(lw+1)=0.0d0
i1=id1
do 176 i=1,n1
do 175 j=1,m1
if (i.eq.j) then
if(nn2.ne.istk(i1+1)-istk(i1) ) goto 174
nl=nn2
l2=l2r-1
else
if(1.ne.istk(i1+1)-istk(i1) ) goto 174
l2=lw-1
nl=1
endif
l1=l1r+istk(i1)-2
do 172 ii=1,nl
if(stk(l2+ii).ne.stk(l1+ii)) goto 174
172 continue
if(max(it1,it2).eq.1) then
e1=0.0d+0
e2=0.0d+0
do 173 ii=1,nl
if(it1.eq.1) e1=stk(l2+nl+ii)
if(it2.eq.1) e2=stk(l1i+istk(i1)-2+ii)
if(e1.ne.e2) goto 174
173 continue
endif
i1=i1+1
istk(il1w-1+(j-1)*m1+i)=itrue
goto 175
174 continue
i2=i2+1
istk(il1w-1+(j-1)*m1+i)=1-itrue
175 continue
176 continue
istk(il1)=4
istk(il1+1)=m1
istk(il1+2)=n1
call icopy(m1*n1,istk(il1w),1,istk(il1+3),1)
lstk(top+1)=sadr(il1+3+m1*n1)
goto 999
elseif(mn1.eq.1.and.mn2.gt.1) then
nn1=istk(id1+1)-1
err=lw+nn1*(it1+1)+2-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call unsfdcopy(nn1*(it1+1),stk(l1r),1,stk(lw),1)
l1r=lw
l1i=l1r+nn1
id1=iadr(l1r+nn1*(it1+1))
istk(id1)=1
istk(id1+1)=nn1+1
inc1=0
inc2=1
mn1=mn2
m1=m2
n1=n2
istk(il1+1)=m1
istk(il1+2)=n1
else if(mn2.eq.1.and.mn1.gt.1) then
nn2=istk(id2+1)-1
err=lw+nn2*(it2+1)+2-lstk(bot)
if(err.gt.0) then
call error(17)
return
endif
call unsfdcopy(nn2*(it2+1),stk(l2r),1,stk(lw),1)
l2r=lw
l2i=l2r+nn2
id2=iadr(l2r+nn2*(it2+1))
istk(id2)=1
istk(id2+1)=nn2+1
inc1=1
inc2=0
mn2=mn1
m2=m1
n2=n1
else if(n1.ne.n2.or.m1.ne.m2) then
istk(il1)=4
istk(il1+1)=1
istk(il1+2)=1
istk(il1+3)=1-itrue
lstk(top+1)=sadr(il1+4)
return
else
inc1=1
inc2=1
endif
c des valeurs
i1=id1-inc1
i2=id2-inc2
l1r=l1r-1
l2r=l2r-1
l1i=l1i-1
l2i=l2i-1
do 185 i=0,mn1-1
i1=i1+inc1
i2=i2+inc2
if(istk(i1+1)-istk(i1).ne.istk(i2+1)-istk(i2) ) goto 184
nl=istk(i1+1)-istk(i1)-1
do 182 ii=0,nl
if(stk(l1r+istk(i1)+ii).ne.stk(l2r+istk(i2)+ii)) goto 184
182 continue
istk(il1+3+i)=itrue
if(max(it1,it2).eq.0) goto 185
e1=0.0d+0
e2=0.0d+0
do 183 ii=0,nl
if(it1.eq.1) e1=stk(l1i+istk(i1)+ii)
if(it2.eq.1) e2=stk(l2i+istk(i2)+ii)
if(e1.ne.e2) goto 184
183 continue
istk(il1+3+i)=itrue
goto 185
184 istk(il1+3+i)=1-itrue
185 continue
istk(il1)=4
istk(il1+1)=m1
istk(il1+2)=n1
lstk(top+1)=sadr(il1+3+mn1)
goto 999
c
200 continue
c a [:b]:c
var1(1)=0
if(rhs.eq.3) then
il3=iadr(lstk(top))
if(istk(il3).lt.0) il3=iadr(istk(il3+1))
if(istk(il3).ne.1.and.istk(il3).ne.2) then
err=3
buf='Invalid indexing '
call error(1501)
return
endif
if(istk(il3+1).ne.1.or.istk(il3+2).ne.1.or.
$ istk(il3+3).ne.0) then
err=3
buf='Invalid indexing '
call error(1501)
return
endif
if(istk(il3).eq.1) then
n3=1
l3=sadr(il3+4)
else
n3=istk(il3+9)-1
l3=sadr(il3+10)
call icopy(4,istk(il3+4),1,var1,1)
endif
top=top-1
endif
if (rhs.ge.2) then
il2=iadr(lstk(top))
if(istk(il2).lt.0) il2=iadr(istk(il2+1))
if(istk(il2).ne.1.and.istk(il2).ne.2) then
err=2
buf='Invalid indexing '
call error(1501)
return
endif
if(istk(il2+1).ne.1.or.istk(il2+2).ne.1.or.
$ istk(il2+3).ne.0) then
err=2
buf='Invalid indexing '
call error(1501)
return
endif
if(istk(il2).eq.1) then
n2=1
l2=sadr(il2+4)
else
n2=istk(il2+9)-1
l2=sadr(il2+10)
if (var1(1).ne.0) then
if(var1(1).ne.istk(il2+4).or.var1(2).ne.istk(il2+5).or
$ .var1(3).ne.istk(il2+6).or.var1(4).ne.istk(il2+7))
$ then
err=2
buf='Invalid indexing '
call error(1501)
return
endif
else
call icopy(4,istk(il2+4),1,var1,1)
endif
endif
top=top-1
endif
il1=iadr(lstk(top))
if(istk(il1).lt.0) il1=iadr(istk(il1+1))
if(istk(il1).ne.1.and.istk(il1).ne.2) then
err=1
buf='Invalid indexing '
call error(1501)
return
endif
if(istk(il1+1).ne.1.or.istk(il1+2).ne.1.or.
$ istk(il1+3).ne.0) then
err=1
buf='Invalid indexing '
call error(1501)
return
endif
if(istk(il1).eq.1) then
n1=1
l1=sadr(il1+4)
else
n1=istk(il1+9)-1
l1=sadr(il1+10)
if (var1(1).ne.0) then
if(var1(1).ne.istk(il1+4).or.var1(2).ne.istk(il1+5).or.
$ var1(3).ne.istk(il1+6).or.var1(4).ne.istk(il1+7)) then
err=1
buf='Invalid indexing '
call error(1501)
return
endif
else
call icopy(4,istk(il1+4),1,var1,1)
endif
endif
if (rhs.eq.2) then
n3=n2
l3=l2
n2=1
l2=lw
stk(l2)=1
lw=lw+1
endif
call unsfdcopy(n1,stk(l1),1,stk(lw),1)
call unsfdcopy(n2,stk(l2),1,stk(lw+n1),1)
call unsfdcopy(n3,stk(l3),1,stk(lw+n1+n2),1)
il1=iadr(lstk(top))
istk(il1)=129
istk(il1+1)=1
istk(il1+2)=3
istk(il1+3)=0
call icopy(4,var1,1,istk(il1+4),1)
istk(il1+8)=1
istk(il1+9)=1+n1
istk(il1+10)=istk(il1+9)+n2
istk(il1+11)=istk(il1+10)+n3
l=sadr(il1+12)
call unsfdcopy(n1+n2+n3,stk(lw),1,stk(l),1)
lstk(top+1)=l+n1+n2+n3
c
999 return
end
|