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 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
|
#############################################################################
##
## This file is part of GAP, a system for computational discrete algebra.
## This file's authors include Thomas Breuer, Frank Celler, Martin Schönert.
##
## Copyright of GAP belongs to its developers, whose names are too numerous
## to list here. Please refer to the COPYRIGHT file for details.
##
## SPDX-License-Identifier: GPL-2.0-or-later
##
## This file defines operations and such. Some functions have moved
## to oper1.g so as to be compiled in the default kernel
##
INSTALL_METHOD := false;
#############################################################################
##
#F INFO_DEBUG( <level>, ... )
##
## <ManSection>
## <Func Name="INFO_DEBUG" Arg='level, ...'/>
##
## <Description>
## This will delegate to the proper info class <C>InfoDebug</C>
## as soon as the info classes are available.
## </Description>
## </ManSection>
##
BIND_GLOBAL( "INFO_DEBUG", function( arg )
Print( "#I " );
CALL_FUNC_LIST( Print, arg{ [ 2 .. LEN_LIST( arg ) ] } );
Print( "\n" );
end );
#############################################################################
##
#F INFO_OBSOLETE( <level>, ... )
##
## <ManSection>
## <Func Name="INFO_OBSOLETE" Arg='level, ...'/>
##
## <Description>
## This will delegate to the proper info class <C>InfoObsolete</C>
## as soon as the info classes are available.
## </Description>
## </ManSection>
##
BIND_GLOBAL( "INFO_OBSOLETE", function( arg )
if GAPInfo.CommandLineOptions.O then
Print( "#I " );
CALL_FUNC_LIST( Print, arg{ [ 2 .. LEN_LIST( arg ) ] } );
Print( "\n" );
fi;
end );
#############################################################################
##
#V CATS_AND_REPS
##
## <ManSection>
## <Var Name="CATS_AND_REPS"/>
##
## <Description>
## a list of filter numbers of categories and representations
## </Description>
## </ManSection>
##
BIND_GLOBAL( "CATS_AND_REPS", [] );
if IsHPCGAP then
ShareSpecialObj(CATS_AND_REPS);
fi;
#############################################################################
##
#V IMMEDIATES
##
## <ManSection>
## <Var Name="IMMEDIATES"/>
##
## <Description>
## is a list that contains at position <M>i</M> the description of all those
## immediate methods for which <C>FILTERS</C><M>[i]</M> belongs to the
## requirements.
## <P/>
## So each entry of <C>IMMEDIATES</C> is a zipped list, where 6 consecutive
## positions are ..., and the position of the method itself in the list
## <C>IMMEDIATE_METHODS</C>.
## <P/>
## Note:
## 1. If a method requires two filters <M>F_1</M> and <M>F_2</M> such that
## <M>F_1</M> implies <M>F_2</M>,
## it will <E>not</E> be installed for <M>F_2</M>.
## 2. If not all requirements are categories/representations then
## the category/representation part of the requirements will be ignored;
## <!-- and if only cats are required? Does this make sense?-->
## <!-- and what about representations that may change?-->
## in other words, the only information that may cause to run immediate
## methods is acquired information.
## </Description>
## </ManSection>
##
if IsHPCGAP then
BIND_GLOBAL( "IMMEDIATES", AtomicList([]) );
else
BIND_GLOBAL( "IMMEDIATES", [] );
fi;
#############################################################################
##
#V IMMEDIATE_METHODS
##
## <ManSection>
## <Var Name="IMMEDIATE_METHODS"/>
##
## <Description>
## is a list of functions that are installed as immediate methods.
## </Description>
## </ManSection>
##
if IsHPCGAP then
BIND_GLOBAL( "IMMEDIATE_METHODS", AtomicList([]) );
else
BIND_GLOBAL( "IMMEDIATE_METHODS", [] );
fi;
#############################################################################
##
#V OPERATIONS
##
## <ManSection>
## <Var Name="OPERATIONS"/>
##
## <Description>
## is a list that stores all &GAP; operations at the odd positions,
## and the corresponding list of requirements at the even positions.
## More precisely, if the operation <C>OPERATIONS[<A>n</A>]</C> has been declared
## by several calls of <C>DeclareOperation</C>,
## with second arguments <A>req1</A>, <A>req2</A>, \ldots,
## each being a list of filters, then <C>OPERATIONS[ <A>n</A>+1 ]</C> is the list
## <C>[</C> <A>flags1</A>, <A>flags2</A>, <M>\ldots</M>, <C>]</C>,
## where <A>flagsi</A> is the list of flags of the filters in <A>reqi</A>.
## </Description>
## </ManSection>
##
if IsHPCGAP then
OPERATIONS_REGION := ShareSpecialObj("OPERATIONS_REGION"); # FIXME: remove
BIND_GLOBAL( "OPERATIONS", MakeStrictWriteOnceAtomic( [] ) );
BIND_GLOBAL( "OPER_FLAGS", MakeStrictWriteOnceAtomic( rec() ) );
else
BIND_GLOBAL( "OPERATIONS", [] );
BIND_GLOBAL( "OPER_FLAGS", rec() );
fi;
BIND_GLOBAL( "STORE_OPER_FLAGS",
function(oper, flags)
local nr, info;
nr := MASTER_POINTER_NUMBER(oper);
if not IsBound(OPER_FLAGS.(nr)) then
# we need a back link to oper for the post-restore function
if IsHPCGAP then
OPER_FLAGS.(nr) := FixedAtomicList([oper,
MakeWriteOnceAtomic([]), MakeWriteOnceAtomic([])]);
else
OPER_FLAGS.(nr) := [oper, [], []];
fi;
ADD_LIST(OPERATIONS, oper);
fi;
info := OPER_FLAGS.(nr);
ADD_LIST(info[2], MakeImmutable(flags));
ADD_LIST(info[3], MakeImmutable([INPUT_FILENAME(), READEVALCOMMAND_LINENUMBER, INPUT_LINENUMBER()]));
end);
BIND_GLOBAL( "GET_OPER_FLAGS", function(oper)
local nr;
nr := MASTER_POINTER_NUMBER(oper);
if not IsBound(OPER_FLAGS.(nr)) then
return fail;
fi;
return OPER_FLAGS.(nr)[2];
end);
BIND_GLOBAL( "GET_DECLARATION_LOCATIONS", function(oper)
local nr;
nr := MASTER_POINTER_NUMBER(oper);
if not IsBound(OPER_FLAGS.(nr)) then
return fail;
fi;
return OPER_FLAGS.(nr)[3];
end);
# the object handles change after loading a workspace
ADD_LIST(GAPInfo.PostRestoreFuncs, function()
local tmp, a;
tmp := [];
for a in REC_NAMES(OPER_FLAGS) do
ADD_LIST(tmp, OPER_FLAGS.(a));
Unbind(OPER_FLAGS.(a));
od;
for a in tmp do
OPER_FLAGS.(MASTER_POINTER_NUMBER(a[1])) := a;
od;
end);
#############################################################################
##
#V WRAPPER_OPERATIONS
##
## <ManSection>
## <Var Name="WRAPPER_OPERATIONS"/>
##
## <Description>
## is a list that stores all those &GAP; operations for which the default
## method is to call a related operation if necessary,
## and to store and look up the result using an attribute.
## An example is <C>SylowSubgroup</C>, which calls <C>SylowSubgroupOp</C> if the
## required Sylow subgroup is not yet stored in <C>ComputedSylowSubgroups</C>.
## </Description>
## </ManSection>
##
BIND_GLOBAL( "WRAPPER_OPERATIONS", [] );
if IsHPCGAP then
LockAndMigrateObj( WRAPPER_OPERATIONS, OPERATIONS_REGION);
fi;
#############################################################################
##
#F IsNoImmediateMethodsObject(<obj>)
##
## <#GAPDoc Label="IsNoImmediateMethodsObject">
## <ManSection>
## <Filt Name="IsNoImmediateMethodsObject" Arg='obj'/>
##
## <Description>
## If this filter is set immediate methods will be ignored for <A>obj</A>.
## This can be crucial for performance for objects like pcgs
## (see Section <Ref Sect="Polycyclic Generating Systems"/>), of which many
## are created, which are collections, but for which all those immediate
## methods for <Ref Prop="IsTrivial"/> et cetera do not really make sense.
## Other examples of objects in <Ref Filt="IsNoImmediateMethodsObject"/> are
## compressed vectors and matrices over small finite fields,
## see the sections <Ref Subsect="Row Vectors over Finite Fields"/> and
## <Ref Subsect="Matrices over Finite Fields"/>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL("IsNoImmediateMethodsObject",
NewFilter("IsNoImmediateMethodsObject"));
#############################################################################
##
#V IGNORE_IMMEDIATE_METHODS
##
## <ManSection>
## <Var Name="IGNORE_IMMEDIATE_METHODS"/>
##
## <Description>
## is usually <K>false</K>.
## Only inside a call of <C>RunImmediateMethods</C> it is set to
## <K>true</K>,
## which causes that <C>RunImmediateMethods</C> does not suffer
## from recursion.
## </Description>
## </ManSection>
##
IGNORE_IMMEDIATE_METHODS := false;
#############################################################################
##
#F INSTALL_IMMEDIATE_METHOD( <oper>, <info>, <filter>, <rank>, <method> )
##
## <ManSection>
## <Func Name="INSTALL_IMMEDIATE_METHOD" Arg='oper, info, filter, rank, method'/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_CONSTANT("SIZE_IMMEDIATE_METHOD_ENTRY", 8);
BIND_GLOBAL( "INSTALL_IMMEDIATE_METHOD",
function( oper, info, filter, rank, method )
local flags,
relev,
i,
rflags,
wif,
ignore,
j,
k,
replace,
pos,
imm;
# Check whether <oper> really is an operation.
if not IS_OPERATION(oper) then
Error( "<oper> is not an operation" );
fi;
# Check whether this in fact installs an implication.
if FLAGS_FILTER(oper) <> false
and (method = true or method = RETURN_TRUE)
then
Error( "use `InstallTrueMethod' for <oper>" );
fi;
# Find the requirements.
flags := TRUES_FLAGS( FLAGS_FILTER( filter ) );
if LEN_LIST( flags ) = 0 then
Error( "no immediate methods without requirements!" );
elif FLAG1_FILTER( IS_MUTABLE_OBJ ) in flags then
Error( "no immediate methods for mutable objects!" );
fi;
relev := [];
atomic FILTER_REGION do
for i in flags do
if not INFO_FILTERS[i] in FNUM_CATS_AND_REPS then
ADD_LIST( relev, i );
fi;
od;
# All requirements are categories/representations.
# Install the method for one of them.
if LEN_LIST( relev ) = 0 then
relev:= [ flags[1] ];
fi;
flags:= relev;
# Remove requirements that are implied by the remaining ones.
# (Note that it is possible to have implications from a filter
# to another one with a bigger number.)
relev := [];
rflags := [];
for i in flags do
# Get the implications of this filter.
wif:= WITH_IMPS_FLAGS( FLAGS_FILTER( FILTERS[i] ) );
# If the filter is implied by one in `relev', ignore it.
# Otherwise add it to `relev', and remove all those that
# are implied by the new filter.
ignore:= false;
for j in [ 1 .. LEN_LIST( relev ) ] do
if IsBound( rflags[j] ) then
if IS_SUBSET_FLAGS( rflags[j], wif ) then
# `FILTERS[i]' is implied by one in `relev'.
ignore:= true;
break;
elif IS_SUBSET_FLAGS( wif, rflags[j] ) then
# `FILTERS[i]' implies one in `relev'.
Unbind( relev[j] );
Unbind( rflags[j] );
fi;
fi;
od;
if not ignore then
ADD_LIST( relev, i );
ADD_LIST( rflags, wif );
fi;
od;
# We install the method for the requirements in `relev'.
if IsHPCGAP then
# 'pos' is saved for modifying 'imm' below.
pos:=AddAtomicList( IMMEDIATE_METHODS, method );
else
ADD_LIST( IMMEDIATE_METHODS, method );
pos := LEN_LIST( IMMEDIATE_METHODS );
fi;
for j in relev do
# adjust `IMM_FLAGS'
IMM_FLAGS:= SUB_FLAGS( IMM_FLAGS, FLAGS_FILTER( FILTERS[j] ) );
#T here it would be better to subtract a flag list
#T with `true' exactly at position `j'!
#T means: When an immed. method gets installed for a property then
#T the property tester should remain in IMM_FLAGS.
#T (This would make an if statement in `RunImmediateMethods' unnecessary!)
# Find the place to put the new method.
if not IsHPCGAP then
if IsBound( IMMEDIATES[j] ) then
imm := IMMEDIATES[j];
else
imm := [];
IMMEDIATES[j] := imm;
fi;
else
if IsBound( IMMEDIATES[j] ) then
imm := SHALLOW_COPY_OBJ(IMMEDIATES[j]);
else
imm := [];
fi;
fi;
i := 0;
while i < LEN_LIST(imm) and rank < imm[i+5] do
i := i + SIZE_IMMEDIATE_METHOD_ENTRY;
od;
# Now is a good time to see if the method is already there
if REREADING then
replace := false;
k := i;
while k < LEN_LIST(imm) and rank = imm[k+5] do
if info = imm[k+7] and oper = imm[k+1] and
FLAGS_FILTER( filter ) = imm[k+4] then
replace := true;
i := k;
break;
fi;
k := k+SIZE_IMMEDIATE_METHOD_ENTRY;
od;
fi;
# push the other functions back
if not REREADING or not replace then
imm{[SIZE_IMMEDIATE_METHOD_ENTRY+i+1..SIZE_IMMEDIATE_METHOD_ENTRY+LEN_LIST(imm)]} := imm{[i+1..LEN_LIST(imm)]};
fi;
# install the new method
imm[i+1] := oper;
imm[i+2] := SETTER_FILTER( oper );
imm[i+3] := FLAGS_FILTER( TESTER_FILTER( oper ) );
imm[i+4] := FLAGS_FILTER( filter );
imm[i+5] := rank;
imm[i+6] := pos;
imm[i+7] := IMMUTABLE_COPY_OBJ(info);
if SIZE_IMMEDIATE_METHOD_ENTRY >= 8 then
imm[i+8] := MakeImmutable([INPUT_FILENAME(), READEVALCOMMAND_LINENUMBER, INPUT_LINENUMBER()]);
fi;
if IsHPCGAP then
IMMEDIATES[j]:=MakeImmutable(imm);
fi;
od;
od;
end );
#############################################################################
##
#F InstallImmediateMethod( <opr>[, <info>], <filter>[, <rank>], <method> )
##
## <#GAPDoc Label="InstallImmediateMethod">
## <ManSection>
## <Func Name="InstallImmediateMethod"
## Arg='opr[, info], filter, rank, method'/>
##
## <Description>
## <Ref Func="InstallImmediateMethod"/> installs <A>method</A> as an
## immediate method for <A>opr</A>, which must be an attribute or a
## property, with requirement <A>filter</A> and rank <A>rank</A>
## (the rank can be omitted, in which case 0 is used as rank).
## The rank must be an integer value that measures the priority of
## <A>method</A> among the immediate methods for <A>opr</A>.
## If supplied, <A>info</A> should be a short but informative string
## that describes the situation in which the method is called.
## <P/>
## An immediate method is called automatically as soon as the object lies
## in <A>filter</A>, provided that the value is not yet known.
## Afterwards the attribute setter is called in order to store the value,
## unless the method exits via <Ref Func="TryNextMethod"/>.
## <P/>
## Note the difference to <Ref Func="InstallMethod"/>
## that no family predicate occurs
## because <A>opr</A> expects only one argument,
## and that <A>filter</A> is not a list of requirements but the argument
## requirement itself.
## <P/>
## Immediate methods are thought of as a possibility for objects to gain
## useful knowledge.
## They must not be used to force the storing of <Q>defining information</Q>
## in an object.
## In other words, &GAP; should work even if all immediate methods are
## completely disabled.
## Therefore, the call to <Ref Func="InstallImmediateMethod"/> installs
## <A>method</A> also as an ordinary method for <A>opr</A>
## with requirement <A>filter</A>.
## <P/>
## Note that in such a case &GAP; executes a computation for which
## it was not explicitly asked by the user.
## So one should install only those methods as immediate methods
## that are <E>extremely cheap</E>.
## To emphasize this,
## immediate methods are also called <E>zero cost methods</E>.
## The time for their execution should really be approximately zero.
## <P/>
## For example, the size of a permutation group can be computed very cheaply
## if a stabilizer chain of the group is known.
## So it is reasonable to install an immediate method for
## <Ref Attr="Size"/> with requirement
## <C>IsGroup and Tester( <A>stab</A> )</C>,
## where <A>stab</A> is the attribute corresponding to the stabilizer chain.
## <P/>
## Another example would be the implementation of the conclusion that
## every finite group of prime power order is nilpotent.
## This could be done by installing an immediate method for the attribute
## <Ref Prop="IsNilpotentGroup"/> with requirement
## <C>IsGroup and Tester( Size )</C>.
## This method would then check whether the size is a finite prime power,
## return <K>true</K> in this case and otherwise call
## <Ref Func="TryNextMethod"/>.
## But this requires factoring of an integer,
## which cannot be guaranteed to be very cheap,
## so one should not install this method as an immediate method.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "InstallImmediateMethod", function( arg )
local pos, opr, info, filter, rank, method;
pos := 1;
if pos <= LEN_LIST( arg ) and IS_OPERATION( arg[pos] ) then
opr := arg[pos];
pos := pos + 1;
else
pos := -1;
fi;
if pos <= LEN_LIST( arg ) and IS_STRING( arg[pos] ) then
info := arg[pos];
pos := pos + 1;
else
info := false;
fi;
if pos <= LEN_LIST( arg ) and IsFilter( arg[pos] ) then
filter := arg[pos];
pos := pos + 1;
else
pos := -1;
fi;
if pos <= LEN_LIST( arg ) and IS_RAT( arg[pos] ) then
rank := arg[pos];
pos := pos + 1;
else
rank := 0;
fi;
if pos <= LEN_LIST( arg ) and IS_FUNCTION( arg[pos] ) then
method := arg[pos];
pos := pos + 1;
else
pos := -1;
fi;
if pos = LEN_LIST( arg ) + 1 then
INSTALL_IMMEDIATE_METHOD( opr, info, filter, rank, method );
INSTALL_METHOD( [ opr, info, [ filter ], method ], false );
else
Error("usage: InstallImmediateMethod( <opr>[, <info>], <filter>, <rank>, <method> )");
fi;
end );
#############################################################################
##
#F TraceImmediateMethods( <flag> )
##
## <#GAPDoc Label="TraceImmediateMethods">
## <ManSection>
## <Func Name="TraceImmediateMethods" Arg='[flag]'/>
## <Func Name="UntraceImmediateMethods" Arg=''/>
##
## <Description>
## <Ref Func="TraceImmediateMethods"/> enables tracing for all immediate methods
## if <A>flag</A> is either <K>true</K>, or not present.
## <Ref Func="UntraceImmediateMethods"/>, or <Ref Func="TraceImmediateMethods"/>
## with <A>flag</A> equal <K>false</K> turns tracing off.
## (There is no facility to trace <E>specific</E> immediate methods.)
## <Log><![CDATA[
## gap> TraceImmediateMethods( );
## gap> g:= Group( (1,2,3), (1,2) );;
## #I RunImmediateMethods
## #I immediate: Size
## #I immediate: IsCyclic
## #I immediate: IsCommutative
## #I immediate: IsTrivial
## gap> Size( g );
## #I immediate: IsPerfectGroup
## #I immediate: IsNonTrivial
## #I immediate: Size
## #I immediate: IsFreeAbelian
## #I immediate: IsTorsionFree
## #I immediate: IsNonTrivial
## #I immediate: IsPerfectGroup
## #I immediate: GeneralizedPcgs
## #I immediate: IsEmpty
## 6
## gap> UntraceImmediateMethods( );
## gap> UntraceMethods( [ Size ] );
## ]]></Log>
## <P/>
## This example gives an explanation for the two calls of the
## <Q>system getter</Q> for <Ref Attr="Size"/>.
## Namely, there are immediate methods that access the known size
## of the group.
## Note that the group <C>g</C> was known to be finitely generated already
## before the size was computed,
## the calls of the immediate method for
## <Ref Prop="IsFinitelyGeneratedGroup"/> after the call of
## <Ref Attr="Size"/> have other arguments than <C>g</C>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
TRACE_IMMEDIATE_METHODS := false;
BIND_GLOBAL( "UntraceImmediateMethods", function ()
TRACE_IMMEDIATE_METHODS := false;
end );
BIND_GLOBAL( "TraceImmediateMethods", function( arg )
if LENGTH(arg) = 0 then
TRACE_IMMEDIATE_METHODS := true;
return;
fi;
if LENGTH(arg) > 1 or not IS_BOOL(arg[1]) then
Error("Usage: TraceImmediateMethods( [bool] )");
fi;
if arg[1] then
TRACE_IMMEDIATE_METHODS := true;
else
TRACE_IMMEDIATE_METHODS := false;
fi;
end );
#############################################################################
##
##
## <#GAPDoc Label="TraceInternalMethods">
## <ManSection>
## <Func Name="TraceInternalMethods" Arg=''/>
## <Func Name="UntraceInternalMethods" Arg=''/>
## <Func Name="GetTraceInternalMethodsCounts" Arg=''/>
## <Func Name="ClearTraceInternalMethodsCounts" Arg=''/>
##
## <Description>
## <Ref Func="TraceInternalMethods"/> enables tracing for all internal methods.
## Internal methods are methods which implement many fundamental operations in GAP.
## In this version of GAP, the internal methods which can be traced are:
## <List>
## <Mark>Zero, ZeroMut</Mark><Item>Mutable and Immutable <Ref Attr="Zero"/></Item>
## <Mark>AInv, AInvMut</Mark><Item>Mutable and Immutable <Ref Attr="AdditiveInverse"/></Item>
## <Mark>One, OneMut</Mark><Item>Mutable and Immutable <Ref Attr="One"/></Item>
## <Mark>Inv, InvMut</Mark><Item>Mutable and Immutable <Ref Attr="Inverse"/></Item>
## <Mark>Sum</Mark><Item>The operator <Ref Oper="\+"/></Item>
## <Mark>Diff</Mark><Item>The operator <C>-</C> operator</Item>
## <Mark>Prod</Mark><Item>The operator <Ref Oper="\*"/></Item>
## <Mark>Quo</Mark><Item>The operator <Ref Oper="\/"/></Item>
## <Mark>LQuo</Mark><Item>The left-quotient operator</Item>
## <Mark>Pow</Mark><Item>The operator <Ref Oper="\^"/></Item>
## <Mark>Comm</Mark><Item>The operator <Ref Oper="Comm"/></Item>
## <Mark>Mod</Mark><Item>The operator <Ref Oper="\mod"/></Item>
## </List>
## <P/>
## <Ref Func="UntraceInternalMethods"/> turns tracing off.
## As these methods can be called hundreds of thousands of times in simple GAP
## code, there isn't a statement printed each time one is called. Instead, the
## method <Ref Func="GetTraceInternalMethodsCounts"/> returns how many times
## each operation has been applied to each type of variable (the type of a
## variable can be found with the <C>TNAM_OBJ</C> method).
## The return value for two argument operators is a record of records <C>r</C>, where
## <C>r.op</C> stores information about operator <C>op</C>. For one argument operators
## <C>r.op.i</C> stores how many times <C>op</C> was called with an argument of type
## <C>i</C>, while for two argument operators <C>r.op.i.j</C> stores how many times
## <C>op</C> was called with arguments of type <C>i</C> and <C>j</C>.
## <Log><![CDATA[
## gap> TraceInternalMethods();
## true
## gap> 2+3+4+5+6;;
## gap> 2.0+2.0;;
## gap> 3^(1,2,3);;
## gap> GetTraceInternalMethodsCounts();
## rec( Pow := rec( integer := rec( ("permutation (small)") := 1 ) ),
## Sum := rec( integer := rec( integer := 4 ),
## macfloat := rec( macfloat := 1 ) ) )
## # 'macfloat' is a floating point number
## gap> UntraceInternalMethods();
## ]]></Log>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
# The return type here is stored as a record, as 0 is a valid TNUM.
BIND_GLOBAL("GetTraceInternalMethodsCounts", function()
local ret, type, i, j, counts,member, nicename;
counts := GET_TRACED_INTERNAL_METHODS_COUNTS();
ret := rec();
for type in REC_NAMES(counts) do
# Drop the 'Funcs' part
nicename := type{[1..LENGTH(type)-5]};
ret.(nicename) := rec();
member := counts.(type);
for i in [1..LENGTH(member)] do
if IsBound(member[i]) then
if IS_LIST(member[LENGTH(member)]) then
# Is a 2D array
ret.(nicename).(GET_TNAM_FROM_TNUM(i-1)) := rec();
for j in [1..LENGTH(member[i])] do
if IsBound(member[i][j]) then
ret.(nicename).(GET_TNAM_FROM_TNUM(i-1)).(GET_TNAM_FROM_TNUM(j-1)) := member[i][j];
fi;
od;
else
# Is a 1D array
ret.(nicename).(GET_TNAM_FROM_TNUM(i-1)) := member[i];
fi;
fi;
od;
od;
return ret;
end);
#############################################################################
##
#F NewOperation( <name>, <args-filts> )
##
## <#GAPDoc Label="NewOperation">
## <ManSection>
## <Func Name="NewOperation" Arg='name, args-filts'/>
##
## <Description>
## <Ref Func="NewOperation"/> returns an operation <A>opr</A> with name
## <A>name</A>.
## The list <A>args-filts</A> describes requirements about the arguments
## of <A>opr</A>, namely the number of arguments must be equal to the length
## of <A>args-filts</A>, and the <M>i</M>-th argument must lie in the filter
## <A>args-filts</A><M>[i]</M>.
## <P/>
## Each method that is installed for <A>opr</A> via
## <Ref Func="InstallMethod"/> must require that the <M>i</M>-th argument
## lies in the filter <A>args-filts</A><M>[i]</M>.
## <P/>
## One can install methods for other argument tuples via
## <Ref Func="InstallOtherMethod"/>,
## this way it is also possible to install methods for a different number
## of arguments than the length of <A>args-filts</A>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "NewOperation", function ( name, filters )
local oper, filt, filter;
if GAPInfo.MaxNrArgsMethod < LEN_LIST( filters ) then
Error( "methods can have at most ", GAPInfo.MaxNrArgsMethod,
" arguments" );
fi;
oper := NEW_OPERATION( name );
filt := [];
for filter in filters do
if not IS_OPERATION( filter ) then
Error( "<filter> must be an operation" );
fi;
ADD_LIST( filt, FLAGS_FILTER( filter ) );
od;
STORE_OPER_FLAGS(oper, filt);
return oper;
end );
#############################################################################
##
#F NewConstructor( <name>, <filters> )
##
## <#GAPDoc Label="NewConstructor">
## <ManSection>
## <Func Name="NewConstructor" Arg='name, args-filts'/>
##
## <Description>
## <Ref Func="NewConstructor"/> returns a constructor <A>cons</A> with name
## <A>name</A>.
## The list <A>args-filts</A> describes requirements about the arguments
## of <A>cons</A>. Namely the number of arguments must be equal to the length
## of <A>args-filts</A>, and the <M>i</M>-th argument
## must lie in the filter <A>args-filts</A><M>[i]</M> for <M>i \neq 1</M>.
## A constructor expects the first argument to be a <E>filter</E> instead
## of an object and it must be a subset of the filter
## <A>args-filts</A><M>[1]</M>.
## <P/>
## Each method that is installed for <A>cons</A> via
## <Ref Func="InstallMethod"/> must require that
## the <M>i</M>-th argument lies in the filter <A>args-filts</A><M>[i]</M>
## for <M>i \neq 1</M>.
## Its first argument is a filter and must be a subset of the filter
## <A>args-filts</A><M>[1]</M>.
## <P/>
## One can install methods for other argument tuples via
## <Ref Func="InstallOtherMethod"/>,
## this way it is also possible to install methods for a different number
## of arguments than the length of <A>args-filts</A>.
## <P/>
## Note that the method selection for constructors works slightly differently
## than for usual operations.
## As stated above, applicabilty to the first argument in an argument tuple
## is tested by determining whether the argument-filter is a <E>subset</E> of
## <A>args-filts</A><M>[1]</M>.
## <P/>
## The rank of a method installed for a constructor is determined solely by
## <A>args-filts</A><M>[1]</M> of the method.
## Instead of taking the sum of the ranks of filters involved in its
## <A>args-filts</A><M>[1]</M>, the sum of <M>-1</M> times these values
## is taken.
## The result is added to the number <A>val</A> used in the call of
## <Ref Func="InstallMethod"/>.
## <P/>
## This has the following effects on the method selection for constructors.
## If <A>cons</A> is called with an argument tuple whose first argument is
## the filter <A>filt</A>, any method whose first argument is
## <E>more</E> specific than <A>filt</A> is applicable
## (if its other <A>args-filts</A> also match).
## Then the method with the <Q>most general</Q> filter <A>args-filts</A><M>[1]</M>
## is chosen, since the rank is computed by taking <M>-1</M> times the ranks
## of the involved filters.
## Thus, a constructor is chosen which returns an object in <A>filt</A> using
## as few extra filters as possible, which presumably is both more flexible
## to use and easier to construct.
## <P/>
## The following example showcases this behaviour.
## Note that the argument <A>filter</A> is only used for method dispatch.
## <Log><![CDATA[
## DeclareFilter( "IsMyObj" );
## DeclareFilter( "IsMyFilter" );
## DeclareFilter( "IsMyOtherFilter" );
## BindGlobal( "MyFamily", NewFamily( "MyFamily" ) );
##
## DeclareConstructor( "NewMyObj", [ IsMyObj ] );
##
## InstallMethod( NewMyObj,
## [ IsMyObj ],
## function( filter )
## local type;
## Print("General constructor\n");
## type := NewType( MyFamily, IsMyObj );
## return Objectify( type, [] );
## end );
## InstallMethod( NewMyObj,
## [ IsMyObj and IsMyFilter and IsMyOtherFilter ],
## function( filter )
## local type;
## Print("Special constructor\n");
## type := NewType( MyFamily, IsMyObj and IsMyFilter and IsMyOtherFilter );
## return Objectify( type, [] );
## end );
## ]]></Log>
## If only IsMyObj is given, both methods are applicable and the general
## constructor is called.
## If also IsMyFilter is given, only the special constructor is applicable.
## <Log><![CDATA[
## gap> a := NewMyObj( IsMyObj );;
## General constructor
## gap> IsMyOtherFilter(a);
## false
## gap> b := NewMyObj( IsMyObj and IsMyFilter );;
## Special constructor
## gap> IsMyOtherFilter(b);
## true
## gap> c := NewMyObj( IsMyObj and IsMyFilter and IsMyOtherFilter );;
## Special constructor
## gap> IsMyOtherFilter(c);
## true
## ]]></Log>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "NewConstructor", function ( name, filters )
local oper, filt, filter;
if LEN_LIST( filters ) = 0 then
Error( "constructors must have at least one argument" );
fi;
if GAPInfo.MaxNrArgsMethod < LEN_LIST( filters ) then
Error( "methods can have at most ", GAPInfo.MaxNrArgsMethod,
" arguments" );
fi;
oper := NEW_CONSTRUCTOR( name );
filt := [];
for filter in filters do
if not IS_OPERATION( filter ) then
Error( "<filter> must be an operation" );
fi;
ADD_LIST( filt, FLAGS_FILTER( filter ) );
od;
STORE_OPER_FLAGS(oper, filt);
return oper;
end );
#############################################################################
##
#F DeclareOperation( <name>, <filters> )
##
## <#GAPDoc Label="DeclareOperation">
## <ManSection>
## <Func Name="DeclareOperation" Arg='name, filters'/>
##
## <Description>
## does the same as <Ref Func="NewOperation"/> and then binds
## the new operation to the global variable <A>name</A>. The variable
## must previously be writable, and is made read-only by this function.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "DeclareOperation", function ( name, filters )
local gvar, pos, req, filt, filter;
if GAPInfo.MaxNrArgsMethod < LEN_LIST( filters ) then
Error( "methods can have at most ", GAPInfo.MaxNrArgsMethod,
" arguments" );
elif ISB_GVAR( name ) then
gvar:= VALUE_GLOBAL( name );
# Check that the variable is in fact an operation.
if not IS_OPERATION( gvar ) then
Error( "variable `", name, "' is not bound to an operation" );
fi;
# The operation has already been declared.
# If it was created as attribute or property,
# and if the new declaration is unary
# then ask for re-declaration as attribute or property.
# (Note that the values computed for objects matching the new
# requirements will be stored.)
if LEN_LIST( filters ) = 1 and FLAG2_FILTER( gvar ) <> 0 then
# `gvar' is an attribute (tester) or property (tester).
pos:= POS_LIST_DEFAULT( FILTERS, gvar, 0 );
if pos = fail then
# `gvar' is an attribute.
Error( "operation `", name,
"' was created as an attribute, use `DeclareAttribute'" );
elif INFO_FILTERS[ pos ] in FNUM_TPRS
or INFO_FILTERS[ pos ] in FNUM_ATTS then
# `gvar' is an attribute tester or property tester.
Error( "operation `", name,
"' is an attribute tester or property tester" );
else
# `gvar' is a property.
Error( "operation `", name,
"' was created as a property, use `DeclareProperty'" );
fi;
fi;
# Add the new requirements if they differ from known ones.
filt := [];
for filter in filters do
if not IS_OPERATION( filter ) then
Error( "<filter> must be an operation" );
fi;
ADD_LIST( filt, FLAGS_FILTER( filter ) );
od;
req := GET_OPER_FLAGS(gvar);
if IsHPCGAP then
req := FromAtomicList(req); # so that we can search in it
fi;
if filt in req then
if not REREADING then
INFO_DEBUG( 1, "equal requirements in multiple declarations ",
"for operation `", name, "'\n" );
fi;
else
STORE_OPER_FLAGS( gvar, filt );
fi;
else
# The operation is new.
BIND_GLOBAL( name, NewOperation( name, filters ) );
fi;
end );
#############################################################################
##
#F DeclareOperationKernel( <name>, <filters>, <kernel-oper> )
##
## <ManSection>
## <Func Name="DeclareOperationKernel" Arg='name, filters, kernel-oper'/>
##
## <Description>
## This function must not be used to re-declare an operation
## that has already been declared.
## </Description>
## </ManSection>
##
BIND_GLOBAL( "DeclareOperationKernel", function ( name, filters, oper )
local filt, filter;
if GAPInfo.MaxNrArgsMethod < LEN_LIST( filters ) then
Error( "methods can have at most ", GAPInfo.MaxNrArgsMethod,
" arguments" );
fi;
# This will yield an error if `name' is already bound.
BIND_GLOBAL( name, oper );
SET_NAME_FUNC( oper, name );
filt := [];
for filter in filters do
if not IS_OPERATION( filter ) then
Error( "<filter> must be an operation" );
fi;
ADD_LIST( filt, FLAGS_FILTER( filter ) );
od;
STORE_OPER_FLAGS(oper, filt);
end );
#############################################################################
##
#F DeclareConstructor( <name>, <filters> )
##
## <#GAPDoc Label="DeclareConstructor">
## <ManSection>
## <Func Name="DeclareConstructor" Arg='name, filters'/>
##
## <Description>
## does the same as <Ref Func="NewConstructor"/> and then binds
## the result to the global variable <A>name</A>. The variable
## must previously be writable, and is made read-only by this function.
## <P/>
## Note that for operations which are constructors special rules with respect
## to applicability and rank of the corresponding methods apply
## (see section <Ref Func="NewConstructor"/>).
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "DeclareConstructor", function ( name, filters )
local gvar, req, filt, filter;
if LEN_LIST( filters ) = 0 then
Error( "constructors must have at least one argument" );
elif GAPInfo.MaxNrArgsMethod < LEN_LIST( filters ) then
Error( "methods can have at most ", GAPInfo.MaxNrArgsMethod,
" arguments" );
elif ISB_GVAR( name ) then
gvar:= VALUE_GLOBAL( name );
# Check that the variable is in fact an operation.
if not IS_OPERATION( gvar ) then
Error( "variable `", name, "' is not bound to an operation" );
fi;
# The constructor has already been declared.
# If it was not created as a constructor
# then ask for re-declaration as an ordinary operation.
if not IS_CONSTRUCTOR(gvar) then
Error( "operation `", name, "' was not created as a constructor" );
fi;
# Add the new requirements.
filt := [];
for filter in filters do
if not IS_OPERATION( filter ) then
Error( "<filter> must be an operation" );
fi;
ADD_LIST( filt, FLAGS_FILTER( filter ) );
od;
STORE_OPER_FLAGS( gvar, filt );
else
# The operation is new.
BIND_GLOBAL( name, NewConstructor( name, filters ) );
fi;
end );
#############################################################################
##
#F DeclareConstructorKernel( <name>, <filter>, <kernel-oper> )
##
## <ManSection>
## <Func Name="DeclareConstructorKernel" Arg='name, filter, kernel-oper'/>
##
## <Description>
## This function must not be used to re-declare a constructor
## that has already been declared.
## </Description>
## </ManSection>
##
BIND_GLOBAL( "DeclareConstructorKernel", DeclareOperationKernel);
#############################################################################
##
#F InstallAttributeFunction( <func> ) . . . run function for each attribute
##
## <ManSection>
## <Func Name="InstallAttributeFunction" Arg='func'/>
##
## <Description>
## <C>InstallAttributeFunction</C> installs <A>func</A>, so that
## <C><A>func</A>( <A>name</A>, <A>filter</A>, <A>getter</A>, <A>setter</A>, <A>tester</A>, <A>mutflag</A> )</C>
## is called for each attribute.
## </Description>
## </ManSection>
##
if IsHPCGAP then
BIND_GLOBAL( "ATTRIBUTES", MakeStrictWriteOnceAtomic( [] ) );
BIND_GLOBAL( "ATTR_FUNCS", MakeStrictWriteOnceAtomic( [] ) );
else
BIND_GLOBAL( "ATTRIBUTES", [] );
BIND_GLOBAL( "ATTR_FUNCS", [] );
fi;
BIND_GLOBAL( "InstallAttributeFunction", function ( func )
local attr;
for attr in ATTRIBUTES do
func( attr[1], attr[2], attr[3], attr[4], attr[5], attr[6] );
od;
ADD_LIST( ATTR_FUNCS, func );
end );
BIND_GLOBAL( "RUN_ATTR_FUNCS",
function ( filter, getter, setter, tester, mutflag )
local name, func;
name:= NAME_FUNC( getter );
for func in ATTR_FUNCS do
func( name, filter, getter, setter, tester, mutflag );
od;
ADD_LIST( ATTRIBUTES,
MakeImmutable( [ name, filter, getter, setter, tester, mutflag ] ) );
end );
#############################################################################
##
BIND_GLOBAL( "BIND_SETTER_TESTER",
function( name, setter, tester)
local nname;
nname:= "Set"; APPEND_LIST_INTR( nname, name );
BIND_GLOBAL( nname, setter );
nname:= "Has"; APPEND_LIST_INTR( nname, name );
BIND_GLOBAL( nname, tester );
end );
#############################################################################
##
#F DeclareAttributeKernel( <name>, <filter>, <getter> ) . . . new attribute
##
## <ManSection>
## <Func Name="DeclareAttributeKernel" Arg='name, filter, getter'/>
##
## <Description>
## This function must not be used to re-declare an attribute
## that has already been declared.
## </Description>
## </ManSection>
##
BIND_GLOBAL( "DeclareAttributeKernel", function ( name, filter, getter )
local setter, tester;
# This will yield an error if `name' is already bound.
BIND_GLOBAL( name, getter );
SET_NAME_FUNC( getter, name );
# construct setter and tester
setter := SETTER_FILTER( getter );
tester := TESTER_FILTER( getter );
# add getter, setter and tester to the list of operations
STORE_OPER_FLAGS(getter, [ FLAGS_FILTER(filter) ]);
STORE_OPER_FLAGS(setter, [ FLAGS_FILTER(filter), FLAGS_FILTER(IS_OBJECT) ]);
STORE_OPER_FLAGS(tester, [ FLAGS_FILTER(filter) ]);
# store the information about the filter
REGISTER_FILTER( tester, FLAG2_FILTER( tester ), 1, FNUM_ATTR_KERN );
# clear the cache because <filter> is something old
if not GAPInfo.CommandLineOptions.N then
InstallHiddenTrueMethod( filter, tester );
fi;
CLEAR_HIDDEN_IMP_CACHE( tester );
# run the attribute functions
RUN_ATTR_FUNCS( filter, getter, setter, tester, false );
# and make the remaining assignments
BIND_SETTER_TESTER( name, setter, tester );
end );
#############################################################################
##
#F NewAttribute( <name>, <filter>[, <mutable>][, <rank>] ) . . new attribute
##
## <#GAPDoc Label="NewAttribute">
## <ManSection>
## <Func Name="NewAttribute" Arg='name, filter[, "mutable"][, rank]'/>
##
## <Description>
## <Ref Func="NewAttribute"/> returns a new attribute getter with name
## <A>name</A> that is applicable to objects with the property
## <A>filter</A>.
## <P/>
## Contrary to the situation with categories and representations,
## the tester of the new attribute does <E>not</E> imply <A>filter</A>.
## This is exactly because of the possibility to install methods
## that do not require <A>filter</A>.
## <P/>
## For example, the attribute <Ref Attr="Size"/> was created
## with second argument a list or a collection,
## but there is also a method for <Ref Attr="Size"/> that is
## applicable to a character table,
## which is neither a list nor a collection.
## <P/>
## For the optional third and fourth arguments, there are the following
## possibilities.
## <List>
## <Item> The integer argument <A>rank</A> causes the attribute tester to have
## this incremental rank (see <Ref Sect="Filters"/>),
## </Item>
## <Item> If the argument <A>mutable</A> is the string <C>"mutable"</C> or
## the boolean <K>true</K>, then the values of the attribute are mutable.
## </Item>
## <Item> If the argument <A>mutable</A> is the boolean <K>false</K>, then
## the values of the attribute are immutable.
## </Item>
## </List>
## <P/>
## When a value of such mutable attribute is set
## then this value itself is stored, not an immutable copy of it,
## and it is the user's responsibility to set an object that is mutable.
## This is useful for an attribute whose value is some partial information
## that may be completed later.
## For example, there is an attribute <C>ComputedSylowSubgroups</C>
## for the list holding those Sylow subgroups of a group that have been
## computed already by the function
## <Ref Oper="SylowSubgroup"/>,
## and this list is mutable because one may want to enter groups into it
## as they are computed.
## <!-- in the current implementation, one can overwrite values of mutable-->
## <!-- attributes; is this really intended?-->
## <!-- if yes then it should be documented!-->
## <P/>
## If no argument for <A>rank</A> is given, then the rank of the tester is 1.
## <P/>
## Each method for the new attribute that does <E>not</E> require
## its argument to lie in <A>filter</A> must be installed using
## <Ref Func="InstallOtherMethod"/>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "OPER_SetupAttribute", function(getter, flags, mutflag, filter, rank, name)
local setter, tester;
# add setter and tester to the list of operations
setter := SETTER_FILTER( getter );
tester := TESTER_FILTER( getter );
STORE_OPER_FLAGS(setter, [ flags, FLAGS_FILTER( IS_OBJECT ) ]);
STORE_OPER_FLAGS(tester, [ flags ]);
# store information about the filter
REGISTER_FILTER( tester, FLAG2_FILTER( tester ), rank, FNUM_ATTR );
# the <tester> is newly made, therefore the cache cannot contain a flag
# list involving <tester>
if not GAPInfo.CommandLineOptions.N then
InstallHiddenTrueMethod( filter, tester );
fi;
# CLEAR_HIDDEN_IMP_CACHE();
# run the attribute functions
RUN_ATTR_FUNCS( filter, getter, setter, tester, mutflag );
end);
# construct getter, setter and tester
BIND_GLOBAL( "NewAttribute", function ( name, filter, args... )
local flags, mutflag, getter, rank;
if not IS_STRING( name ) then
Error( "<name> must be a string");
fi;
if not IsFilter( filter ) then
Error( "<filter> must be a filter" );
fi;
rank := 1;
mutflag := false;
if LEN_LIST(args) = 0 then
# this is fine, but does nothing
elif LEN_LIST(args) = 1 and args[1] in [ "mutable", true, false ] then
mutflag := args[1] in [ "mutable", true];
elif LEN_LIST(args) = 1 and IS_INT(args[1]) then
rank := args[1];
elif LEN_LIST(args) = 2
and args[1] in [ "mutable", true, false ]
and IS_INT(args[2]) then
mutflag := args[1] in [ "mutable", true ];
rank := args[2];
else
Error("Usage: NewAttribute( <name>, <filter>[, <mutable>][, <rank>] )");
fi;
flags:= FLAGS_FILTER( filter );
# construct a new attribute
if mutflag then
getter := NEW_MUTABLE_ATTRIBUTE( name );
else
getter := NEW_ATTRIBUTE( name );
fi;
STORE_OPER_FLAGS(getter, [ flags ]);
OPER_SetupAttribute(getter, flags, mutflag, filter, rank, name);
# And return the getter
return getter;
end );
#############################################################################
##
#F DeclareAttribute( <name>, <filter>[, "mutable"][, <rank>] ) new attribute
##
## <#GAPDoc Label="DeclareAttribute">
## <ManSection>
## <Func Name="DeclareAttribute" Arg='name, filter[, "mutable"][, rank]'/>
##
## <Description>
## does the same as <Ref Func="NewAttribute"/> and then binds
## the result to the global variable <A>name</A>. The variable
## must previously be writable, and is made read-only by this function.
## It also binds read-only global variables with names
## <C>Has<A>name</A></C> and <C>Set<A>name</A></C>
## for the tester and setter of the attribute (see Section
## <Ref Sect="Setter and Tester for Attributes"/>).
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "ConvertToAttribute",
function(name, op, filter, rank, mutable)
local req, reqs, flags;
# `op' is not an attribute (tester) and not a property (tester),
# or `op' is a filter; in any case, `op' is not an attribute.
# if `op' has no one argument declarations we can turn it into
# an attribute
req := GET_OPER_FLAGS(op);
for reqs in req do
if LENGTH(reqs) = 1 then
Error( "operation `", name, "' has been declared as a one ",
"argument Operation and cannot also be an Attribute");
fi;
od;
flags := FLAGS_FILTER(filter);
STORE_OPER_FLAGS( op, [ flags ] );
# kernel magic for the conversion
if mutable then
OPER_TO_MUTABLE_ATTRIBUTE(op);
else
OPER_TO_ATTRIBUTE(op);
fi;
OPER_SetupAttribute(op, flags, mutable, filter, rank, name);
# and make the remaining assignments
BIND_SETTER_TESTER( name, SETTER_FILTER(op), TESTER_FILTER(op) );
end);
BIND_GLOBAL( "DeclareAttribute", function ( name, filter, args... )
local gvar, req, attr, mutflag, rank;
if not IS_STRING( name ) then
Error( "<name> must be a string");
fi;
if not IsFilter( filter ) then
Error( "<filter> must be a filter" );
fi;
rank := 1;
mutflag := false;
if LEN_LIST(args) = 0 then
# this is fine, but does nothing
elif LEN_LIST(args) = 1 and args[1] in [ "mutable", true, false ] then
mutflag := args[1] in [ "mutable", true];
elif LEN_LIST(args) = 1 and IS_INT(args[1]) then
rank := args[1];
elif LEN_LIST(args) = 2
and args[1] in [ "mutable", true, false ]
and IS_INT(args[2]) then
mutflag := args[1] in [ "mutable", true ];
rank := args[2];
else
Error("Usage: DeclareAttribute( <name>, <filter>[, <mutable>][, <rank>] )");
fi;
if ISB_GVAR( name ) then
# The variable exists already.
gvar := VALUE_GLOBAL( name );
# Check that the variable is in fact bound to an operation.
if not IS_OPERATION( gvar ) then
Error( "variable `", name, "' is not bound to an operation" );
fi;
# Check whether the variable is in fact bound to an attribute, i.e.,
# it has an associated tester (whose id is in FLAG2_FILTER) but is not
# a filter itself (to exclude properties, and also and-filters for which
# FLAG2_FILTER also is non-zero).
if FLAG2_FILTER( gvar ) <> 0 and not IsFilter(gvar) then
# gvar is already an attribute, extend it by the new filter
STORE_OPER_FLAGS( gvar, [ FLAGS_FILTER( filter ) ] );
# also set the extended range for the setter
req := GET_OPER_FLAGS( Setter(gvar) );
STORE_OPER_FLAGS( Setter(gvar), [ FLAGS_FILTER( filter), req[1][2] ] );
else
# gvar is an existing non-attribute operation, try to convert it
# into an attribute
ConvertToAttribute(name, gvar, filter, rank, mutflag);
fi;
else
# The attribute is new.
attr := NewAttribute(name, filter, mutflag, rank);
BIND_GLOBAL( name, attr );
# and make the remaining assignments
BIND_SETTER_TESTER( name, SETTER_FILTER(attr), TESTER_FILTER(attr) );
fi;
end );
#############################################################################
##
#V LENGTH_SETTER_METHODS_2
##
## <ManSection>
## <Var Name="LENGTH_SETTER_METHODS_2"/>
##
## <Description>
## is the current length of <C>METHODS_OPERATION( <A>attr</A>, 2 )</C>
## for an attribute <A>attr</A> for which no individual setter methods
## are installed.
## (This is used for <C>ObjectifyWithAttributes</C>.)
## </Description>
## </ManSection>
##
LENGTH_SETTER_METHODS_2 := 0;
#############################################################################
##
#F DeclarePropertyKernel( <name>, <filter>, <getter> ) . . . . new property
##
## <ManSection>
## <Func Name="DeclarePropertyKernel" Arg='name, filter, getter'/>
##
## <Description>
## This function must not be used to re-declare a property
## that has already been declared.
## </Description>
## </ManSection>
##
BIND_GLOBAL( "DeclarePropertyKernel", function ( name, filter, getter )
local setter, tester;
# This will yield an error if `name' is already bound.
BIND_GLOBAL( name, getter );
SET_NAME_FUNC( getter, name );
# construct setter and tester
setter := SETTER_FILTER( getter );
tester := TESTER_FILTER( getter );
# add getter, setter and tester to the list of operations
STORE_OPER_FLAGS(getter, [ FLAGS_FILTER(filter) ]);
STORE_OPER_FLAGS(setter, [ FLAGS_FILTER(filter), FLAGS_FILTER(IS_BOOL) ]);
STORE_OPER_FLAGS(tester, [ FLAGS_FILTER(filter) ]);
# store information about the filters
REGISTER_FILTER( getter, FLAG1_FILTER( getter ), 1, FNUM_PROP_KERN );
REGISTER_FILTER( tester, FLAG2_FILTER( tester ), 1, FNUM_TPR_KERN );
# clear the cache because <filter> is something old
if not GAPInfo.CommandLineOptions.N then
InstallHiddenTrueMethod( tester, getter );
CLEAR_HIDDEN_IMP_CACHE( getter );
InstallHiddenTrueMethod( filter, tester );
CLEAR_HIDDEN_IMP_CACHE( tester );
fi;
# run the attribute functions
RUN_ATTR_FUNCS( filter, getter, setter, tester, false );
# and make the remaining assignments
BIND_SETTER_TESTER( name, setter, tester );
end );
#############################################################################
##
#F NewProperty( <name>, <filter>[, <rank>] ) . . . . . . . . . new property
##
## <#GAPDoc Label="NewProperty">
## <ManSection>
## <Func Name="NewProperty" Arg='name, filter[, rank]'/>
##
## <Description>
## <Ref Func="NewProperty"/> returns a new property <A>prop</A> with name
## <A>name</A> (see also <Ref Sect="Properties"/>).
## The filter <A>filter</A> describes the involved filters of <A>prop</A>.
## As in the case of attributes,
## <A>filter</A> is not implied by <A>prop</A>.
## <P/>
## The optional third argument <A>rank</A> denotes the incremental rank
## (see <Ref Sect="Filters"/>) of the property
## <A>prop</A> itself, i.e. <E>not</E> of its tester;
## the default value is 1.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "NewProperty", function ( arg )
local name, filter, rank, flags, getter, setter, tester;
name := arg[1];
filter := arg[2];
if LEN_LIST( arg ) = 3 and IS_INT( arg[3] ) then
rank := arg[3];
else
rank := 1;
fi;
if not IS_OPERATION( filter ) then
Error( "<filter> must be an operation" );
fi;
flags:= FLAGS_FILTER( filter );
# construct getter, setter and tester
getter := NEW_PROPERTY( name );
setter := SETTER_FILTER( getter );
tester := TESTER_FILTER( getter );
# add getter, setter and tester to the list of operations
STORE_OPER_FLAGS(getter, [ flags ]);
STORE_OPER_FLAGS(setter, [ flags, FLAGS_FILTER(IS_BOOL) ]);
STORE_OPER_FLAGS(tester, [ flags ]);
# store information about the filters
REGISTER_FILTER( getter, FLAG1_FILTER( getter ), rank, FNUM_PROP );
REGISTER_FILTER( tester, FLAG2_FILTER( tester ), 1, FNUM_TPR );
# the <tester> and <getter> are newly made, therefore the cache cannot
# contain a flag list involving <tester> or <getter>
if not GAPInfo.CommandLineOptions.N then
InstallHiddenTrueMethod( tester, getter );
InstallHiddenTrueMethod( filter, tester );
fi;
# CLEAR_HIDDEN_IMP_CACHE();
# run the attribute functions
RUN_ATTR_FUNCS( filter, getter, setter, tester, false );
# and return the getter
return getter;
end );
#############################################################################
##
#F DeclareProperty( <name>, <filter> [,<rank>] ) . . . . . . . new property
##
## <#GAPDoc Label="DeclareProperty">
## <ManSection>
## <Func Name="DeclareProperty" Arg='name, filter [,rank]'/>
##
## <Description>
## does the same as <Ref Func="NewProperty"/> and then binds
## the result to the global variable <A>name</A>. The variable
## must previously be writable, and is made read-only by this function.
## It also binds read-only global variables with names
## <C>Has<A>name</A></C> and <C>Set<A>name</A></C>
## for the tester and setter of the property (see Section
## <Ref Sect="Setter and Tester for Attributes"/>).
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "DeclareProperty", function ( arg )
local prop, name, gvar, req, filter;
name:= arg[1];
if ISB_GVAR( name ) then
gvar:= VALUE_GLOBAL( name );
# Check that the variable is in fact an operation.
if not IS_OPERATION( gvar ) then
Error( "variable `", name, "' is not bound to an operation" );
fi;
# The property has already been declared.
# If it was not created as a property
# then ask for re-declaration as an ordinary operation.
# (Note that the values computed for objects matching the new
# requirements cannot be stored.)
if FLAG1_FILTER( gvar ) = 0 or FLAG2_FILTER( gvar ) = 0 then
# `gvar' is not a property (tester).
Error( "operation `", name, "' was not created as a property,",
" use `DeclareOperation'" );
fi;
# Add the new requirements.
filter:= arg[2];
if not IS_OPERATION( filter ) then
Error( "<filter> must be an operation" );
fi;
STORE_OPER_FLAGS( gvar, [ FLAGS_FILTER( filter ) ] );
else
# The property is new.
prop:= CALL_FUNC_LIST( NewProperty, arg );
BIND_GLOBAL( name, prop );
BIND_SETTER_TESTER( name, SETTER_FILTER( prop ), TESTER_FILTER( prop ) );
fi;
end );
#############################################################################
##
#F InstallAtExit( <func> ) . . . . . . . . . . function to call when exiting
##
BIND_GLOBAL( "InstallAtExit", function( func )
local f;
if not IS_FUNCTION(func) then
Error( "<func> must be a function" );
fi;
if CHECK_INSTALL_METHOD then
if not NARG_FUNC(func) in [ -1, 0 ] then
Error( "<func> must accept zero arguments" );
fi;
fi;
# Return if function has already been installed
# Use this long form to support both List and AtomicList
for f in GAPInfo.AtExitFuncs do
if f = func then
return;
fi;
od;
ADD_LIST( GAPInfo.AtExitFuncs, func );
end );
#############################################################################
##
#O ViewObj( <obj> ) . . . . . . . . . . . . . . . . . . . . view an object
##
## <ManSection>
## <Oper Name="ViewObj" Arg='obj'/>
##
## <Description>
## <Ref Oper="ViewObj"/> prints information about the object <A>obj</A>.
## This information is thought to be short and human readable,
## in particular <E>not</E> necessarily detailed enough for defining <A>obj</A>,
## an in general <E>not</E> &GAP; readable.
## <P/>
## More detailed information can be obtained by <Ref Func="PrintObj"/>
## </Description>
## </ManSection>
##
DeclareOperationKernel( "ViewObj", [ IS_OBJECT ], VIEW_OBJ );
#############################################################################
##
#O ViewString( <obj> ) . . . . . . . . . . . . . . . . . . . view an object
##
## <#GAPDoc Label="ViewString">
## <ManSection>
## <Oper Name="ViewString" Arg='obj'/>
##
## <Description>
## <Ref Oper="ViewString"/> returns a string which would be displayed
## by <Ref Oper="ViewObj"/> for an
## object. Note that no method for <Ref Oper="ViewString"/> may
## delegate to any of
## the operations <Ref Oper="Display"/>, <Ref Oper="ViewObj"/>,
## <Ref Oper="DisplayString"/> or <Ref Oper="PrintObj"/> to avoid
## circular delegations.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareOperation( "ViewString", [ IS_OBJECT ]);
#############################################################################
##
#F View( <obj1>, <obj2>... ) . . . . . . . . . . . . . . . . . view objects
##
## <#GAPDoc Label="View">
## <ManSection>
## <Func Name="View" Arg='obj1, obj2...'/>
##
## <Description>
## <Ref Func="View"/> shows the objects <A>obj1</A>, <A>obj2</A>... etc.
## <E>in a short form</E> on the standard output by calling the
## <Ref Oper="ViewObj"/> operation on each of them.
## <Ref Func="View"/> is called in the read-eval-print loop,
## thus the output looks exactly like the representation of the
## objects shown by the main loop.
## Note that no space or newline is printed between the objects.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "View", function( arg )
local obj;
for obj in arg do
ViewObj(obj);
od;
end );
#############################################################################
##
#F TraceMethods( <oprs> )
##
## <#GAPDoc Label="TraceMethods">
## <ManSection>
## <Func Name="TraceMethods" Arg='opr1, opr2, ...' Label ="for operations"/>
## <Func Name="TraceMethods" Arg='oprs' Label ="for a list of operations"/>
##
## <Description>
## After the call of <C>TraceMethods</C>, whenever a method of one of
## the operations <A>opr1</A>, <A>opr2</A>, ... is called, the
## information string used in the installation of the method is printed.
## The second form has the same effect for each operation from the list
## <A>oprs</A> of operations.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "TraceMethods", function( arg )
local fun;
if LEN_LIST( arg ) = 0 then
Error("`TraceMethods' require at least one argument");
fi;
if IS_LIST(arg[1]) then
arg := arg[1];
fi;
for fun in arg do
TRACE_METHODS(fun);
od;
end );
#############################################################################
##
#F TraceAllMethods( )
##
## <#GAPDoc Label="TraceAllMethods">
## <ManSection>
## <Func Name="TraceAllMethods" Arg=""/>
##
## <Description>
## Invokes <C>TraceMethods</C> for all operations.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "TraceAllMethods", function( arg )
TraceMethods(OPERATIONS);
end );
#############################################################################
##
#F UntraceMethods( <oprs>)
##
## <#GAPDoc Label="UntraceMethods">
## <ManSection>
## <Func Name="UntraceMethods" Arg='opr1, opr2, ...' Label ="for operations"/>
## <Func Name="UntraceMethods" Arg='oprs' Label ="for a list of operations"/>
##
## <Description>
## turns the tracing off for all operations <A>opr1</A>, <A>opr2</A>, ... or
## in the second form, for all operations in the list <A>oprs</A>.
## <Log><![CDATA[
## gap> TraceMethods( [ Size ] );
## gap> g:= Group( (1,2,3), (1,2) );;
## gap> Size( g );
## #I Size: for a permutation group at /gap5/lib/grpperm.gi:487
## #I Setter(Size): system setter
## #I Size: system getter
## #I Size: system getter
## 6
## gap> UntraceMethods( [ Size ] );
## ]]></Log>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "UntraceMethods", function( arg )
local fun;
if LEN_LIST( arg ) = 0 then
Error("`UntraceMethods' require at least one argument");
fi;
if IS_LIST(arg[1]) then
arg := arg[1];
fi;
for fun in arg do
UNTRACE_METHODS(fun);
od;
end );
#############################################################################
##
#F UntraceAllMethods( <oprs>)
##
## <#GAPDoc Label="UntraceAllMethods">
## <ManSection>
## <Func Name="UntraceAllMethods" Arg=""/>
##
## <Description>
## Equivalent to calling <C>UntraceMethods</C> for all operations.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "UntraceAllMethods", function( arg )
UntraceMethods(OPERATIONS);
end );
#############################################################################
##
#F DeclareGlobalFunction( <name> ) . . . . . . create a new global function
#F InstallGlobalFunction( <oper>, <func> )
##
## <#GAPDoc Label="DeclareGlobalFunction">
## <ManSection>
## <Func Name="DeclareGlobalFunction" Arg='name'/>
## <Func Name="InstallGlobalFunction" Arg='oper, func'/>
##
## <Description>
## &GAP; functions that are not operations and that are intended to be
## called by users should be notified to &GAP;
## via <Ref Func="DeclareGlobalFunction"/>.
## <Ref Func="DeclareGlobalFunction"/>
## returns a function that serves as a placeholder for the function that will
## be installed later.
## The placeholder will print an error message if it is called.
## See also <Ref Func="DeclareSynonym"/>.
## <P/>
##
## In the past the main application of this was to allow access to variables
## before they were assigned. Starting with &GAP; 4.12 we recommend to use
## <Ref Func="DeclareGlobalName"/>/<Ref Func="BindGlobal"/> instead of
## <Ref Func="DeclareGlobalVariable"/>/<Ref Func="InstallGlobalFunction"/>
## whenever possible.
## <P/>
##
## If used at all, then
## <Ref Func="DeclareGlobalVariable"/> shall be used in the declaration part
## of the respective package
## (see <Ref Sect="Declaration and Implementation Part"/>).
## <P/>
##
## A global function declared with <Ref Func="DeclareGlobalFunction"/>
## can be given its value <A>func</A> via
## <Ref Func="InstallGlobalFunction"/>;
## <A>gvar</A> is the global variable (or a string denoting its name)
## named with the <A>name</A> argument of the call to
## <Ref Func="DeclareGlobalFunction"/>.
## For example, a declaration like
## <P/>
## <Log><![CDATA[
## DeclareGlobalFunction( "SumOfTwoCubes" );
## ]]></Log>
## <P/>
## in the <Q>declaration part</Q>
## (see Section <Ref Sect="Declaration and Implementation Part"/>)
## might have a corresponding <Q>implementation part</Q> of:
## <P/>
## <Log><![CDATA[
## InstallGlobalFunction( SumOfTwoCubes, function(x, y) return x^3 + y^3; end);
## ]]></Log>
## <P/>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
## Global functions of the &GAP; library must be distinguished from other
## global variables (see <C>variable.g</C>) because of the completion
## mechanism.
##
if IsHPCGAP then
BIND_GLOBAL( "GLOBAL_FUNCTION_NAMES", ShareSpecialObj([], "GLOBAL_FUNCTION_NAMES") );
else
BIND_GLOBAL( "GLOBAL_FUNCTION_NAMES", [] );
fi;
BIND_GLOBAL( "DeclareGlobalFunction", function( arg )
local name;
name := arg[1];
if LEN_LIST(arg) > 1 then
INFO_DEBUG(1, "DeclareGlobalFunction: too many arguments in ",
INPUT_FILENAME(), ":", STRING_INT(INPUT_LINENUMBER()));
fi;
atomic GLOBAL_FUNCTION_NAMES do
ADD_SET( GLOBAL_FUNCTION_NAMES, IMMUTABLE_COPY_OBJ(name) );
od;
BIND_GLOBAL( name, NEW_GLOBAL_FUNCTION( name ) );
end );
BIND_GLOBAL( "InstallGlobalFunction", function( arg )
local oper, func;
if LEN_LIST(arg) > 2 then
INFO_DEBUG(1, "InstallGlobalFunction: too many arguments in ",
INPUT_FILENAME(), ":", STRING_INT(INPUT_LINENUMBER()));
fi;
if LEN_LIST(arg) = 3 then
oper := arg[1];
func := arg[3];
else
oper := arg[1];
func := arg[2];
fi;
if IS_STRING( oper ) then
if not ISBOUND_GLOBAL(oper) then
Error("global function `", oper, "' is not declared yet");
fi;
oper:= VALUE_GLOBAL( oper );
fi;
atomic readonly GLOBAL_FUNCTION_NAMES do
if NAME_FUNC(func) in GLOBAL_FUNCTION_NAMES then
Error("you cannot install a global function for another global ",
"function,\nuse `DeclareSynonym' instead!");
fi;
INSTALL_GLOBAL_FUNCTION( oper, func );
od;
end );
if not IsHPCGAP then
BIND_GLOBAL( "FLUSH_ALL_METHOD_CACHES", function()
local oper,j;
for oper in OPERATIONS do
for j in [1..6] do
CHANGED_METHODS_OPERATION(oper,j);
od;
od;
end);
fi;
if BASE_SIZE_METHODS_OPER_ENTRY <> 6 then
Error("MethodsOperation must be updated for new BASE_SIZE_METHODS_OPER_ENTRY");
fi;
# TODO: document this?!
BIND_GLOBAL("MethodsOperation", function(oper, nargs)
local early, meths, len, result, i, m;
early := EARLY_METHOD(oper, nargs);
meths := METHODS_OPERATION(oper, nargs);
if early = fail and meths = fail then
return fail;
fi;
result := [];
if early <> fail then
i := SHALLOW_COPY_OBJ(NAME_FUNC(oper));
APPEND_LIST_INTR( i, ": early method" );
CONV_STRING(i);
m := rec(
early := true,
#famPred := meths[i + 1],
#argFilt := meths{[i + 2 .. i + nargs + 1]},
func := early,
rank := infinity,
info := i,
# TODO: unfortunately we do not currently track the location where
# InstallEarlyMethod was called. But in practice the location of
# the function installed as early method is the same, at least in
# the GAP library; so just use that for now.
location := [ FILENAME_FUNC(early), STARTLINE_FUNC(early) ],
rankbase := infinity,
);
ADD_LIST(result, m);
if meths = fail then
return result;
fi;
fi;
len := BASE_SIZE_METHODS_OPER_ENTRY + nargs;
for i in [0, len .. LENGTH(meths) - len] do
m := rec(
early := false,
famPred := meths[i + 1],
argFilt := meths{[i + 2 .. i + nargs + 1]},
func := meths[i + nargs + 2],
rank := meths[i + nargs + 3],
info := meths[i + nargs + 4],
location := meths[i + nargs + 5],
rankbase := meths[i + nargs + 6],
);
ADD_LIST(result, m);
od;
return result;
end );
#############################################################################
##
#F RANK_SHIFT_FUNCTION( <filters>, <alt_rank> )
##
## Apparently it is important that this function does not get compiled,
## thus it cannot be in 'lib/oper1.g', in particular not inside the body
## of the function 'INSTALL_METHOD'.
## (When one puts the code there and compiles 'lib/oper1.g' then calling
## 'BindingsOfClosure(INSTALL_METHOD)', which occurs in the tests from
## 'tst/testinstall/opers/BindingsOfClosure.tst', ends in a
## segmentation fault.)
##
BIND_GLOBAL( "RANK_SHIFT_FUNCTION", function( filters, alt_filters, rank )
return function()
local i, res;
res:= rank;
for i in filters do
res:= res - RankFilter( i );
od;
for i in alt_filters do
res:= res + RankFilter( i );
od;
return res;
end;
end );
#############################################################################
##
#F CHECK_ALL_METHOD_RANKS
##
## Debugging helper which checks that all methods are sorted correctly
##
BIND_GLOBAL( "CHECK_ALL_METHOD_RANKS", function()
local oper, n, meths, i, result;
result := true;
for oper in OPERATIONS do
for n in [0..6] do
meths := MethodsOperation(oper, n);
for i in [2..LENGTH(meths)] do
if meths[i-1].rank < meths[i].rank then
Print("Error, wrong method ordering for '", oper, "' on ", n, " arguments:\n");
Print(" ", i-1, ": ", meths[i-1].rank, " ", meths[i-1].info, "\n");
Print(" ", i , ": ", meths[i].rank, " ", meths[i].info, "\n");
result := false;
fi;
od;
od;
od;
return result;
end );
#############################################################################
##
#F RECALCULATE_ALL_METHOD_RANKS() . . reorder methods after new implications
##
## Installing new implications (including hidden implications) can change the
## rank of existing filters, and so of existing methods for operations.
##
## This function recalculates all such ranks and adjusts the method ordering
## where needed. If the ordering changes, the relevant caches are flushed.
##
## Besides this, also the flags list stored for the first argument of
## each constructor method gets updated.
##
## If PRINT_REORDERED_METHODS is true, it prints some diagnostics (this is a
## bit too low-level for Info).
##
##
#
# We had to install a placeholder for this in filter.g
#
Unbind(RECALCULATE_ALL_METHOD_RANKS);
PRINT_REORDERED_METHODS := false;
BIND_GLOBAL( "RECALCULATE_ALL_METHOD_RANKS", function()
local oper, n, changed, meths, nmethods, i, base, rank, flags, j, req,
k, l, entrysize;
for oper in OPERATIONS do
for n in [0..6] do
changed := false;
meths := METHODS_OPERATION(oper, n);
entrysize := BASE_SIZE_METHODS_OPER_ENTRY+n;
nmethods := LENGTH(meths)/entrysize;
for i in [1..nmethods] do
base := (i-1)*entrysize;
# data for this method is meths{[base+1..base+entrysize]}
rank := meths[base+6+n];
if IS_FUNCTION(rank) then
rank := rank();
fi;
# adjust the base rank by the rank of the argument filters
if IS_CONSTRUCTOR(oper) then
Assert(2, n > 0);
# Take implications into account for the first argument.
flags:= WITH_IMPS_FLAGS(meths[base+1+1]);
if flags <> meths[base+1+1] then
if IsHPCGAP and not changed then
meths:= SHALLOW_COPY_OBJ(meths);
fi;
changed:= true;
meths[base+1+1]:= flags;
fi;
rank := rank - RankFilter(meths[base+1+1]);
else
for j in [1..n] do
req := meths[base+1+j];
rank := rank + RankFilter(req);
od;
fi;
# check if new rank differs from old rank
if rank <> meths[base+n+3] then
if IsHPCGAP and not changed then
meths := SHALLOW_COPY_OBJ(meths);
fi;
changed := true;
meths[base+n+3] := rank;
fi;
# determine how far back we need to adjust the rank
k := i;
while k > 1 and meths[(k-2)*entrysize+n+3] < rank do
k := k-1;
od;
# do nothing if the preceding methods don't have lower rank
if i = k then
continue;
fi;
if PRINT_REORDERED_METHODS then
Print(NAME_FUNC(oper), " ", n," args. Moving method ",i,
" with rank ", rank,
" to position ",k,
" (",meths[base+n+4],
" from ",meths[base+n+5][1],":", meths[base+n+5][2],
")\n");
fi;
# extract the current method
l := meths{[base+1..base+entrysize]};
# move all preceding methods of lower rank
COPY_LIST_ENTRIES(meths, 1 + (k-1)*entrysize, 1,
meths, 1 + k*entrysize, 1,
(i-k)*entrysize);
# insert the current method at its new position
meths{[1 + (k-1)*entrysize..k*entrysize]} := l;
od;
if changed then
if IsHPCGAP then
SET_METHODS_OPERATION(oper,n,MakeReadOnlySingleObj(meths));
else
CHANGED_METHODS_OPERATION(oper,n);
fi;
fi;
od;
od;
Assert(2, CHECK_ALL_METHOD_RANKS());
end );
|