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
|
;;;-*- Mode: Lisp; Syntax:CommonLisp; Package:CHAOS; Base:10 -*-
;;;
;;; Copyright (c) 2000-2018, Toshimi Sawada. All rights reserved.
;;;
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
;;; are met:
;;;
;;; * Redistributions of source code must retain the above copyright
;;; notice, this list of conditions and the following disclaimer.
;;;
;;; * Redistributions in binary form must reproduce the above
;;; copyright notice, this list of conditions and the following
;;; disclaimer in the documentation and/or other materials
;;; provided with the distribution.
;;;
;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;;;
(in-package :chaos)
#|=============================================================================
System:CHAOS
Module: primitives.chaos
File: term-utils.lisp
=============================================================================|#
#-:chaos-debug
(declaim (optimize (speed 3) (safety 0) #-GCL (debug 0)))
#+:chaos-debug
(declaim (optimize (speed 1) (safety 3) #-GCL (debug 3)))
;;; (defvar *term-debug* nil)
;;; == DESCRIPTION ============================================================
;;; UTILITY PROCS on TERMS
;;; Many routines are based on OBJ3 interpeter of SRI International.
;;; reorganized and adopted to Chaos system by <sawada@sra.co.jp>.
;;; ****************************
;;; APPLICATION FORM CONSTRUTORS
;;; with some additional works ________________________________________________
;;; ****************************
;;; MAKE-TERM-WITH-SORT-CHECK : METHOD SUBTERMS -> TERM
;;; construct application form from given method & subterms.
;;; the lowest method is searched and if found, construct a term with found
;;; method, otherwise, given method is used.
(defvar **sa-debug** nil)
(declaim (inline make-term-with-sort-check))
(defun make-term-with-sort-check (meth subterms
&optional (module (get-context-module)))
(declare (type method meth)
(type list subterms)
(type module module)
(optimize (speed 3) (safety 0)))
(let ((res nil))
(if (do ((arl (method-arity meth) (cdr arl))
(sl subterms (cdr sl)))
((null arl) t)
(unless (sort= (car arl) (term-sort (car sl))) (return nil)))
(setq res (make-applform (method-coarity meth) meth subterms))
(let ((m (lowest-method meth
(mapcar #'(lambda (x) (term-sort x)) subterms) ;
module)))
(setq res (make-applform (method-coarity m) m subterms))))
(when **sa-debug**
(format t "~%MTWSC: meth=")
(print-chaos-object meth)
(print "==> ")
(term-print res)
(format t ":")
(print-chaos-object (term-head res))
(force-output))
res))
;;; MAKE-TERM-WITH-SORT-CHECK-BIN : METHOD SUBTERMS -> TERM
;;; same as make-term-with-sort-check, but specialized to binary operators.
(defun make-term-with-sort-check-bin (meth subterms
&optional (module (get-context-module)))
(declare (type method meth)
(type list subterms)
(type (or null module) module)
(optimize (speed 3)(safety 0)))
(let ((s1 (term-sort (car subterms)))
(s2 (term-sort (cadr subterms)))
(res nil))
(if (let ((ar (method-arity meth)))
(and (sort= (car ar) s1)
(sort= (cadr ar) s2)))
(setq res (make-applform (method-coarity meth) meth subterms))
(let ((lm (lowest-method meth (list s1 s2) module)))
(setq res (make-applform (method-coarity lm) lm subterms))))
(when **sa-debug**
(format t "~&MTWSC-BIN: meth=")
(print-chaos-object meth)
(print "==> ")
(term-print res)
(format t ":")
(print-chaos-object (term-head res))
(force-output))
res))
;;; op make-term-check-op : method {subterms}list[term] -> term
;;;
(declaim (inline make-term-check-op))
(defun make-term-check-op (f subterms &optional module)
(declare (type method f)
(type list subterms)
(type (or null module) module)
(optimize (speed 3) (safety 0))
(inline make-term-with-sort-check))
(make-term-with-sort-check f subterms module))
;;; op make-term-check-op-with-sort-check :
;;; operator {subterms}list[term] -> term
;;; check if f is a built-in-constant-op
;;;
(defun make-term-check-op-with-sort-check (f subterms &optional module)
(declare (type method f)
(type list subterms)
(type (or null module) module)
(optimize (safety 0) (speed 3))
(inline make-term-with-sort-check))
(make-term-with-sort-check f subterms module))
;;;*****************************
;;; Application form constructor________________________________________________
;;;*****************************
(declaim (inline make-appl-form))
(defun make-applform (sort meth &optional args)
(declare (optimize (speed 3) (safety 0)))
(make-application-term meth sort args))
;;; ******************
;;; RESET-REDUCED-FLAG---------------------------------------------------------
;;; ******************
(defun reset-reduced-flag (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(when (or (term-is-builtin-constant? term)
(pvariable-term? term))
(return-from reset-reduced-flag term))
(mark-term-as-not-reduced term)
(when (term-is-application-form? term)
(dolist (sub (term-subterms term))
(reset-reduced-flag sub)))
term)
#|
SUBSTITUTION
--------------------------------------------------------------------------------
A substitution is a map from variables to terms. Any mapping \sigma of variables
to terms extends to a substitution by defining \sigma(f(t1,...,tn)) to be
f(\sigma(t1), ... , \sigma(tn)).
IMPLEMENTATION:
this is naturally an association list of (varible . term) pair, and we want it
to be mutable, then we implemented as a structure of type list.
--------------------------------------------------------------------------------
|#
(deftype substitution () 'list)
(defmacro substitution-create (_bind) _bind)
(defmacro substitution-bindings (_sub) _sub)
(defmacro assoc-in-substitution (_key _sub &optional (_test '#'variable-eq))
`(assoc ,_key ,_sub :test ,_test))
;;; CREATE-EMPTY-SUBSTITUTION
;;; Creates new empty substitution
;;;
(defmacro create-empty-substitution () `())
(declaim (inline new-substitution))
(defun new-substitution () ())
;;; SUBSTITUTION-COPY sigma
;;; Returns a copy of sigma.
;;;
(defmacro substitution-copy (_sigma)
` (mapcar #'(lambda (map)
(cons (car map) (cdr map)))
,_sigma))
;;; SUBSTITUTION-IS-EMPTY sigma
;;; Returns t iff \sigma is an empty substitution-
;;;
(defmacro substitution-is-empty (sigma_) `(null ,sigma_))
;;; SUBSTITUTION-DOMAIN sigma
;;; Returns the domain of sigma
;;;
(defmacro substitution-domain (_sigma_) `(mapcar #'car ,_sigma_))
;;; VARIABLE-IMAGE
;;; returns the image of variable under sigma.
;;;
(defmacro variable-image (*_sigma *_variable)
`(and ,*_sigma (cdr (assoc ,*_variable ,*_sigma :test #'variable-eq))))
(defmacro variable-image-fast (_*sigma _*variable)
`(cdr (assoc ,_*variable ,_*sigma :test #'eq)))
(defmacro variable-image-slow (_*sigma _*variable)
`(and ,_*sigma (cdr (assoc ,_*variable ,_*sigma :test #'variable-equal))))
;;; SUBSTITUTION-LIST-OF-PAIRS sigma
;;; returns the list of pair in substitution-
;;;
(defmacro substitution-list-of-pairs (_sigma_) _sigma_)
;;; SUBSTITUTION-ADD sigma variable term
;;; adds the new map variable -> term to sigma.
;;;
(defmacro substitution-add (sigma_* variable_* term_*)
`(cons (cons ,variable_* ,term_*) ,sigma_*))
;;; SUBSTITUTION-DELETE sigma variable
;;; deletes the map for variable from sigma.
;;; NOTE: sigma is modified.
;;;
(defmacro substitution-delete (sigma!_ variable!_)
(once-only (sigma!_)
` (progn (setf ,sigma!_
(delete ,variable!_ ,sigma!_ :test #'variable-eq))
,sigma!_)))
;;; SUBSTITUTION-CHANGE sigma variable term
;;; change the mapping of variable to term.
;;; if the variable is not in the domain of sigma, add the new binding.
;;; NOTE: sigma is modified.
;;;
(defmacro substitution-change (?__sigma ?__variable ?__term)
(once-only (?__sigma ?__variable ?__term)
` (let ((binding (assoc-in-substitution ,?__variable ,?__sigma)))
(if binding
(setf (cdr binding) ,?__term)
(push (cons variable ,?__term) ?__sigma))
,?__sigma)))
;;; SUBSTITUTION-SET sigma variable term
;;; Changes sigma to map v to term.
;;;
(defmacro substitution-set (?_?sigma ?_?v ?_?term)
(once-only (?_?sigma ?_?v ?_?term)
`(progn
(if (variable-eq ,?_?v ,?_?term)
(substitution-delete ,?_?sigma ,?_?v)
(substitution-change ,?_?sigma ,?_?v ,?_?term))
,?_?sigma)))
;;; CANONICALIZE-SUBSTITUTION : substitution -> substitution
;;;
(defun canonicalize-substitution (s)
(declare (type list s)
(optimize (speed 3) (safety 0))
(values list))
(sort (copy-list s) ; (substitution-copy s)
#'(lambda (x y) ; two substitution items (var . term)
(string< (the simple-string (string (the symbol (variable-name (car x)))))
(the simple-string (string (the symbol (variable-name (car y)))))))))
;;; SUBSTITUTION-EQUAL : substitution1 substitution2 -> Bool
;;;
(defun substitution-equal (s1 s2)
(declare (type list s1 s2)
(optimize (speed 3) (safety 0))
(values (or null t)))
(every2len #'(lambda (x y)
(and (variable= (the term (car x)) (the term (car y)))
(term-is-similar? (the term (cdr x)) (the term (cdr y)))))
s1 s2))
;;; SUBSTITUTION-RESTRICT : list-of-variables substitution -> substitution
;;;
(defun substitution-restrict (vars sub)
(declare (type list vars sub)
(optimize (speed 3) (safety 0))
(values list))
(let ((res nil))
(dolist (s sub)
(when (member (car s) vars :test #'variable=)
(push s res)))
res))
;;; SUBSTITUTION-SUBSET substitution-1 substitution-2 : -> bool
;;; subset when viewed as a set of (mapping) pairs
;;; assumed canonicalized
;;;
(defun substitution-subset (s1 s2)
(declare (type list s1 s2)
(optimize (speed 3) (safety 0)))
(substitution-subset-list (substitution-list-of-pairs s1)
(substitution-list-of-pairs s2)))
(defun substitution-subset-list (s1 s2)
(declare (type list s1 s2)
(optimize (speed 3) (safety 0))
(values (or null t)))
(let ((s1x s1)
(s2x s2)
(res t))
(loop (when (null s1x) (return))
(let ((v1 (the term (caar s1x)))
(t1 (the term (cdar s1x))))
(loop (when (null s2x) (setq res nil) (return))
(when (variable-eq v1 (caar s2x))
(if (term-is-similar? t1 (cdar s2x))
(progn (setq s2x (cdr s2x)) (return))
(progn (setq res nil) (return))))
(setq s2x (cdr s2x)))
(when (null res) (return))
(setq s1x (cdr s1x))))
res))
;;; SUBSTITUTION-DOMAIN-RESTRICTION sigma domain
;;; Restricts the domain of sigma to dom and renames in a canonical fashion all
;;; variables in the range of sigma, but not in domain. More precisely, returns
;;; a substitution sigma2 with domain a subset of domain such that, for any
;;; variable v in domain, \sigma2(v) = \rho(\sigma(v)), where \rho is a substitution
;;; that renames variables.
;;;
;;; TODO
(defun substitution-domain-restriction (sigma domain)
sigma domain
)
;;; SUBSTITUTION-UNION sigma1 sigma2
;;; Returns the union of \sigma1 nd \sigma2. Returns 'incompatible if
;;; \sigma1(v) differs from \sigma2(v) for some v in the intersection of their
;;; domains.
;;;
;;; TODO
(defun substitution-union (sigma1 sigma2)
sigma1 sigma2
)
;;; SUBSTITUTION-COMPOSIT sigma1 sigma2
;;; Returns the composition of \sigma1 and \sigma2. The result of applying this
;;; composition to a term t is \sigma1(\sigma2(t)).
;;; NOTE: This operation is NOT commutative,
;;; i,e. substitution-composit(sigma, sigma) =/= sigma.
;;;
(defun substitution-composit (sigma1 sigma2)
sigma1 sigma2
)
;;; SUBSTITUTION-FOREACH (element sigma) body
;;; Yields the variable-term pairs in sigma
;;;
(defmacro substitution-foreach ((?_??element ?_??sigma) &body ?_??body)
`(dolist (,?_??element (substitution-bindings ,?_??sigma))
,@?_??body)
)
(defun substitution-check-built-in (trm) trm)
;;; SUBSTITUTION-COMPOSE
(defun substitution-compose (teta lisp-term)
(declare (type list teta lisp-term)
(optimize (speed 3) (safety 0)))
(let ((fcn (lisp-form-function lisp-term))
(new-fun nil)
(new-term nil))
(if (or #-CMU(typep fcn 'compiled-function)
#+CMU(typep fcn 'function)
(not (and (consp fcn) (eq 'lambda (car fcn))
(equal '(compn) (cadr fcn)))))
(setf new-fun
`(lambda (compn) (funcall ',fcn (append ',teta compn))))
(let ((oldteta (cadr (nth 1 (nth 2 (nth 2 fcn)))))
(realfcn (cadr (nth 1 (nth 2 fcn)))))
(setf new-fun
`(lambda (compn)
(funcall ',realfcn (append ',(append teta oldteta) compn))))))
(if (term-is-simple-lisp-form? lisp-term)
(setf new-term (make-simple-lisp-form-term (lisp-form-original-form lisp-term)))
(setf new-term (make-general-lisp-form-term (lisp-form-original-form lisp-term))))
(setf (lisp-form-function new-term) new-fun)
new-term))
(defun substitution-compose-chaos (teta chaos-expr)
(declare (type list teta chaos-expr)
(optimize (speed 3) (safety 0)))
(let ((fcn (chaos-form-expr chaos-expr))
(new-fun nil)
(new-term nil))
(if (or #-CMU(typep fcn 'compiled-function)
#+CMU(typep fcn 'function)
(not (and (consp fcn) (eq 'lambda (car fcn))
(equal '(compn) (cadr fcn)))))
(setf new-fun
`(lambda (compn) (funcall ',fcn (append ',teta compn))))
(let ((oldteta (cadr (nth 1 (nth 2 (nth 2 fcn)))))
(realfcn (cadr (nth 1 (nth 2 fcn)))))
(setf new-fun
`(lambda (compn)
(funcall ',realfcn (append ',(append teta oldteta) compn))))))
(setf new-term (make-bconst-term *chaos-value-sort*
(list '|%Chaos|
new-fun
(chaos-original-expr chaos-expr))))
new-term))
;;; SUBSTITUTION-IMAGE* sigma term
;;; Returns the image of term under sigma. Like substitution-image, but
;;; changing bound variables as necessary in the result to prevent variables in the
;;; range of sigma from being captured by a quantifier in term. Also renames all bound
;;; variables in the image of term under sigma (by replacing them by constants).
;;; To preserve shared subterms, returns t itself, and not a copy, if the image is the
;;; same as t.
;;; * TODO *
;;;
;; NO COPY of Term is done.
(defun substitution-image-no-copy (sigma term &optional (subst-pconst nil))
(declare (type list sigma)
(type term term)
(optimize (speed 3) (safety 0))
(values t))
(let ((im nil))
;; '-image-slow' because the use case often distructively changes terms.
(cond ((term-is-variable? term)
(when (setq im (variable-image-slow sigma term))
(term-replace term im)))
((term-is-constant? term)
(when subst-pconst
(when (setq im (variable-image-slow sigma term))
(term-replace term im))))
(t (dolist (s-t (term-subterms term))
(substitution-image-no-copy sigma s-t subst-pconst))))
term))
;;; CANONICALIZE-SUBSTITUTION
;;;
(defun substitution-can (s)
(declare (type list s)
(optimize (speed 3) (safety 0))
(values list))
(sort (copy-list s)
#'(lambda (x y) ;two substitution items (var . term)
(declare (type list x y))
(string< (the simple-string (string (variable-name (car x))))
(the simple-string (string (variable-name (car y))))))))
(defun substitution-simple-image (teta term)
(declare (type list teta)
(type term term)
(optimize (speed 3) (safety 0)))
(macrolet ((assoc% (_?x _?y)
`(let ((lst$$ ,_?y))
(loop
(when (null lst$$) (return nil))
(when (eq ,_?x (caar lst$$)) (return (car lst$$)))
(setq lst$$ (cdr lst$$))))))
(cond ((term-is-variable? term)
(let ((im (cdr (assoc% term teta))))
(if im im term)))
((term-is-builtin-constant? term)
(make-bconst-term (term-sort term)
(term-builtin-value term)))
(t (make-applform (method-coarity (term-head term))
(term-head term)
(mapcar #'(lambda (stm)
(substitution-simple-image teta stm))
(term-subterms term)))))))
;;; **************************
;;; WITH-VARIABLE-AS-CONSTANT------------------------------------------------
;;; VARIABLES <-> CONSTANTS
;;; **************************
;;; if T variables are treated as constants
;;; default is nil
(defvar *variable-as-constant* nil)
(defun make-pconst-from-var (var)
(declare (type term var)
(optimize (speed 3) (safety 0)))
(let ((name (variable-name var))
(print-name (variable-print-name var))
(sort (variable-sort var))
(unique-marker (gensym))
(pc-name nil)
(pc-pname nil))
(declare (type symbol name unique-marker pc-name pc-pname print-name)
(type sort* sort))
(setq pc-name (intern (concatenate 'string "`" (string unique-marker) "-" (string name))))
(if print-name
(setq pc-pname (intern (concatenate 'string "`" (string print-name))))
(setq pc-pname pc-name))
(make-pconst-term sort pc-name pc-pname)))
(defun variables->pconstants (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(macrolet ((substitution-add (_sigma _var _term)
`(cons (cons ,_var ,_term) ,_sigma)))
(let ((vars (term-variables term))
(subst nil)
(rsubst nil))
(dolist (var vars)
(let ((pc (make-pconst-from-var var)))
(setq subst (substitution-add subst var pc))
(setq rsubst (substitution-add rsubst pc var))))
(setq rsubst (copy-tree rsubst)) ; because substitution-image-no-copy
; destructively changes given term
(substitution-image-no-copy subst term)
rsubst)))
(defun revert-pconstants (term rsubst)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(substitution-image-no-copy rsubst term :subst-pconstance)
term)
;;; do some computation with term within a env
(defmacro with-variable-as-constant ((_term_) &body body)
(once-only (_term_)
`(if *variable-as-constant*
(let ((_rsubst (variables->pconstants ,_term_)))
(progn
(block with-variable-as-constant
,@body)
(revert-pconstants ,_term_ _rsubst)
,_term_))
(progn
(block with-variable-as-it-is
,@body)
,_term_))))
;;; ****************
;;; ILL FORMED TERMS___________________________________________________________
;;; ****************
;;; TERM is ill defined if it has a sort equal to or less than *syntax-error-sort*.
(defun term-is-an-error (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(and (term? term)
(let ((sort (term-sort term)))
(and (not (sort= *bottom-sort* sort))
(sort<= sort *syntax-err-sort* *chaos-sort-order*)))))
;;; Returns true iff the term is application form and has error-method
;;; as its top.
;;;
(defun term-head-is-error (tm)
(declare (type term tm)
(values (or null t)))
(let ((body (term-body tm)))
(and (term$is-application-form? body)
(method-is-error-method (appl$head body)))))
;;; Returns true iff the term is application form and has user defined
;;; error method as its top.
;;;
(defun term-head-is-user-defined-error (tm)
(declare (type term tm)
(values (or null t)))
(and (term-is-application-form? tm)
(method-is-user-defined-error-method (term-head tm))))
;;; TERM-IS-REALLY-WELL-DEFINED tm
;;; returns t iff
;;; (1) the term tm is not ill defined (in terms of `term-is-an-error')
;;; nor its head method is not a error-method
;;; AND
;;; (2) all of the subterms are TERM-IS-REALY-WELL-DEFINED
;;;
(defun term-is-really-well-defined (term)
(declare (type term term)
(values (or null t)))
(if (term-is-an-error term)
nil
(if (term-is-applform? term)
(if (method-is-error-method (term-head term))
nil
(dolist (sub (term-subterms term) t)
(unless (term-is-really-well-defined sub)
(return nil))))
t)))
;;; creats ill-formed terms
;;;
(defun make-directly-ill-term (head subterms)
(declare (type method head)
(type list subterms)
(values term))
(make-applform *type-err-sort* head subterms))
(defun make-inheritedly-ill-term (head subterms)
(declare (type method head)
(type list subterms)
(values term))
(make-applform *type-err-sort* head subterms))
;;; TERM-ERROR-OPERATORS&VARIABLES
;;; returns the list of error operators contained in term.
;;;
(defun term-error-operators&variables (term &optional vars-also)
(declare (type term term)
(type (or null t) vars-also)
(values list))
(let ((res (cons nil nil)))
(gather-error-methods-and-variables term res vars-also)
(car res)))
(defun gather-error-methods-and-variables (term res vars-also)
(declare (type term term)
(type list res)
(type (or null t) vars-also)
(values list))
(if (term-is-application-form? term)
(let ((head (term-head term)))
(if (method-is-error-method head)
(progn
(pushnew head (car res) :test #'eq)
(dolist (sub (term-subterms term))
(gather-error-methods-and-variables sub res vars-also)))
(if t ;; (method-is-universal* head)
(dolist (sub (term-subterms term))
(gather-error-methods-and-variables sub res vars-also)))))
(if (and vars-also (term-is-variable? term))
(when (err-sort-p (variable-sort term))
(pushnew term (car res) :test #'eq)))))
;;; test if a appl term contains error-method.
(defun term-contains-error-method (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(let ((body (term-body term)))
(when (term$is-application-form? body)
(or (method-is-error-method (appl$head body))
(some #'term-contains-error-method (term$subterms body))))))
;;; test if a appl form contains user defined error-method.
(defun term-contains-user-defined-error-method (term)
(declare (type term term)
(values (or null t)))
(and (term-is-application-form? term)
(or (method-is-user-defined-error-method (term-head term))
(some #'term-contains-user-defined-error-method
(term-subterms term)))))
;;; test if a appl form contains match-operator(:=).
(defun term-contains-match-op (term)
(declare (type term term)
(values (or null t)))
(and (term-is-application-form? term)
(or (method= *bool-match* (term-head term))
(some #'term-contains-match-op
(term-subterms term)))))
;;; test if a appl form contains search predicate which may
;;; introduce new variables
(defun term-contains-sp-sch-predicate (term)
(and (term-is-application-form? term)
(or (eq (method-module (term-head term)) *rwl-module*)
(some #'term-contains-sp-sch-predicate
(term-subterms term)))))
;;; ****************
;;; RECOMPUTING SORT____________________________________________________________
;;; ****************
;;; UPDATE-LOWEST-PARSE : TERM -> TERM'
;;; update sort of the term, possibly head method may change.
;;;
(defun set-if-then-else-sort (term &optional (so *current-sort-order*))
(when (eq (term-head term)
*bool-if*)
(let ((arg2 (term-arg-2 term))
(arg3 (term-arg-3 term)))
(unless (is-in-same-connected-component (term-sort arg2)
(term-sort arg3)
so)
(with-output-chaos-error ('incompatible-sorts)
(princ "2nd. and 3rd. arguments of if_then_else_fi must be of the same sort.")))
(update-lowest-parse arg2)
(update-lowest-parse arg3)
(if (sort<= (term-sort arg2) (term-sort arg3))
(setf (term-sort term) (term-sort arg3))
(setf (term-sort term) (term-sort arg2)))))
)
(defun select-if-then-least (ifs &optional (so *current-sort-order*))
(unless (cdr ifs) (return-from select-if-then-least ifs))
(dolist (x ifs)
(set-if-then-else-sort x so))
(let ((result (car ifs)))
(dolist (ift (cdr ifs))
(if (sort< (term-sort ift) (term-sort result) so)
(setq result ift)
(unless (is-in-same-connected-component (term-sort ift) (term-sort result) so)
(return-from select-if-then-least ifs))))
(list result)))
(declaim (special *update-lowest-parse-in-progress*))
(defvar *update-lowest-parse-in-progress* nil)
(defvar *do-assoc-arrangement* t)
(defun update-lowest-parse (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(let ((body (term-body term))
(assoc-applied nil))
(unless (or (pvariable-term? term) (term-is-an-error term))
(when (term-is-application-form? term)
(let ((ts (term-sort term))
(mso (method-coarity (term-head term))))
(when (sort< mso ts)
(when *term-debug*
(with-output-chaos-warning ()
(format t "something is bad, sort of the term is bigger than top method's coarity.")
(print-next)
(format t "Coarity: ")
(print-sort-name mso *current-module*)
(print-next)
(term-print-with-sort term)))
(setf (term-sort term) mso)
(when *term-debug*
(format t "~&[ULP] --> ")
(term-print-with-sort term)))))
(if (term$is-builtin-constant? body)
;; built-in constant term
(let* ((isrt (term$sort body))
(cm (get-object-context isrt))
(so (if cm
(module-sort-order cm)
(with-output-chaos-error ('internal-error)
(format t "Internal Error, No context module [ULP]."))))
(val (term$builtin-value body)))
(declare (type sort-order so)
(type sort* isrt)
(type t val))
(let ((subs (subsorts isrt so))
(srt isrt))
(declare (type list subs)
(type sort* srt))
(dolist (s subs)
(declare (type sort* s))
(if (and (sort< s srt so)
(sort-is-builtin s)
(bsort-term-predicate s)
(funcall (bsort-term-predicate s) val))
(setq srt s)))
(setf (term$sort body) srt)
term))
;; application form
(let* ((head (appl$head body))
(mod (get-object-context (method-operator head)))
(son nil)
(t1 nil)
(t2 nil)
(sort-order (module-sort-order mod))
(new-head nil))
(declare (type method head)
(type module mod))
;; ----------------------------
;; special case if_then_else_fi
;; ----------------------------
(when (eq (term-head term) *bool-if*)
(set-if-then-else-sort term)
(return-from update-lowest-parse term))
;; --------------------------
;; "standard" morphism rules
;; --------------------------
(when *term-debug*
(format t "~&[ULP] given term =====================~% ")
(term-print-with-sort term)
(format t "~&[ULP] current = ")
(print-chaos-object head))
(setq new-head
(lowest-method head
(mapcar #'(lambda (x)
(declare (type term x))
(term-sort x))
(term$subterms body))
mod))
(when *term-debug*
(format t "~&[ULP] new = ")
(print-chaos-object new-head)
(untrace))
;;
(when (not (eq head new-head))
(change-head-operator term new-head)
(setf (term-sort term) (method-coarity new-head))
(mark-term-as-not-reduced term)
;; (reset-reduced-flag term) ; ????
(when *term-debug*
(format t "~&[ULP] head operator was changed =======")))
;;
(setq head new-head)
;;
(when (and (method-is-associative head)
(method-is-commutative head))
(let ((subs (gather-term-ac-leaf-ordered term)))
(when *term-debug*
(dolist (t1 subs)
(format t "~%sub: ")
(term-print-with-sort t1)))
(term-replace term
(make-right-assoc-normal-form-with-sort-check (term-head term) subs))
(when *term-debug*
(format t "~%[ULP] AC:~%")
(print-term-tree term t))))
(when (and (method-is-associative head) *do-assoc-arrangement*)
;; &&&& the following transformation tends to put
;; term into standard form even when sort doesn't decrease.
(when (and (not (or (pvariable-term-body? (setq son (term-body
(term$arg-1 body))))
(term$is-builtin-constant? son)))
(method-is-associative-restriction-of (appl$head son) head)
(is-in-same-connected-component (term-sort (setq t1 (term$arg-2 son)))
(term-sort (setq t2 (term$arg-2 body)))
sort-order))
(cond ((sort< (term-sort t2)
(term-sort (term$arg-1 son))
sort-order)
(when *term-debug*
(format t "~&[ULP] ASSOC1-1")
(print-term-tree term t))
;; we are in the following configuration
;; fs' -> fs'
;; fs' s s' fs
;; s' s s s
;; so:
(setf (term$subterms body)
(list (term$arg-1 son)
(update-lowest-parse (make-term-with-sort-check-bin head (list t1 t2)))))
(when *term-debug*
(format t "~%==>")
(print-term-tree term t))
(setq assoc-applied t))
((and (method-is-commutative head)
(sort< (term-sort t2)
(term-sort (term$arg-2 son))
sort-order))
(when *term-debug*
(format t "~&[ULP] ASSOC 1-2")
(print-term-tree term t))
(setf (term$subterms body)
(list (term$arg-2 son)
(update-lowest-parse
(make-term-with-sort-check-bin head (list (term$arg-1 son)
t2)))))
(when *term-debug*
(format t "~%==>")
(print-term-tree term t))
(setq assoc-applied t))))
;; would only like to do the following if the
;; sort really decreases
(when (and (not (or (pvariable-term-body? (setq son (term-body
(term$arg-2 body))))
(term$is-builtin-constant? son)))
(method-is-associative-restriction-of (appl$head son) head)
(is-in-same-connected-component (term-sort (setq t1 (term$arg-1 body)))
(term-sort (setq t2 (term$arg-1 son)))
sort-order))
(cond ((sort< (term-sort t1) (term-sort (term$arg-2 son)) sort-order)
;; we are in the following configuration
;; fs' -> fs'
;; s fs' fs s'
;; s s' s s
;; so:
(when *term-debug*
(format t "~%[ULP] ASSOC 2-1")
(print-term-tree term t))
(setf (term-subterms term)
(list (update-lowest-parse
(make-term-with-sort-check-bin head (list t1 t2)))
(term$arg-2 son)))
(setq assoc-applied t)
(when *term-debug*
(print-term-tree term t)))
((and (method-is-commutative head)
(sort< (term-sort t1) (term-sort (term$arg-1 son)) sort-order))
(when *term-debug*
(format t "~&[ULP] ASSOC 2-2")
(print-term-tree term t))
(setf (term-subterms term)
(list (update-lowest-parse
(make-term-with-sort-check-bin head (list t1 (term$arg-2 son))))
(term$arg-1 son)))
(when *term-debug*
(print-term-tree term t))
;; we mark
(setq assoc-applied t)))))
;; necesary to have true lowest parse
(when (method-is-commutative head)
(let* ((t1 (term$arg-1 body))
(t2 (term$arg-2 body))
(alt-op (lowest-method head
(list (term-sort t2) (term-sort t1)))))
(when (not (eq alt-op head))
(term-replace term
(make-term-with-sort-check-bin alt-op (list t2 t1))))))
(mark-term-as-lowest-parsed term)
(values term assoc-applied))))))
;;; *********************************
;;; EQUALITY AMONG TERMS WITH/WITHOUT
;;; CONSIDERING EQUATIONAL THEORY -------------------------------------------
;;; *********************************
;;; NOTE: compare term-head with eq is NOT dangerous.
(defmacro is-true? (!_obj)
`(eq (term-head ,!_obj) *bool-true-meth*))
(defmacro is-false? (!_obj)
`(eq (term-head ,!_obj) *bool-false-meth*))
;;; TERM-IS-ZERO-FOR-METHOD : TERM METHOD -> BOOL
;;; returns t if the term TERM is identity of method METHOD.
;;;
(defun term-is-zero-for-method (term meth)
(declare (type term term)
(type method meth)
(values (or null t)))
(let* ((th (method-theory meth))
(zero (car (theory-zero th))))
(declare (type op-theory th)
(type (or null term) zero))
(if zero ;; term
(term-is-similar? term zero)
nil)))
;;; TERM-OP-CONTAINS-THEORY
;;; returns t iff some op has equational theory
;;;
(defun term-op-contains-theory (term)
(if (term-is-application-form? term)
(let ((th (method-theory-info-for-matching (term-head term))))
(or (not (theory-info-empty-for-matching th))
(some #'(lambda (sub) (term-op-contains-theory sub))
(term-subterms term))))
nil))
;;; TERM-IS-CONGRUENT? : TERM TERM -> BOOL
;;; returns true if two term are in the same cogruent class.
;;; two terms are taken literally, and no equational theory is considered.
;;;
(defun term-is-congruent? (t1 t2)
(declare (type term t1 t2)
(optimize (speed 3) (safety 0)))
(let ((t1-body (term-body t1))
(t2-body (term-body t2)))
(cond ((term$is-variable? t1-body)
(or (eq t1 t2)
(and (term$is-variable? t2-body)
(eq (variable$name t1-body) (variable$name t2-body))
(sort= (variable$sort t1-body) (variable$sort t2-body)))))
((term$is-variable? t2-body) nil)
((term$is-application-form? t1-body)
(and (term$is-application-form? t2-body)
(if (method-is-same-qual-method (appl$head t1-body)
(appl$head t2-body))
(let ((sl1 (appl$subterms t1-body))
(sl2 (appl$subterms t2-body)))
(loop (when (null sl1) (return (null sl2)))
(unless (term-is-congruent? (car sl1) (car sl2))
(return nil))
(setf sl1 (cdr sl1)
sl2 (cdr sl2))))
nil)))
((term$is-builtin-constant? t1-body)
(term$builtin-equal t1-body t2-body))
((term$is-builtin-constant? t2-body) nil)
((term$is-lisp-form? t1-body)
(and (term$is-lisp-form? t2-body)
(equal (term$lisp-function t1-body)
(term$lisp-function t2-body))))
((term$is-lisp-form? t2-body) nil)
(t (break "Panic! unknown type of term to term-is-congruent?")))))
;;; TERM-EQUATIONAL-EQUAL : TERM TERM -> BOOL
;;; return t iff the two terms are equationally equal.
;;; t1,t2 both taken "literally",i.e. no normalization is preformed on terms.
;;;
(defvar *used==* nil)
(defun match-with-empty-theory (t1 t2)
(declare (type term t1 t2)
(optimize (speed 3) (safety 0)))
(or (term-eq t1 t2)
(cond ((term-is-applform? t1)
(unless (term-is-applform? t2)
(setq *used==* t)
(return-from match-with-empty-theory nil))
;;
(let ((head1 (term-head t1))
(head2 (term-head t2))
(subs1 (term-subterms t1))
(subs2 (term-subterms t2)))
(declare (type list subs1 subs2)
(type method head1 head2))
(if (null subs1)
(and (null subs2)
(eq head1 head2))
(if (method-is-of-same-operator head1 head2)
(do* ((sub1 subs1 (cdr sub1))
(sub2 subs2 (cdr sub2))
(st1 nil)
(st2 nil))
((null sub1) t)
(setq st1 (car sub1))
(setq st2 (car sub2))
(cond ((term-is-applform? st1)
(unless
(and (term-is-applform? st2)
(if (theory-info-empty-for-matching
(method-theory-info-for-matching
(term-head st1)))
(match-with-empty-theory st1 st2)
(term-equational-equal st1 st2)))
(return nil)))
((term-is-variable? st1)
(setq *used==* t)
(unless (variable= st1 st2) (return nil)))
((term-is-variable? st2)
(setq *used==* t)
(return nil))
((term-is-builtin-constant? st1)
(unless (term-builtin-equal st1 st2) (return nil)))
(t
(break "Panic: unknown type of term"))))
nil))))
((term-is-builtin-constant? t1)
(term-builtin-equal t1 t2))
((term-is-builtin-constant? t2) nil))))
(defun term-equational-equal (t1 t2)
(declare (type term t1 t2)
(optimize (speed 3) (safety 0)))
(or (term-eq t1 t2)
(let ((t1-body (term-body t1))
(t2-body (term-body t2)))
(cond ((term$is-applform? t1-body)
(let ((f1 (appl$head t1-body)))
(if (theory-info-empty-for-matching
(method-theory-info-for-matching f1))
(match-with-empty-theory t1 t2)
(E-equal-in-theory (method-theory f1) t1 t2))))
((term$is-builtin-constant? t1-body)
(term$builtin-equal t1-body t2-body))
((term$is-builtin-constant? t2-body) nil)
((term$is-variable? t1-body)
(setq *used==* t)
(eq t1-body t2-body))
((term$is-variable? t2-body)
(setq *used==* t)
nil)
((term$is-lisp-form? t1-body)
(and (term$is-lisp-form? t2-body)
(equal (term$lisp-code-original-form t1-body)
(term$lisp-code-original-form t2-body))))
(t (break "term-equational-equal: not-implemented ~s" t1))))))
;;; TERM-IS-SIMILAR? : TERM TERM -> BOOL
;;; returns true iff two terms are similar, i.e., syntactically equal.
;;; (no consideration of equational theory).
;;;
(defun term-is-similar? (t1 t2)
(declare (type term t1)
(type (or term null) t2)
(optimize (speed 3) (safety 0)))
(or (term-eq t1 t2)
(if t2
(let ((t1-body (term-body t1))
(t2-body (term-body t2)))
(cond ((term$is-application-form? t1-body)
(and (term$is-application-form? t2-body)
(if (method-w= (appl$head t1-body) (appl$head t2-body))
(let ((subs1 (term$subterms t1-body))
(subs2 (term$subterms t2-body)))
(loop
;; (when (null subs1) (return (null subs2)))
(when (null subs1) (return t))
(unless (term-is-similar? (car subs1) (car subs2))
(return nil))
(setq subs1 (cdr subs1) subs2 (cdr subs2))))
nil)))
((term$is-variable? t1-body)
(and (term$is-variable? t2-body)
(sort= (variable$name t1-body)
(variable$name t2-body))))
((term$is-variable? t2-body) nil)
((term$is-builtin-constant? t1-body)
(term$builtin-equal t1-body t2-body))
((term$is-builtin-constant? t2-body) nil)
((term$is-lisp-form? t1-body)
(and (term$is-lisp-form? t2-body)
(equal (term$lisp-form-original-form t1-body)
(term$lisp-form-original-form t2-body))))
((term$is-lisp-form? t2-body) nil)
(t (break "unknown type of term." )))))))
;;; ***************************************
;;; ACCESSORS & CONSTRUCTORS of APPLICATION
;;; FORM CONSIDERING EQUATIONAL THEORY -------------------------------------
;;; ***************************************
;;; LIST-ASSOC-SUBTERMS : TERM METHOD -> List[Term]
;;; returns the flattened list of subterms of A (associative) operator.
;;; Ex. if f and g are A(ssociative), then
;;; f(f(x,g(a,b)),f(a,h(c))) --> (x, g(a,b), a, h(c))
;;; * NOTE *
;;;TERM must be a application form with associative method METHOD as top.
#+GCL
(defun list-assoc-subterms (term method)
(declare (type term term)
(type method method)
(optimize (speed 3) (safety 0)))
(let ((res (list-assoc-subterms-aux term method nil)))
res))
(defun list-assoc-subterms-aux (term method lst)
(declare (type term term)
(type method method)
(type list lst))
(let ((body (term-body term)))
(if (term$is-application-form? body)
(progn
(if (method-is-of-same-operator (appl$head body) method)
(list-assoc-subterms-aux (term$arg-1 body) method
(list-assoc-subterms-aux (term$arg-2 body)
method
lst))
(cons term lst)))
(cons term lst))))
#-GCL
(defun list-assoc-subterms (term method)
(declare (type term term)
(type method method)
(optimize (speed 3) (safety 0)))
(labels ((list-a-subs (term method lst)
(declare (type term term)
(type method method)
(type list lst)
(values list))
(let ((body (term-body term)))
(if (term$is-application-form? body)
(progn
(if (method-is-of-same-operator (appl$head body) method)
(list-a-subs (term$arg-1 body) method
(list-a-subs (term$arg-2 body)
method
lst))
(cons term lst)))
(cons term lst)))))
;;
(list-a-subs term method nil)))
;;; LIST-ASSOC-ID-SUBTERMS : TERM METHOD -> List[Term]
;;; returns the flattened list of subterms of AZ operator.
;;; * NOTE *
;;; TERM must be a application form with AZ method MEHTOD as top.
(defun list-assoc-id-subterms (term method)
(declare (type term term)
(type method method)
(optimize (speed 3) (safety 0)))
(list-assoc-id-subterms-aux term method nil))
(defun list-assoc-id-subterms-aux (term method lst)
(declare (type term term)
(type method method)
(type list lst)
(optimize (speed 3) (safety 0)))
(let ((body (term-body term)))
(if (term$is-variable? body)
(cons term lst)
(if (term-is-zero-for-method term method)
lst
(if (term$is-application-form? body)
(if (method-is-of-same-operator (appl$head body) method)
(list-assoc-id-subterms-aux (term$arg-1 body)
method
(list-assoc-id-subterms-aux
(term$arg-2 body)
method
lst))
(cons term lst))
(cons term lst))))))
#+:other
(defun list-assoc-id-subterms (term method)
(declare (type term term)
(type method method)
(optimize (speed 3) (safety 0)))
(labels ((list-a-subs (term method lst)
(declare (type term term)
(type method method)
(type list lst)
(values list))
(let ((body (term-body term)))
(if (term$is-variable? body)
(cons term lst)
(if (term-is-zero-for-method term method)
lst
(if (term$is-application-form? body)
(if (method-is-of-same-operator (appl$head body) method)
(list-a-subs (term$arg-1 body)
method
(list-a-subs
(term$arg-2 body)
method
lst))
(cons term lst))
(cons term lst)))))))
;;
(list-a-subs term method nil)))
;;; LIST-AC-SUBTERMS : TERM METHOD -> List[Term]
;;; returns the flattened list of subterms of AC (associative&commutative)
;;; operator.
;;; * NOTE *
;;; TERM must be an application form with AC method METHOD as top.
#+GCL
(defun list-AC-subterms (term method)
(declare (type term term)
(type method method))
(list-ac-subterms-aux term method nil))
(defun list-AC-subterms-aux (term method lst)
(declare (type term term)
(type method method)
(type list lst))
(let ((body (term-body term)))
(if (term$is-application-form? body)
(if (method-is-ac-restriction-of (appl$head body) method)
(list-ac-subterms-aux (term$arg-1 body)
method
(list-ac-subterms-aux (term$arg-2 body)
method
lst))
(cons term lst))
(cons term lst))))
#-GCL
(defun list-AC-subterms (term method)
(declare (type term term)
(type method method)
(optimize (speed 3) (safety 0)))
(labels ((list-subs (term method lst)
(declare (type term term)
(type method method)
(type list lst))
(let ((body (term-body term)))
(if (term$is-application-form? body)
(if (method-is-ac-restriction-of (appl$head body) method)
(list-subs (term$arg-1 body)
method
(list-subs (term$arg-2 body)
method
lst))
(cons term lst))
(cons term lst)))))
;;
(list-subs term method nil)))
;;;
(defun gather-term-ac-leaf-ordered (term)
(let ((subs (list-ac-subterms term (term-head term))))
(with-in-module ((get-context-module))
(sort subs #'(lambda (x y) (sort<= (term-sort x) (term-sort y) *current-sort-order*))))))
;;; LIST-ACZ-SUBTERMS term method -> list-of-temrs
;;; returns the flattened list of subterms of ACZ (associative&commutative with
;;; identity) operator.
;;; * NOTE *
;;; TERM must be an application form with ACZ method METHOD as top.
#+GCL
(defun list-ACZ-subterms (term meth)
(declare (type term term)
(type method meth))
(list-ACZ-subterms-aux term meth nil))
(defun list-ACZ-subterms-aux (term method lst)
(declare (type term term)
(type method method)
(type list lst))
(let ((body (term-body term)))
(if (term$is-variable? body)
(cons term lst)
(if (term-is-zero-for-method term method)
lst
(if (term$is-application-form? body)
(if (method-is-ac-restriction-of (appl$head body) method)
;; then the operator is binary of course
(list-ACZ-subterms-aux (term$arg-1 body)
method
(list-ACZ-subterms-aux
(term$arg-2 body) method lst))
(cons term lst))
(cons term lst))))))
#-GCL
(defun list-ACZ-subterms (term meth)
(declare (type term term)
(type method meth)
(optimize (speed 3) (safety 0)))
(labels ((list-subs (term method lst)
(declare (type term term)
(type method method)
(type list lst))
(let ((body (term-body term)))
(if (term$is-variable? body)
(cons term lst)
(if (term-is-zero-for-method term method)
lst
(if (term$is-application-form? body)
(if ;; (method-is-ac-restriction-of (appl$head body)
;; method)
(method-is-of-same-operator (appl$head body)
method)
;; then the operator is binary of course
(list-subs (term$arg-1 body)
method
(list-subs (term$arg-2 body)
method
lst))
(cons term lst))
(cons term lst)))))))
;;
(list-subs term meth nil)))
;;; MAKE-RIGHT-ASSOC-NORMAL-FORM : method subterms -> term
;;; construct an application form term with subterms are organized in right
;;; associative way.
;;; * NOTE *
;;; METHOD must be righ-associative method.
;;;
(defun make-right-assoc-normal-form (meth subterms)
(declare (type method meth)
(type list subterms)
(optimize (speed 3) (safety 0)))
(let ((res (if (= (length subterms) 2)
(make-applform (method-coarity meth) meth subterms)
(make-applform (method-coarity meth)
meth
(list (car subterms)
(make-right-assoc-normal-form meth (cdr subterms)))))))
(when *term-debug*
(format t "~& -- new term = ")(print-term-tree res) (force-output))
res))
;;; MAKE-RIGHT-ASSOC-NORMAL-FORM-WITH-SORT-CHECK : method subterms -> term
;;; same as make-right-assoc-normal-form, but possibly assign lower sorts.
;;; * NOTE *
;;; METHOD must be righ-associative method.
(defun make-right-assoc-normal-form-with-sort-check (meth subterms)
(declare (type method meth)
(type list subterms)
(optimize (speed 3) (safety 0)))
(if (= 1 (length subterms))
(car subterms)
(if (= 2 (length subterms))
(make-term-with-sort-check-bin meth subterms)
(make-term-with-sort-check-bin
meth
(list (car subterms)
(make-right-assoc-normal-form-with-sort-check meth
(cdr subterms)))))))
;;; RIGHT-ASSOCIATIVE-NORMAL-FORM : TERM -> TERM
;;; Reconstruct the subterms to be right associative iff the head operator has
;;; associative theory.
;;; It is very important to realize that the associative normal
;;; form of a term must be a correct term in order to use the standard
;;; operations of replacement and "parcours". For example the associative
;;; normal form of 1+((2+2)+1) must be (1+(2+(2+1))) and NOT (+ (1 2 2 1))
;;; which represent the associative class.
(defun right-associative-normal-form (t1)
(declare (type term t1)
(optimize (speed 3) (safety 0)))
(let ((body (term-body t1)))
(cond ((term$is-constant? body) t1)
((term$is-variable? body) t1)
(t (let ((h-op (appl$head body)))
(cond ((theory-contains-associativity (method-theory h-op))
(make-right-assoc-normal-form-with-sort-check
h-op
(mapcar #'right-associative-normal-form
(list-assoc-subterms t1 h-op))))
(t (make-applform (method-coarity h-op)
h-op
(mapcar #'right-associative-normal-form
(term$subterms body))))))))))
;;; RIGHT-ASSOCIATIVE-ID-NORMAL-FORM : term -> term
;;; Reconstruct the subterms to be right associative considering identity, iff
;;; the head operator has associative theory with identity.
;;; * NOTE *
;;; head method must be associaitive method with identity.
(defun right-associative-id-normal-form (t1)
(declare (type term t1)
(optimize (speed 3) (safety 0)))
(if (term-is-applform? t1)
(let ((meth (term-head t1)))
(if (theory-contains-az (method-theory meth))
(make-right-assoc-normal-form
meth
(mapcar #'right-associative-id-normal-form
(list-assoc-id-subterms t1 meth)))
t1))
t1))
;;; ID-NORMAL-FORM : term -> term
;;; returns the term simplified by considering identity theory among subterms.
;;;
(defun id-normal-form (t1)
(declare (type term t1)
(optimize (speed 3) (safety 0)))
(let ((body (term-body t1)))
(cond ((term$is-constant? body) t1)
((term$is-variable? body) t1)
(t (let ((meth (appl$head body)))
(cond ((term-is-zero-for-method (term$arg-1 body) meth)
(id-normal-form (term$arg-2 body)))
((term-is-zero-for-method (term$arg-2 body) meth)
(id-normal-form (term$arg-1 body)))
(t t1)))))))
;;; MAKE-RIGHT-ASSOC-ID-NORMAL-FORM : method subterms -> term
;;;
(defun make-right-assoc-id-normal-form (method subterms)
(declare (type method method)
(type list subterms)
(optimize (speed 3) (safety 0)))
(make-right-assoc-normal-form method (filter-zero method subterms)))
(defun filter-zero (method subterms)
(declare (type method method)
(type list subterms)
(optimize (speed 3) (safety 0)))
(when subterms
(if (term-is-zero-for-method (car subterms) method)
(filter-zero method (cdr subterms))
(cons (car subterms)
(filter-zero method (cdr subterms))))))
;;; **********
;;; TERM CPIER------------------------------------------------------------------
;;; **********
;;; TERM-COPY-AND-RETURNS-LIST-VARIABLES : term -> term List[variable]
;;;
(defun term-copy-and-returns-list-variables (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(multiple-value-bind (res list-new-var)
(copy-list-term-using-list-var (list term) nil)
(declare (type list res list-new-var))
(values (car res) list-new-var)))
(defun copy-list-term-using-list-var (term-list list-new-var &key (test #'variable-eq))
(declare (type list term-list list-new-var)
(optimize (speed 3) (safety 0)))
(let ((v-image nil)
(list-copied-term nil))
(values (mapcar #'(lambda (term)
(cond ((term-is-variable? term)
(if (setq v-image
(cdr (assoc term list-new-var :test test)))
v-image
(let ((new-var (variable-copy term)))
(declare (type term new-var))
(setf list-new-var (acons term new-var list-new-var))
new-var)))
((term-is-builtin-constant? term) term)
((term-is-lisp-form? term) term)
(t (multiple-value-setq (list-copied-term list-new-var)
(copy-list-term-using-list-var (term-subterms term)
list-new-var
:test test))
(make-applform (term-sort term)
(term-head term)
list-copied-term))))
term-list)
list-new-var)))
;;; COPY-TERM-USING-VARIABLE : term List[variable] -> term
;;;
(defun copy-term-using-variable (term list-new-var &optional (test #'variable-eq))
(declare (type term term)
(type list list-new-var)
(optimize (speed 3) (safety 0)))
(multiple-value-bind (res list-new-var-res)
(copy-list-term-using-list-var (list term) list-new-var :test test)
(declare (ignore list-new-var-res)
(type list res))
(car res)))
;;; *****************************
;;; CONSTRUCTORS OF NORMAL FORM
;;; CONSIDERING EQUATIONAL THEORY-----------------------------------------------
;;; *****************************
;;; THEORY-STANDARD-FORM : Term -> Term
;;; Compute the (empty)-normal form of the term "t" with respect to the axioms
;;; of the current theory. For example if the current theory is AC(+)Z(+,0) then
;;; it computes the normal form for the axioms x+0 -> x, 0+x -> x.
;;; May be modified if one adds a new theory. Be carefull with the potential
;;; extensions.
;;; *NOTE*
;;; TERM is supposed of the application form f(t1,...,tn).
;;;
(defun theory-standard-form (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(let ((body (term-body term)))
(if (term$is-application-form? body)
(let* ((f (appl$head body))
(subterms (mapcar #'theory-standard-form (term$subterms body)))
(th (method-theory f))
(theory-info (theory-info th))
(t1 nil)
(t2 nil))
(let ((val (cond ((theory-info-is-empty-for-matching theory-info)
(make-applform (method-coarity f) f subterms))
;; case x+0 -> x, 0+x -> x
((and (progn
(setq t1 (car subterms) t2 (cadr subterms))
(theory-zero th))
(let ((zero (car (theory-zero th))))
(cond ((term-is-similar? t1 zero) t2)
((term-is-similar? t2 zero) t1)))))
;; case x+x -> x
((or (theory-info-is-I theory-info)
(theory-info-is-CI theory-info))
(if (term-is-similar? t1 t2) t1))
;; It is more complex in the next cases because of
;; the presence of non trivial extensions
;; and of commutativity, so we refer to appropriate
;; procedure
((theory-info-is-AI theory-info)
(A-idempotent-normal-form f t1 t2))
((or (theory-info-is-ACI theory-info)
(theory-info-is-ACIZ theory-info))
(AC-idempotent-normal-form f t1 t2))
)))
(if val
val
(make-applform (method-coarity f) f subterms))))
term)))
(defun A-idempotent-normal-form (f t1 t2)
(declare (type method f)
(type term t1 t2)
(optimize (speed 3) (safety 0)))
(if (term-is-similar? t1 t2)
t1
(make-applform (method-coarity f) f (list t1 t2))))
(defun AC-idempotent-normal-form (f t1 t2)
(declare (type method f)
(type term t1 t2)
(optimize (speed 3) (safety 0)))
(if (term-is-similar? t1 t2)
t1
(make-applform (method-coarity f) f (list t1 t2))))
;;; **********
;;; MISC UTILS------------------------------------------------------------------
;;; **********
(defun get-term-all-methods (term ans)
(declare (type term term)
(type list ans)
(optimize (speed 3) (safety 0)))
(when (term-is-application-form? term)
(pushnew (term-head term) (cdr ans) :test #'eq)
(dolist (sub (term-subterms term))
(get-term-all-methods sub ans))))
(defun term-heads (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(let ((res (cons nil nil)))
(get-term-all-methods term res)
(cdr res)))
;;; synonym
(defmacro term-operators (term)
`(term-heads ,term))
(defun clean-term (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(if (term-is-application-form? term)
(make-applform (method-coarity (term-head term))
(term-head term)
(mapcar #'clean-term (term-subterms term)))
term))
(defun term-make-zero (method)
(declare (type method method)
(optimize (speed 3) (safety 0)))
(let ((zero (car (theory-zero (method-theory method)))))
(if zero
zero
nil)))
;;; SUPPLY-PCONSTANTS
;;;
(defun supply-pconstants (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(let ((target (simple-copy-term term)))
(declare (type term target))
(let ((vars (term-variables target)))
(unless vars (return-from supply-pconstants term))
(dolist (var vars target)
(term-replace var
(make-pconst-term (variable-sort var)
(variable-name var)
(variable-print-name var)))))))
;;; ***********************
;;; MISC PREDICATES ON TERM
;;; ***********************
(defun term-is-of-functional? (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(if (term-is-applform? term)
(not (method-is-behavioural (term-head term)))
t))
(defun term-is-of-behavioural? (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(if (term-is-applform? term)
(method-is-behavioural (term-head term))
nil))
(defun term-is-of-behavioural*? (term
&optional (opinfo-table *current-opinfo-table*))
(declare (type term term)
(optimize (speed 3) (safety 0)))
(if (term-is-applform? term)
(or (method-is-behavioural (term-head term))
(method-is-coherent (term-head term) opinfo-table))
nil))
(defun term-is-behavioural? (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(and (sort-is-hidden (term-sort term))
(or (term-is-constant? term)
(let ((head (term-head term)))
(or (method-is-behavioural head)
(method-is-coherent head))))))
(defun term-can-be-in-beh-axiom? (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(cond ((term-is-applform? term)
(if (eq (term-head term) *bool-if*)
(and (term-can-be-in-beh-axiom? (term-arg-2 term))
(term-can-be-in-beh-axiom? (term-arg-3 term)))
(and (if (find-if #'(lambda (x)
(sort-is-hidden x))
(mapcar #'(lambda (y) (term-sort y))
(term-subterms term)))
(or (method-is-behavioural (term-head term))
(method-is-coherent (term-head term)))
t)
(every #'term-can-be-in-beh-axiom? (term-subterms term)))))
(t t)))
(defun term-is-non-behavioural? (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(not (term-is-behavioural? term)))
;;; returns t iff given term is a constructor, i.e.,
;;; the root is a constrctor operator, or it is a term of built-in sort.
;;;
(defun term-is-constructor? (term)
(declare (type term term)
(optimize (speed 3) (safety 0)))
(or (term-is-builtin-constant? term)
(and (term-is-application-form? term)
(method-is-constructor? (term-head term)))))
;;; we sometimes need to make variables on the fly.-----------------------------
;;;
(declaim (type fixnum *var-num*))
(defvar *var-num*)
(let ((*var-num* 0))
(declare (type fixnum *var-num*))
(defun generate-variable (sort)
(declare (type sort* sort)
(optimize (speed 3) (safety 0))
(inline make-variable-term))
(make-variable-term sort
(intern (format nil "#Genvar-~d" (incf *var-num*)))))
(defun make-new-variable (name sort &optional (pname name))
(declare (type sort*)
(optimize (speed 3) (safety 0))
(inline make-variable-term))
(make-variable-term sort
(intern (format nil "~a-~d" name (incf *var-num*)))
pname))
(defun rename-variable (var)
(declare (type term var)
(optimize (speed 3) (safety 0))
(inline make-variable-term))
(make-variable-term (variable-sort var)
(intern (format nil "~a-~d"
(variable-name var)
(incf *var-num*)))))
)
;;; inspecting term --- for debugging -----------------------------------------
;;;
(defun inspect-term (term &optional (occur nil) (context *current-module*))
(flet ((print-occr ()
(format t " ~A" (if (null occur) "top" (reverse occur)))))
(with-in-module (context)
(print-next)
(format t "[NF=~a,LP=~a] " (term-is-reduced? term) (term-is-lowest-parsed? term))
(cond ((term-is-applform? term)
(print-chaos-object (term-head term))
(print-occr)
(dotimes (x (length (term-subterms term)))
(let ((*print-indent* (+ 2 *print-indent*)))
(inspect-term (term-arg-n term x) (cons (1+ x) occur)))))
((term-is-builtin-constant? term)
(term-print-with-sort term)
(print-occr))
(t (print-chaos-object term)
(print-occr))))))
;;;
;;; REPLACE-VARIABLES-WITH-TOC
;;;
(defun replace-variables-with-toc (term &optional (warn nil))
(declare (type term term)
(optimize (speed 3) (safety 0)))
(unless (term-is-applform? term)
(return-from replace-variables-with-toc term))
(let ((vars (term-variables term))
(subst nil))
(cond (vars
(dolist (var vars)
(unless (assoc var subst)
(let ((toc (make-pconst-term
(variable-sort var)
(intern (concatenate 'string "`" (string (variable-name var)))))))
(push (cons var toc) subst))))
(when (and warn (stringp warn))
(with-output-chaos-warning ()
(format t warn))
(format t "~%substitution: ")
(print-substitution subst))
(multiple-value-bind (res list-new-var-res)
(copy-list-term-using-list-var (list term) subst)
(declare (ignore list-new-var-res))
(car res)))
(t term))))
;;; canonicalize-variables
;;;
(defun canonicalize-variables (list-term module)
(declare (type list list-term)
(type module module)
(optimize (speed 3) (safety 0)))
(with-in-module (module)
(multiple-value-bind (list-copied-term list-new-var)
(copy-list-term-using-list-var list-term nil :test #'variable-equal)
(declare (ignore list-new-var))
list-copied-term)))
;;; print-term-struct
;;;
(defun print-term-struct (term module &optional (stream *standard-output*))
(with-in-module (module)
(let ((*standard-output* stream))
(print-next)
(cond ((term-is-applform? term)
(format t "~a" (method-name (term-head term)))
(dotimes (x (length (term-subterms term)))
(let ((*print-indent* (+ 2 *print-indent*)))
(print-term-struct (term-arg-n term x) module))))
((term-is-builtin-constant? term)
(term-print term))
(t (print-chaos-object term))))))
;;; SUBSTITUTION-IMAGE
;;; Returns sigma(t) and "true" iff the sort of "t" and "sigma(t)" are the same.
;;; A COPY of the term "t" is done and the sort information is updated.
;;;
(defun substitution-image (sigma term)
(declare (type list sigma)
(optimize (speed 3) (safety 0))
(type term term))
(let ((*consider-object* t))
(cond ((term-is-variable? term)
(let ((im (variable-image sigma term)))
(if im;; i.e. im = sigma(term)
(values im nil)
(values term t))))
((term-is-lisp-form? term)
(multiple-value-bind (new-term success)
(funcall (lisp-form-function term) sigma)
(if success
new-term
(throw 'rule-failure :fail-builtin))))
((term-is-chaos-expr? term)
(multiple-value-bind (new-term success)
(funcall (chaos-form-expr term) sigma)
(if success
new-term
(throw 'fule-failure :fail-builtin))))
((term-is-builtin-constant? term)
term) ; shold we copy?
(t (let ((l-result nil)
(modif-sort nil))
(dolist (s-t (term-subterms term))
(multiple-value-bind (image-s-t same-sort)
(substitution-image sigma s-t)
(unless same-sort (setq modif-sort t))
(push image-s-t l-result)))
(setq l-result (nreverse l-result))
(if modif-sort
(let ((term-image (make-term-with-sort-check (term-head term)
l-result)))
(values term-image
(sort= (term-sort term)
(term-sort term-image))))
(values (make-applform (term-sort term)
(term-head term)
l-result)
t)))))))
(defun substitution-image! (sigma term)
(declare (type list sigma)
(optimize (speed 3) (safety 0))
(type term term))
(let ((*consider-object* t))
(cond ((term-is-variable? term)
(let ((im (variable-image-slow sigma term)))
(if im;; i.e. im = sigma(term)
(values im nil)
(values term t))))
((term-is-lisp-form? term)
(multiple-value-bind (new-term success)
(funcall (lisp-form-function term) sigma)
(if success
new-term
(throw 'rule-failure :fail-builtin))))
((term-is-chaos-expr? term)
(multiple-value-bind (new-term success)
(funcall (chaos-form-expr term) sigma)
(if success
new-term
(throw 'fule-failure :fail-builtin))))
((term-is-builtin-constant? term) term) ; shold we copy?
(t (let ((l-result nil)
(modif-sort nil))
(dolist (s-t (term-subterms term))
(multiple-value-bind (image-s-t same-sort)
(substitution-image! sigma s-t)
(unless same-sort (setq modif-sort t))
(push image-s-t l-result)))
(setq l-result (nreverse l-result))
(if modif-sort
(let ((term-image (make-term-with-sort-check (term-head term)
l-result)))
(values term-image
(sort= (term-sort term)
(term-sort term-image))))
(values (make-applform (term-sort term)
(term-head term)
l-result)
t)))))))
(defun substitution-image-cp (sigma term)
(declare (type list sigma)
(optimize (speed 3) (safety 0))
(type term term))
(let ((*consider-object* t))
(cond ((term-is-variable? term)
(let ((im (variable-image sigma term)))
(if im;; i.e. im = sigma(term)
;; (values (simple-copy-term im) nil)
(values im nil)
(values term t))))
((term-is-lisp-form? term)
(multiple-value-bind (new-term success)
(funcall (lisp-form-function term) sigma)
(if success
new-term
(throw 'rule-failure :fail-builtin))))
((term-is-chaos-expr? term)
(multiple-value-bind (new-term success)
(funcall (chaos-form-expr term) sigma)
(if success
new-term
(throw 'fule-failure :fail-builtin))))
((term-is-builtin-constant? term) term) ; shold we copy?
(t (let ((l-result nil)
(modif-sort nil))
(dolist (s-t (term-subterms term))
(multiple-value-bind (image-s-t same-sort)
(substitution-image-cp sigma s-t)
(unless same-sort (setq modif-sort t))
(push image-s-t l-result)))
(setq l-result (nreverse l-result))
(if modif-sort
(let ((term-image (make-term-with-sort-check (term-head term)
l-result)))
(values term-image
(sort= (term-sort term)
(term-sort term-image))))
(values (make-applform (term-sort term)
(term-head term)
l-result)
t)))))))
(defun substitution-partial-image (sigma term)
(declare (type list sigma)
(type term term)
(optimize (speed 3) (safety 0)))
(let ((*consider-object* t))
(cond ((term-is-variable? term)
(let ((im (variable-image sigma term)))
(if im
(values im nil)
(values term t))))
((term-is-lisp-form? term)
(substitution-compose sigma term)
)
((term-is-chaos-expr? term)
(substitution-compose-chaos sigma term))
((term-is-builtin-constant? term) term)
((term-is-applform? term)
(let ((l-result nil) (modif-sort nil))
(dolist (s-t (term-subterms term))
(multiple-value-bind (image-s-t same-sort)
(substitution-partial-image sigma s-t)
(unless same-sort (setq modif-sort t))
(push image-s-t l-result)))
(setq l-result (nreverse l-result))
(if modif-sort
(let ((term-image (make-term-with-sort-check
(term-head term)
l-result)))
(values term-image
(sort= (term-sort term)
(term-sort term-image))))
(values (make-applform (term-sort term) (term-head term) l-result)
t))))
(t (break "substution-partial-image : not implemented ~s" term)))))
(defun substitution-image-simplifying (sigma term &optional (cp nil) (slow-map nil))
(declare (type list sigma)
(type term)
(optimize (speed 3) (safety 0)))
(let ((*consider-object* t))
;; (setq subst-debug-term term)
(cond ((term-is-variable? term)
(let ((im (if slow-map
(variable-image-slow sigma term)
(variable-image sigma term))))
(if im
(values (if cp
(progn
(simple-copy-term im))
im)
(sort= (variable-sort term)
(term-sort im)))
(values term t))))
((term-is-chaos-expr? term)
(when *rewrite-debug*
(format t "CHAOS: ~S" (chaos-form-expr term)))
(multiple-value-bind (new-term success)
(funcall (chaos-form-expr term) sigma)
(if success
new-term
(throw 'fule-failure :fail-builtin))))
((term-is-builtin-constant? term) term)
((term-is-lisp-form? term)
(multiple-value-bind (new success)
(funcall (lisp-form-function term) sigma)
(if success
new
(throw 'rule-failure :fail-builtin))))
((term-is-applform? term)
(let ((l-result nil)
(modif-sort nil))
(dolist (s-t (term-subterms term))
(multiple-value-bind (image-s-t same-sort)
(substitution-image-simplifying sigma s-t cp)
(unless same-sort (setq modif-sort t))
(push image-s-t l-result)))
(setq l-result (nreverse l-result))
(let ((method (term-head term)))
(if (and (cdr l-result)
(null (cddr l-result))
(method-is-identity method))
;; head operator is binary & has identity theory
(if (term-is-zero-for-method (car l-result) method)
;; ID * X --> X
;; simplify for left identity.
(values (cadr l-result)
(sort= (term-sort term)
(term-sort (cadr l-result))))
;; X * ID --> X
(if (term-is-zero-for-method (cadr l-result) method)
(values (car l-result)
(sort= (term-sort term)
(term-sort (car l-result))))
;; X * Y
(if modif-sort
(let ((term-image (make-term-with-sort-check
method l-result)))
(values term-image
(sort= (term-sort term)
(term-sort term-image))))
(values (make-applform (term-sort term)
method l-result)
t) ; sort not changed
))) ; done for zero cases
;; This is the same as the previous bit of code
(if modif-sort
(let ((term-image (make-term-with-sort-check method
l-result)))
(values term-image
(sort= (term-sort term) (term-sort term-image))))
(values (make-applform (method-coarity method)
method l-result)
t))))))
(t (break "not implemented yet")) )))
;;; EOF
|