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 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689
|
; Copyright (C) 2019, Regents of the University of Texas
; Written by Matt Kaufmann and J Moore
; License: A 3-clause BSD license. See the LICENSE file distributed with ACL2.
; This file contains examples from the paper under development, "Iteration in
; ACL2". At the end are some additional tests.
(in-package "ACL2")
(include-book "projects/apply/loop" :dir :system)
(include-book "std/testing/assert-bang" :dir :system)
(include-book "std/testing/assert-bang-stobj" :dir :system)
(include-book "std/testing/must-fail" :dir :system)
(assert-event
(equal (loop$ for x in '(1 2 3 4) sum (* x x))
30))
(thm (equal (loop$ for x in '(1 2 3 4) sum (* x x))
(SUM$ '(LAMBDA (LOOP$-IVAR)
(DECLARE (IGNORABLE LOOP$-IVAR))
(RETURN-LAST 'PROGN
'(LAMBDA$ (LOOP$-IVAR)
(LET ((X LOOP$-IVAR)) (* X X)))
((LAMBDA (X) (BINARY-* X X))
LOOP$-IVAR)))
'(1 2 3 4))))
(thm (equal (sum$ fn lst)
(if (endp lst)
0
(+ (apply$ fn (list (car lst)))
(sum$ fn (cdr lst))))))
(assert-event
(equal (loop$ for i from 0 to 1000000 by 5
until (> i 30)
when (evenp i) collect (* i i))
'(0 100 400 900)))
; We use LAMBDA$ instead of LAMBDA below because otherwise we need to add
; IGNORABLE declarations.
(thm (equal (loop$ for i from lo to hi by k
until (> i 30)
when (evenp i) collect (* i i))
(COLLECT$ (LAMBDA$ (I) (BINARY-* I I))
(WHEN$ (LAMBDA$ (I) (EVENP I))
(UNTIL$ (LAMBDA$ (I) (< '30 I))
(FROM-TO-BY lo hi k))))))
(defun f1 ()
(declare (xargs :guard t))
(loop$ for i of-type integer from 0 to 1000000 by 5
until (> i 30)
when (evenp i) collect (* i i)))
(assert-event (equal (f1) '(0 100 400 900)))
(defun$ square (n)
(declare (xargs :guard (integerp n)))
(* n n))
(defmacro assert-event-error-triple (form val)
`(assert!-stobj
(mv-let (erp val2 state)
,form
(mv (and (not erp)
(equal val2 ',val))
state))
state))
(assert-event-error-triple
(trans1 '(defun$ square (n)
(declare (xargs :guard (integerp n)))
(* n n)))
(PROGN (DEFUN SQUARE (N)
(DECLARE (XARGS :GUARD (INTEGERP N)))
(* N N))
(DEFWARRANT SQUARE)))
(thm (implies (force (apply$-warrant-square))
(equal (apply$ 'square args)
(square (car args))))
:hints (("Goal" :in-theory '(apply$-square))))
(defun f2 (lower upper)
(declare (xargs :guard (and (integerp lower) (integerp upper))))
(loop$ for i of-type integer from lower to upper
collect (square i)))
(assert-event (equal (f2 3 5) '(9 16 25)))
(thm (implies (warrant square)
(equal (f2 3 5) '(9 16 25))))
(must-fail
(thm (equal (f2 3 5) '(9 16 25))))
(thm (implies (and (natp k1) (natp k2) (natp k3)
(<= k1 k2) (<= k2 k3)
(warrant square))
(member (* k2 k2) (f2 k1 k3))))
(must-fail
(thm (implies (and (natp k1) (natp k2) (natp k3)
(<= k1 k2) (<= k2 k3))
(member (* k2 k2) (f2 k1 k3)))))
; Trans doesn't actually return the translated value; it returns (value
; :invisible). So we call translate instead.
(assert-event-error-triple
(translate '(loop$ for x in '(1 2 3 4) sum (* x x))
'(nil) ; stobjs-out
t ; logic-modep
nil ; known-stobjs
'top ; ctx
(w state)
state)
(RETURN-LAST
'PROGN
'(LOOP$ FOR X IN '(1 2 3 4) SUM (* X X))
(SUM$ '(LAMBDA (LOOP$-IVAR)
(DECLARE (IGNORABLE LOOP$-IVAR))
(RETURN-LAST 'PROGN
'(LAMBDA$ (LOOP$-IVAR)
(LET ((X LOOP$-IVAR))
(DECLARE (IGNORABLE X))
(* X X)))
((LAMBDA (X) (BINARY-* X X))
LOOP$-IVAR)))
'(1 2 3 4))))
(assert! ; Assert-event fails because of program-only code and safe-mode.
(equal
(untranslate '(RETURN-LAST
'PROGN
'(LOOP$ FOR X IN '(1 2 3 4) SUM (* X X))
(SUM$ '(LAMBDA (LOOP$-IVAR)
(DECLARE (IGNORABLE LOOP$-IVAR))
(RETURN-LAST 'PROGN
'(LAMBDA$ (LOOP$-IVAR)
(LET ((X LOOP$-IVAR)) (* X X)))
((LAMBDA (X) (BINARY-* X X))
LOOP$-IVAR)))
'(1 2 3 4)))
nil
(w state))
'(PROG2$ '(LOOP$ FOR X IN '(1 2 3 4) SUM (* X X))
(SUM$ (LAMBDA$ (LOOP$-IVAR)
(LET ((X LOOP$-IVAR)) (* X X)))
'(1 2 3 4)))))
(defun sum-squares (lst)
(loop$ for x in lst sum (* x x)))
(thm (equal (sum-squares lst)
(SUM$ (LAMBDA$ (X) (* X X))
LST)))
(thm (equal (sum-squares lst)
(SUM$ '(LAMBDA (X)
(DECLARE (IGNORABLE X))
(BINARY-* X X))
LST)))
(assert-event
(equal
(body 'sum-squares nil (w state)) ; unnormalized body
'(RETURN-LAST
'PROGN
'(LOOP$ FOR X IN LST SUM (* X X))
(SUM$ '(LAMBDA (LOOP$-IVAR)
(DECLARE (IGNORABLE LOOP$-IVAR))
(RETURN-LAST 'PROGN
'(LAMBDA$ (LOOP$-IVAR)
(LET ((X LOOP$-IVAR))
(DECLARE (IGNORABLE X))
(* X X)))
((LAMBDA (X) (BINARY-* X X))
LOOP$-IVAR)))
LST))))
; Perhaps we should clean up the normalized body of a defun provided there are
; no warranted fns in the lambda$s?
(assert-event
(equal
(body 'sum-squares t (w state)) ; normalized body
'(SUM$ '(LAMBDA (LOOP$-IVAR)
(BINARY-* LOOP$-IVAR LOOP$-IVAR))
LST)))
(assert! ; Assert-event fails because of program-only code and safe-mode.
(equal (untranslate '(SUM$ '(LAMBDA (X)
(DECLARE (IGNORABLE X))
(BINARY-* X X))
LST)
nil
(w state))
'(SUM$ (LAMBDA$ (X) (* X X))
LST)))
(defun g (m n lst1 lst2)
(loop$ for x1 in lst1 as x2 in lst2 sum (* m n x1 x2)))
(assert-event
(equal (loop$-as '((1 2 3 4) (5 6 7 8)))
'((1 5) (2 6) (3 7) (4 8))))
(thm (equal (sum$+ fn globals lst)
(if (endp lst)
0
(+ (apply$ fn (list globals (car lst)))
(sum$+ fn globals (cdr lst))))))
(thm (equal (loop$ for x1 in lst1 as x2 in lst2 sum (* m n x1 x2))
(SUM$+ (LAMBDA$ (LOOP$-GVARS LOOP$-IVARS)
(DECLARE (XARGS :GUARD
(AND (TRUE-LISTP LOOP$-GVARS)
(EQUAL (LEN LOOP$-GVARS) 2)
(TRUE-LISTP LOOP$-IVARS)
(EQUAL (LEN LOOP$-IVARS) 2))
:SPLIT-TYPES T))
(LET ((M (CAR LOOP$-GVARS))
(N (CAR (CDR LOOP$-GVARS)))
(X1 (CAR LOOP$-IVARS))
(X2 (CAR (CDR LOOP$-IVARS))))
(* M N X1 X2)))
(LIST M N)
(LOOP$-AS (LIST LST1 LST2)))))
(thm (equal (when$ fn lst)
(if (endp lst)
nil
(if (apply$ fn (list (car lst)))
(cons (car lst)
(when$ fn (cdr lst)))
(when$ fn (cdr lst))))))
(thm (equal (when$+ fn globals lst)
(if (endp lst)
nil
(if (apply$ fn (list globals (car lst)))
(cons (car lst)
(when$+ fn globals (cdr lst)))
(when$+ fn globals (cdr lst))))))
(thm (equal (loop$ for x in '(a b c) collect (mv x x))
'((a a) (b b) (c c))))
(defthm sum$-revappend
(equal (sum$ fn (revappend x y))
(+ (sum$ fn x) (sum$ fn y))))
(thm (equal (sum-squares (reverse x))
(sum-squares x)))
(defun sum-cubes (lst)
(loop$ for x in lst sum (* x x x)))
(thm (equal (sum-cubes (reverse x))
(sum-cubes x)))
(defun sum-cubes-recursive (lst)
(cond ((endp lst) 0)
(t (+ (let ((x (car lst)))
(* x x x))
(sum-cubes-recursive (cdr lst))))))
(must-fail (thm (equal (sum-cubes-recursive (reverse x))
(sum-cubes-recursive x))))
(defthm sum-cubes-recursive-revappend
(equal (sum-cubes-recursive (revappend x y))
(+ (sum-cubes-recursive x) (sum-cubes-recursive y))))
(thm (equal (sum-cubes-recursive (reverse x))
(sum-cubes-recursive x)))
(thm (equal (sum-squares '(1 2 3 4)) 30))
(assert-event (equal (loop$ for i from 1 to 5 collect (* i i))
'(1 4 9 16 25)))
(assert-event (equal (f2 1 5)
'(1 4 9 16 25)))
(assert-event
(equal
(access loop$-alist-entry
(cdr (assoc-equal '(LOOP$ FOR I OF-TYPE INTEGER
FROM LOWER TO UPPER COLLECT (SQUARE I))
(global-val 'loop$-alist (w state))))
:term)
'(COLLECT$ '(LAMBDA (LOOP$-IVAR)
(DECLARE (TYPE INTEGER LOOP$-IVAR)
(XARGS :GUARD (INTEGERP LOOP$-IVAR)
:SPLIT-TYPES T)
(IGNORABLE LOOP$-IVAR))
(RETURN-LAST 'PROGN
'(LAMBDA$ (LOOP$-IVAR)
(DECLARE (TYPE INTEGER LOOP$-IVAR))
(LET ((I LOOP$-IVAR))
(DECLARE (IGNORABLE I))
(SQUARE I)))
((LAMBDA (I) (SQUARE I)) LOOP$-IVAR)))
(FROM-TO-BY LOWER UPPER '1))))
(assert! ; may be able to use assert-event after a bug fix is in place
(equal
(prettyify-clause-lst
(cadr (cadr (mv-list 2 (guard-obligation 'f2 nil nil t 'top-level state))))
nil
(w state))
'((IMPLIES (AND (APPLY$-WARRANT-SQUARE)
(INTEGERP LOWER)
(INTEGERP UPPER)
(MEMBER-EQUAL NEWV (FROM-TO-BY LOWER UPPER 1)))
(INTEGERP NEWV)))))
(must-fail
(defun f2-alt (lower upper)
(declare (xargs :guard (and (integerp lower) (integerp upper))))
(loop$ for i from lower to upper ; deleted of-type integer
collect (square i))))
(defun sum-squares-2 (lower upper)
(declare (xargs :guard (and (integerp lower) (integerp upper))))
(loop$ for i of-type integer from lower to upper
sum (square i)))
(thm (implies (warrant square)
(equal (sum-squares-2 1 4) 30)))
(thm (implies (warrant square)
(equal (sum-squares-2 1 4) 30))
:hints
(("Goal" :in-theory (disable sum-squares-2))))
(must-fail ; need of-type or corresponding :guard
(defun sum-squares-3 (lower upper)
(declare (xargs :guard (and (integerp lower) (integerp upper))))
(loop$ for i from lower to upper
sum (square i))))
(defun sum-squares-3 (lower upper)
(declare (xargs :guard (and (integerp lower) (integerp upper))))
(loop$ for i from lower to upper
sum :guard (integerp i) (square i)))
(thm (implies (warrant square)
(equal (sum-squares-3 1 4) 30)))
; The results reported below were from ACL2 (git hash 5eb79e7697) built on CCL
; on April 4, 2018, running on a 3.5 GHz 4-core Intel(R) Xeon(R) with
; Hyper-Threading. Times in seconds are realtime; also shown are bytes
; allocated.
; In the paper, (a) through (f) are wrapped in time$, but that prevents
; certification of this book because time$ is not allowed for embedded event
; forms. Also, to make these into embedded event forms we use assert! below.
; We comment out (d) through (f) below to avoid the need for a trust tag to
; certify this bug, as these are Common Lisp evaluations.
; We make this local to avoid a problem, at the time of this writing in April
; 2019, with a stack overflow from ACL2 source function pkg-names-memoize.
(local (progn
(defun$ double (n)
(declare (xargs :guard (integerp n)))
(+ n n))
(defun sum-doubles (lst)
(declare (xargs :guard (and (integer-listp lst)
(warrant double))
:verify-guards nil))
(loop$ for x of-type integer in lst sum (double x)))
(make-event `(defconst *m* ',(loop$ for i from 1 to 10000000 collect i)))
; (a) ACL2 top-level loop$ call [0.98 seconds, 160,038,272 bytes]:
(assert! (equal (loop$ for i of-type integer in *m* sum (double i))
100000010000000))
; (b) ACL2 top-level non-guard-verified function call [0.89 seconds, 160,037,232 bytes]
(assert! (equal (sum-doubles *m*) 100000010000000))
(verify-guards sum-doubles)
; (c) ACL2 top-level guard-verified function call [0.14 seconds, 16 bytes]
(assert! (equal (sum-doubles *m*) 100000010000000))
;;; We comment out the Common Lisp tests for this book, as noted above.
; (value :q)
; ; (d) Common Lisp guard and function call [0.13 seconds, 0 bytes]:
; (time$ (and (integer-listp *m*) (sum-doubles *m*)))
; ; (e) Common Lisp function call [0.09 seconds, 0 bytes]:
; (time$ (sum-doubles *m*))
; ; (f) Common Lisp loop call [0.08 seconds, 0 bytes]:
; (time$ (loop for i of-type integer in *m* sum (double i)))
))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Additional tests (not tied to the paper)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; The first batch, involving g1 and g2 below, involves apply$ rather than
;;; loop$ (but is relevant to loop$ because it's relevant to apply$).
(defun$ g1 (x)
(declare (xargs :guard t))
x)
(thm (implies (warrant g1) ; necessary
(equal (apply$ 'g1 (list 3))
3)))
(must-fail
; Fails, as it should:
(thm (equal (apply$ 'g1 (list 3))
3)))
(memoize 'g1)
(thm (implies (warrant g1) ; necessary
(equal (apply$ 'g1 (list 3))
3)))
(must-fail
; Still fails in spite of memoization, as it should:
(thm (equal (apply$ 'g1 (list 3))
3)))
; Now let's bury the apply$ call in a guard-verified function.
(defun$ g2 (x)
(declare (xargs :guard t))
(apply$ 'g1 (list x)))
(thm (implies (warrant g1) ; necessary
(equal (g2 3)
3)))
(must-fail
; Fails, as it should:
(thm (equal (g2 3)
3)))
(memoize 'g2)
(thm (implies (warrant g1) ; necessary
(equal (g2 3)
3)))
(must-fail
; Still fails in spite of memoization, as it should:
(thm (equal (g2 3)
3)))
; Prints a warning about memoization results not being stored:
(value-triple (g2 3))
(must-fail
; Still fails in spite of memoization, as it should:
(thm (equal (g2 3)
3)))
;;; The second batch addresses loop$ more directly than above (where we focused
;;; on apply$).
(defun$ loop1 (x)
(declare (xargs :guard t))
(loop$ for i from 1 to 3 collect (cons (g2 i) x)))
; Caused an assertion (expecting *aokp* to be non-nil) until fix around
; 4/19/2019.
(thm (implies (and (warrant g1) (warrant g2)) ; both are necessary
(equal (loop1 'a)
'((1 . a) (2 . a) (3 . a)))))
(must-fail
; Fails, as it should:
(thm (implies (and (warrant g1))
(equal (loop1 'a)
'((1 . a) (2 . a) (3 . a))))))
(must-fail
; Fails, as it should:
(thm (implies (and (warrant g2))
(equal (loop1 'a)
'((1 . a) (2 . a) (3 . a))))))
(memoize 'loop1) ; and g2 is already memoized
(thm (implies (and (warrant g1) (warrant g2)) ; both are necessary
(equal (loop1 'a)
'((1 . a) (2 . a) (3 . a)))))
(must-fail
; Fails in spite of memoization, as it should:
(thm (equal (loop1 'a)
'((1 . a) (2 . a) (3 . a)))))
(must-fail
; Still fails in spite of memoization, as it should:
(thm (implies (and (warrant g1))
(equal (loop1 'a)
'((1 . a) (2 . a) (3 . a))))))
(must-fail
; Still fails in spite of memoization, as it should:
(thm (implies (and (warrant g2))
(equal (loop1 'a)
'((1 . a) (2 . a) (3 . a))))))
; -----------------------------------------------------------------
; Now I experiment with do loop$s.
(assert-event
(equal (loop$ with temp = '(1 2 3 4 5)
with ans = 0
do
(if (endp temp)
(return ans)
(progn (setq ans (+ (car temp) ans))
(setq temp (cdr temp)))))
15))
(assert-event
(equal (loop$ with temp = '(1 2 3 NEGATE 4)
with ans = 0
do
(if (endp temp)
(loop-finish)
(progn
(setq ans (if (equal (car temp) 'NEGATE)
(- ans)
(+ (car temp) ans)))
(setq temp (cdr temp))))
finally
(return ans))
-2))
; The following function ``loops forever''
(defun infinite-loop ()
(declare (xargs :verify-guards nil))
(loop$ with temp of-type integer = 0
do
:measure (acl2-count temp)
(progn (cw "Temp = ~x0~%" temp)
(setq temp (+ 1 temp)))))
(thm (equal (infinite-loop)
nil))
(must-fail
(infinite-loop)
:expected :hard)
; The error message explains that the measure went from 0 to 1 and so didn't go
; down. Logically the function returns :DO$-MEASURE-DID-NOT-DECREASE. We
; can't verify the guards (which includes verifying that the measure
; decreases):
(must-fail
(verify-guards infinite-loop))
; This loop works as expected.
(defun do-loop1 (lst)
(loop$ with temp = lst
with ans = 0
do
(if (endp temp)
(return ans)
(progn (setq ans (+ (car temp) ans))
(setq temp (cdr temp))))))
(assert-event
(equal (do-loop1 '(1 2 3 4 5)) 15))
; But we can't verify the guards because, for example, we don't know (car temp)
; and ans are numbers.
(must-fail
(verify-guards do-loop1))
(must-fail
(defun do-loop2 (lst)
(declare (xargs :guard (nat-listp lst)))
(loop$ with temp = lst
with ans = 0
do
(if (endp temp)
(return ans)
(progn (setq ans (+ (car temp) ans))
(setq temp (cdr temp)))))))
; Checkpoints
; Subgoal 1.3
; (IMPLIES (AND (ALISTP ALIST)
; (NOT (CONSP (CDR (HONS-ASSOC-EQUAL 'TEMP ALIST)))))
; (NOT (CDR (HONS-ASSOC-EQUAL 'TEMP ALIST))))
; Subgoal 1.2
; (IMPLIES (AND (ALISTP ALIST)
; (CONSP (CDR (HONS-ASSOC-EQUAL 'TEMP ALIST))))
; (ACL2-NUMBERP (CDR (HONS-ASSOC-EQUAL 'ANS ALIST))))
; Subgoal 1.1
; (IMPLIES (AND (ALISTP ALIST)
; (CONSP (CDR (HONS-ASSOC-EQUAL 'TEMP ALIST))))
; (ACL2-NUMBERP (CADR (HONS-ASSOC-EQUAL 'TEMP ALIST))))
; Both of the following show ways we can address the above
; failures.
(defun do-loop2-alternative1 (lst)
(declare (xargs :guard (nat-listp lst)))
(loop$ with temp = lst
with ans = 0
do
:guard (and (nat-listp temp)
(integerp ans))
(if (endp temp)
(return ans)
(progn (setq ans (+ (car temp) ans))
(setq temp (cdr temp))))))
(defun do-loop2-alternative2 (lst)
(declare (xargs :guard (nat-listp lst)))
(loop$ with temp of-type (satisfies nat-listp) = lst
with ans of-type integer = 0
do
(if (endp temp)
(return ans)
(progn (setq ans (+ (car temp) ans))
(setq temp (cdr temp))))))
; The following shows that the type-spec is enforced on every setq.
(must-fail
(loop$ with temp = '(1 2 3 4)
with ans of-type (satisfies natp) = 0
do
(if (endp temp)
(return ans)
(progn (setq ans (- ans))
(setq ans (+ (- ans) (car temp)))
(setq temp (cdr temp)))))
:expected :hard)
; But if we do the evaluation with guard-checking off, we get the
; right answer, 10.
(make-event
(state-global-let*
((guard-checking-on nil))
(value-triple
`(assert-event
(equal ,(loop$ with temp = '(1 2 3 4)
with ans of-type (satisfies natp) = 0
do
(if (endp temp)
(return ans)
(progn (setq ans (- ans))
(setq ans (+ (- ans) (car temp)))
(setq temp (cdr temp)))))
10)))))
; Alternativey, if we do not specify a TYPE natp for ans and instead just guard
; the body with (natp ans), it works even with guard checking on. The reason
; it works is that the :guard is checked on every entry to the do body (and ans
; is a natural every time), but of-type is checked on every setq and the first
; setq below violates that even though the second one restores ans to be a
; natp.
(assert-event
(equal (loop$ with temp = '(1 2 3 4)
with ans = 0
do
:guard (natp ans)
(if (endp temp)
(return ans)
(progn (setq ans (- ans))
(setq ans (+ (- ans) (car temp)))
(setq temp (cdr temp)))))
10))
; Here we show the same thing, except instead of causing the error at runtime
; we show that we cannot verify the guards of the loop where ans is declared
; of-type natp but we can verify the guards of the loop with the :guard clause
; that ans is a natp.
(must-fail
(defun do-loop3-type-spec (lst)
(declare (xargs :guard (nat-listp lst)))
(loop$ with temp of-type (satisfies nat-listp) = lst
with ans of-type (satisfies natp) = 0
do
(if (endp temp)
(return ans)
(progn (setq ans (- ans))
(setq ans (+ (- ans) (car temp)))
(setq temp (cdr temp)))))))
(defun do-loop3-guard (lst)
(declare (xargs :guard (nat-listp lst)))
(loop$ with temp of-type (satisfies nat-listp) = lst
with ans = 0
do
:guard (natp ans)
(if (endp temp)
(return ans)
(progn (setq ans (- ans))
(setq ans (+ (- ans) (car temp)))
(setq temp (cdr temp))))))
; This defun fails because we can't find a variable that is tested and changed
; (as a function of its old value) on every branch. This may confuse the user
; if temp appears to be such a variable. But we don't count temp as always
; changing below because of the temp branch.
(must-fail
(defun do-loop4 (lst)
(declare (xargs :guard (true-listp lst)))
(loop$ with temp = lst
with ans = 0
do
:guard (and (true-listp temp)
(natp ans))
(if (endp temp)
(loop-finish)
(if (eq (car temp) 'stop)
(return 'stopped)
(progn (setq ans (+ 1 ans))
(setq temp (if (eq (car temp) 'skip)
temp
(cdr temp))))))
finally
:guard (integerp ans)
(return ans))))
; This is accepted and guard verified.
(defun do-loop4 (lst)
(declare (xargs :guard (true-listp lst)))
(loop$ with temp = lst
with ans = 0
do
:guard (and (true-listp temp)
(natp ans))
(if (endp temp)
(loop-finish)
(if (eq (car temp) 'stop)
(return 'stopped)
(progn (setq ans (+ 1 ans))
(setq temp (if (eq (car temp) 'skip)
(cddr temp)
(cdr temp))))))
finally
:guard (integerp ans)
(return ans)))
(assert-event
(equal (do-loop4 '(1 2 3)) 3))
(assert-event
(equal (do-loop4 '(1 2 3 SKIP 5 6)) 5))
(assert-event
(equal (do-loop4 '(1 2 3 SKIP XXX 5)) 5))
(assert-event
(equal (do-loop4 '(1 2 3 STOP XXX 5)) 'stopped))
(assert-event
(equal (do-loop4 '(1 2 3 SKIP STOP 5)) 5))
(defun do-loop-counting-up (i0 max)
(declare (xargs :guard (and (natp i0) (natp max))
:verify-guards nil))
(loop$ with i of-type (satisfies natp) = i0
with cnt of-type integer = 0
do
:measure (nfix (- max i))
:guard (natp max)
(if (>= i max)
(loop-finish)
(progn (setq cnt (+ 1 cnt))
(setq i (+ 1 i))))
finally
(return (list 'from i0 'to max 'is cnt 'steps))))
; The following experiment shows the effect of guard verification!
; But this is just commented out because I don't know how to measure
; times in a certified book!
; (time$ (do-loop-counting-up 1 1000000))
; 59.72 seconds realtime, 59.72 seconds runtime
; (4,079,998,496 bytes allocated).
; (FROM 1 TO 1000000 IS 999999 STEPS)
; (verify-guards do-loop-counting-up)
; Time: 0.15 seconds (prove: 0.13, print: 0.01, other: 0.01)
; (time$ (do-loop-counting-up 1 1000000))
; 0.00 seconds realtime, 0.00 seconds runtime
; (144 bytes allocated).
; (FROM 1 TO 1000000 IS 999999 STEPS)
; Here is an example of lexicographic do loop$:
(include-book "ordinals/lexicographic-ordering-without-arithmetic" :dir :system)
(defun do-loop-lex (x0 y0)
(loop$ with x = x0
with y = y0
with ans of-type (satisfies true-listp) = nil
do
:measure (llist (len x) (len y))
(if (atom x)
(loop-finish)
(if (atom y)
(progn (setq y y0)
(setq x (cdr x)))
(progn (setq ans (cons (cons (car x) (car y)) ans))
(setq y (cdr y)))))
finally
(return (revappend ans nil))))
(verify-guards do-loop-lex)
(assert-event
(equal (do-loop-lex '(0 1 2 3) '(0 1 2 3))
'((0 . 0)
(0 . 1)
(0 . 2)
(0 . 3)
(1 . 0)
(1 . 1)
(1 . 2)
(1 . 3)
(2 . 0)
(2 . 1)
(2 . 2)
(2 . 3)
(3 . 0)
(3 . 1)
(3 . 2)
(3 . 3))))
; Here is a simple challenge: prove that a do loop$ implementing rev1 is correct.
; We keep it simple: no guards, no type-specs.
(defun do-loop-rev1 (x a)
(loop$ with temp-x = x
with temp-a = a
do
(progn (if (atom temp-x) (return temp-a) nil)
(setq temp-a (cons (car temp-x) temp-a))
(setq temp-x (cdr temp-x)))))
(verify-guards do-loop-rev1)
(defun rev1 (x a)
(if (atom x)
a
(rev1 (cdr x) (cons (car x) a))))
(defthm do-loop-rev1-is-rev1
(equal (do-loop-rev1 x a) (rev1 x a))
:rule-classes nil)
; Do we need warrants for functions used in guards?
(defun my-natp (x)
(natp x))
(defbadge my-natp)
; The thm below cannot be proved without warranting my-natp, even though it is
; only used in an irrelevant arg of return-last.
(must-fail
(defthm my-natp-test0
(implies (and (natp y)
(natp z))
(equal (ev$ '(return-last 'progn
(check-dcl-guardian (my-natp x) '(test of my-natp))
(binary-+ '1 x))
(list (cons 'x (+ y z))))
(+ 1 y z)))))
(defun my-natp-hint (k)
(if (zp k)
t
(my-natp-hint (- k 1))))
(must-fail
(defthm my-natp-test1
(implies (natp k)
(equal (loop$ with temp of-type (satisfies my-natp) = k
do
(if (zp temp)
(return 'done)
(setq temp (- temp 1))))
'done))
:hints (("Goal" :induct (my-natp-hint k)))))
(defwarrant my-natp)
(defthm my-natp-test2
(implies (and (warrant my-natp)
(natp k))
(equal (loop$ with temp of-type (satisfies my-natp) = k
do
(if (zp temp)
(return 'done)
(setq temp (- temp 1))))
'done))
:hints (("Goal" :induct (my-natp-hint k))))
; We need the concept of a (key . val) alist whose vals are all rational. We
; will use it as a guard. We could use a for loop$ to check this but because
; we have to prove things about it, we'll start simply and define it in the
; traditional recursive way. Later will explore using loop$s.
(defun map-to-ratsp (x)
(cond
((atom x) (equal x nil))
(t (and (consp (car x))
(rationalp (cdr (car x)))
(map-to-ratsp (cdr x))))))
(defbadge map-to-ratsp)
; To use map-to-ratsp as a guard we need to verify its guards first.
(verify-guards map-to-ratsp)
(defwarrant map-to-ratsp)
(defun do-loop-max-pair (alist)
; Assuming alist is a (key . val) alist whose vals are rationals, we compute
; the pair with the largest val.
(declare (xargs :guard (map-to-ratsp alist)))
(loop$ with alist of-type (satisfies map-to-ratsp) = alist
with max-pair = nil
do
:guard (or (null max-pair)
(and (consp max-pair)
(rationalp (cdr max-pair))))
(progn
(cond
((endp alist) (return max-pair))
((or (null max-pair)
(> (cdr (car alist))
(cdr max-pair)))
(setq max-pair (car alist))))
(setq alist (cdr alist)))))
(assert-event
(equal (do-loop-max-pair '((a . 1)(b . 2)(c . 33) (d . 23) (e . 45) (f . 0)))
'(e . 45)))
; The following failed before a commit on 10/22/2021.
(assert-event (equal (loop$ with temp = '(a b c)
with ans = nil
do (cond ((endp temp) (return ans))
(t (let ((foo (car temp)))
(progn (setq ans (cons foo ans))
(setq temp (cdr temp)))))))
'(C B A)))
; Start tests of DO loop$s that return multiple values and/or stobjs.
; These may be labeled do-mv-N.
(defun do-mv-1 (x)
; Returns a single non-stobj value, but uses mv-setq in the loop.
(declare (xargs :guard (true-listp x)))
(loop$ with temp = x
with result = nil
with len = 0
do
:guard (and (true-listp temp)
(natp len))
(if (null temp)
(loop-finish)
(mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len))))
finally (return (list len result))))
(defun do-mv-2 (x)
; Same as do-mv-1, except we return two values.
(declare (xargs :guard (true-listp x)))
(loop$ with temp = x
with result = nil
with len = 0
do
:values (nil nil)
:guard (and (true-listp temp)
(natp len))
(if (null temp)
(loop-finish)
(mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len))))
finally (return (mv len result))))
(must-fail
; The following defun is identical to the one above, except that the FINALLY
; clause has a non-return exit, which is illegal for :VALUES other than (NIL).
; This test supports a comment in ACL2 source function translate11-do-finally.
(defun do-mv-2-bad-1 (x)
(declare (xargs :guard (true-listp x)))
(loop$ with temp = x
with result = nil
with len = 0
do
:values (nil nil)
:guard (and (true-listp temp)
(natp len))
(if (null temp)
(loop-finish)
(mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len))))
finally (mv len result))))
(must-fail
; The following defun is identical to the one above, except that the FINALLY
; clause has a non-return exit, which is illegal for :VALUES other than (NIL).
; This test supports a comment in ACL2 source function translate11-do-finally.
(defun do-mv-2-bad-2 (x)
(declare (xargs :guard (true-listp x)))
(loop$ with temp = x
with result = nil
with len = 0
do
:values (nil nil)
:guard (and (true-listp temp)
(natp len))
(if (null temp)
(loop-finish)
(mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len))))
finally (if (equal len 3)
(cw "Some msg")
(return (mv len result))))))
(defstobj st fld)
(defwarrant fld)
(defwarrant update-fld)
(must-fail
;;; This fails because of the form (return 'stopped), which violates the
;;; expected return of the stobj, st.
(defun do-mv-3 (lst st)
(declare (xargs :stobjs st :guard (true-listp lst)))
(loop$ with temp of-type (satisfies true-listp) = lst
do
:values (st)
(cond ((endp temp)
(loop-finish))
((eq (car temp) 'stop)
(return 'stopped))
(t (mv-setq (st temp)
(let ((st (update-fld
(+ (ifix (car temp)) (ifix (fld st)))
st)))
(mv st (cdr temp))))))
finally (return st))))
; Disallow stobj modification that isn't justified logically.
; Before we got the ACL2 code right, we were able to admit the following, and
; then after evaluating (do-mv-3-bad '(3 4 17 5) st), we found that
; (fld st) = 0, yet we could prove the following.
; (thm (implies (warrant fld update-fld)
; (equal (do-mv-3-bad '(3 4 17 5) '(0)) '(7))))
(must-fail
(defun do-mv-3 (lst st)
(declare (xargs :stobjs st
:guard (true-listp lst)))
(let ((st (update-fld 0 st)))
(loop$ with temp of-type (satisfies true-listp) = lst
do
:values (st)
:measure (len temp)
:guard
; We include (stp st) because stobj-optp = nil for lambdas; see
; guard-clauses-for-fn1.
(stp st)
(cond ((endp temp)
(loop-finish))
((eql (car temp) 17)
(progn (setq temp nil)
(update-fld 0 st)))
(t (mv-setq (st temp)
(let ((st (update-fld
(+ (ifix (car temp)) (ifix (fld st)))
st)))
(mv st (cdr temp))))))
finally (return st)))))
(must-fail
; This fails because "Single-threaded object names, such as ST, may not be
; LET-bound at the top-level of a DO loop body or FINALLY clause."
(defun do-mv-3 (lst st)
(declare (xargs :stobjs st :guard (true-listp lst)))
(let ((st (update-fld 0 st)))
(loop$ with temp of-type (satisfies true-listp) = lst
do
:values (st)
:guard
; We include (stp st) because stobj-optp = nil for lambdas; see
; guard-clauses-for-fn1.
(stp st)
(cond ((endp temp)
(loop-finish))
(t (let ((st (update-fld
(+ (ifix (car temp)) (ifix (fld st)))
st)))
(mv-setq (st temp)
(mv st (cdr temp))))))
finally (return st)))))
(must-fail
; Stobjs must not appear in WITH clauses.
(defun do-mv-3 (lst st)
(declare (xargs :stobjs st :guard (true-listp lst)))
(let ((st (update-fld 0 st)))
(loop$ with temp of-type (satisfies true-listp) = lst
with st = st
do
:values (st)
:guard
; We include (stp st) because stobj-optp = nil for lambdas; see
; guard-clauses-for-fn1.
(stp st)
(cond ((endp temp)
(loop-finish))
(t (mv-setq (st temp)
(let ((st (update-fld
(+ (ifix (car temp)) (ifix (fld st)))
st)))
(mv st (cdr temp))))))
finally (return st)))))
(defun do-mv-3 (lst st)
(declare (xargs :stobjs st :guard (true-listp lst)))
(let ((st (update-fld 0 st)))
(loop$ with temp of-type (satisfies true-listp) = lst
do
:values (st)
:guard
; We include (stp st) because stobj-optp = nil for lambdas; see
; guard-clauses-for-fn1.
(stp st)
(cond ((endp temp)
(loop-finish))
(t (mv-setq (st temp)
(let ((st (update-fld
(+ (ifix (car temp)) (ifix (fld st)))
st)))
(mv st (cdr temp))))))
finally (return st))))
(assert-event
(let ((st (do-mv-3 '(1 2 4) st)))
(mv (equal (fld st) 7) st))
:stobjs-out '(nil st))
(must-fail
(defun do-mv-3-alt (lst st)
; This is like do-mv-3, except that we put a let outside the mv-setq, which is
; illegal (as it would defeat single-threadedness for st).
(declare (xargs :stobjs st :guard (true-listp lst)))
(let ((st (update-fld 0 st)))
(loop$ with temp of-type (satisfies true-listp) = lst
do
:values (st)
(cond ((endp temp)
(loop-finish))
(t (let* ((a (car temp))
(st (update-fld
(+ (ifix a) (ifix (fld st)))
st)))
(mv-setq (st temp)
(mv st (cdr temp))))))
finally (return st))))
)
; We can pass a congruent stobj for st into the function defined just above.
(defstobj st2 fld2 :congruent-to st)
(defwarrant fld2)
(defwarrant update-fld2)
(assert-event
(let ((st2 (do-mv-3 '(1 2 4) st2)))
(mv (equal (fld st2) 7) st2))
:stobjs-out '(nil st2))
(must-fail
; The :values of a do loop$ is taken literally, not allowing for congruent
; stobjs. The way to allow congruent stobjs in a do loop$ is to wrap the loop
; into a function; see how do-mv-3 is called in the test just above on st2.
(defun do-mv-3-cong (lst st2)
(declare (xargs :stobjs st2 :guard (true-listp lst)))
(let ((st2 (update-fld 0 st2)))
(loop$ with temp of-type (satisfies true-listp) = lst
do
:values (st)
(cond ((endp temp)
(loop-finish))
(t (mv-setq (st temp)
(let ((st (update-fld
(+ (ifix (car temp)) (ifix (fld st)))
st)))
(mv st (cdr temp))))))
finally (return st)))))
(must-fail
; This fails because :VALUES below contradicts the stobjs-out of the FINALLY
; clause.
(defun do-mv-4-bug (n lst st)
(declare (xargs :stobjs st :guard (and (natp n)
(true-listp lst))))
(loop$ with temp of-type (satisfies true-listp) = lst
do
:values (st)
:guard (integerp n)
(progn (setq st (update-fld n st))
(cond ((endp temp)
(loop-finish))
(t (mv-setq (st temp)
(let ((st (update-fld
(+ (ifix (car temp))
(ifix (fld st)))
st)))
(mv st (cdr temp)))))))
finally
:guard (integerp n)
(return (mv (equal (fld st) (+ n 7)) st)))))
(defun do-mv-4 (n lst st)
(declare (xargs :stobjs st :guard (and (natp n)
(true-listp lst))))
(let ((st (update-fld n st)))
(loop$ with temp of-type (satisfies true-listp) = lst
do
:values (nil st)
:guard
; We include (stp st) because stobj-optp = nil for lambdas; see
; guard-clauses-for-fn1.
(and (stp st)
(natp n))
(cond ((endp temp)
(loop-finish))
(t (mv-setq (st temp)
(let ((st (update-fld
(+ (ifix (car temp))
(ifix (fld st)))
st)))
(mv st (cdr temp))))))
finally
:guard
; We include (stp st) because stobj-optp = nil for lambdas; see
; guard-clauses-for-fn1.
(and (stp st)
(integerp n))
(return (mv (equal (fld st) (+ n 7)) st)))))
(assert-event (do-mv-4 20 '(3 0 4) st)
:stobjs-out '(nil st))
(thm (implies (warrant fld update-fld)
(mv-let (equality-flg st)
(do-mv-4 20 '(3 0 4) '(100))
(and (equal equality-flg t)
(equal st '(27))
(equal (fld st) 27)))))
; As just above, but this time use the body of do-mv-4 directly in the loop:
(thm (implies (warrant fld update-fld)
(mv-let (equality-flg st)
(let* ((n 20)
(lst '(3 0 4))
(st '(100)))
(let ((st (update-fld n st)))
(loop$ with temp of-type (satisfies true-listp) = lst
do
:values (nil st)
:guard
; We include (stp st) because stobj-optp = nil for lambdas; see
; guard-clauses-for-fn1.
(and (stp st)
(natp n))
(cond ((endp temp)
(loop-finish))
(t (mv-setq (st temp)
(let ((st (update-fld
(+ (ifix (car temp))
(ifix (fld st)))
st)))
(mv st (cdr temp))))))
finally
:guard
; We include (stp st) because stobj-optp = nil for lambdas; see
; guard-clauses-for-fn1.
(and (stp st)
(integerp n))
(return (mv (equal (fld st) (+ n 7)) st)))))
(and (equal equality-flg t)
(equal st '(27))
(equal (fld st) 27)))))
(must-fail
; Check that we don't need to worry about handling missing ELSE of IF. Error
; message says that IF takes three arguments.
(defun bad-loop ()
(loop$ with temp = '(1 2 3)
with x
do (if (consp temp)
(progn (setq x (car temp))
(setq temp (cdr temp))))
finally (return x))))
(must-fail
; As above, but the issue is in the FINALLY clause this time.
(defun bad-loop ()
(loop$ with temp = '(1 2 3)
with x
do (if (consp temp)
(progn (setq x (car temp))
(setq temp (cdr temp)))
(loop-finish))
finally (if (evenp x)
(return x)))))
; Test that it's OK to fall through to a missing finally clause, as is natural
; in this membership function.
(defun member-equal-via-loop (a lst)
(loop$ with temp = lst
do
(cond ((atom temp)
(loop-finish))
((equal (car temp) a)
(return temp))
(t (setq temp (cdr temp))))))
; Check that we have indeed defined member-equal using loop$.
(defthm member-equal-via-loop-is-member-equal
(equal (member-equal-via-loop a x)
(member-equal a x)))
(must-fail
; This is like member-equal-via-loop except that we return both t and the tail
; when found. It's an error though, because there is no finally clause.
(defun bad-loop (a lst)
(loop$ with temp = lst
do
:values (nil nil)
(cond ((atom temp)
(loop-finish))
((equal (car temp) a)
(return (mv t temp)))
(t (setq temp (cdr temp)))))))
(must-fail
; This is like the one above, but with a finally clause that is missing a
; return even though its expression has the right output shape.
(defun bad-loop (a lst)
(loop$ with temp = lst
do
:values (nil nil)
(cond ((atom temp)
(loop-finish))
((equal (car temp) a)
(return (mv t temp)))
(t (setq temp (cdr temp))))
finally (mv nil nil))))
(must-fail
; This is like the bad-loop attempt just above, but this time there is a
; finally clause that, however, doesn't return an mv result on each branch.
(defun bad-loop (a lst)
(loop$ with temp = lst
do
:values (nil nil)
(cond ((atom temp)
(loop-finish))
((equal (car temp) a)
(return (mv t temp)))
(t (setq temp (cdr temp))))
finally (return (if (null temp)
(mv nil nil)
(cw "Non-nil atom.~%"))))))
(must-fail
; variant of the one just above
(defun bad-loop (a lst)
(loop$ with temp = lst
do
:values (nil nil)
(cond ((atom temp)
(loop-finish))
((equal (car temp) a)
(return (mv t temp)))
(t (setq temp (cdr temp))))
finally (if (null temp)
(return (mv nil nil))
(cw "Non-nil atom.~%")))))
; Unlike the bad-loop definition just above, this timee we include a suitable
; finally clause.
(defun member-equal-via-loop-2 (a lst)
(loop$ with temp = lst
do
:values (nil nil)
(cond ((atom temp)
(loop-finish))
((equal (car temp) a)
(return (mv t temp)))
(t (setq temp (cdr temp))))
finally (return (mv nil nil))))
; And here's a reasonable theorem about the new function.
(defthm member-equal-via-loop-2-iff-member-equal
(iff (mv-nth 0 (member-equal-via-loop-2 a x))
(member-equal a x)))
; Test execution in the prover.
(thm (equal (loop$ with temp = '(1 2 3 4 5 6)
do
:values (nil nil)
(cond ((atom temp)
(loop-finish))
((equal (car temp) 3)
(return (mv t temp)))
(t (setq temp (cdr temp))))
finally (return (mv nil nil)))
'(t (3 4 5 6)))
:hints (("Goal" :in-theory '((:e do$)))))
; Test execution in the loop.
(assert-event
(loop$ with temp = '(1 2 3 4 5 6)
do
:values (nil nil)
(cond ((atom temp)
(loop-finish))
((equal (car temp) 3)
(return (mv t temp)))
(t (setq temp (cdr temp))))
finally (return (mv nil nil)))
:stobjs-out '(nil nil))
; As above, but membership test fails.
(must-fail
(assert-event
(loop$ with temp = '(1 2 3 4 5 6)
do
:values (nil nil)
(cond ((atom temp)
(loop-finish))
((equal (car temp) 7)
(return (mv t temp)))
(t (setq temp (cdr temp))))
finally (return (mv nil nil)))
:stobjs-out '(nil nil)))
; Test default for multiple values. This shows the importance of the call of
; values-list inserted for DO loop$s in ACL2 source function oneify, using
; loop$-stobjs-out. Here are also testing that the first argument of progn (or
; prog2) is translated with stobjs-out = t or stobjs-out = (nil).
(defun infinite-loop-mv ()
(declare (xargs :verify-guards nil))
(loop$ with temp of-type integer = 0
do
:measure (acl2-count temp)
:values (nil nil)
(progn (cw "Temp = ~x0~%" temp)
(setq temp (1+ temp)))
finally (return (mv 3 4))))
(thm (equal (infinite-loop-mv)
'(nil nil)))
(must-fail
(defun do-mv-5-bad (x)
; Modification of do-mv-2 that fails because it returns nil from implicit
; finally clause.
(declare (xargs :guard (true-listp x)))
(loop$ with temp = x
with result = nil
with len = 0
do
:values (nil nil)
:guard (and (true-listp temp)
(natp len))
(cond ((null temp)
(loop-finish))
((equal (car temp) 0)
(return (mv len result)))
(t (mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len))))))))
(defun do-mv-5 (x)
; Modification of do-mv-2 that succeeds in spite of having no finally clause,
; because there is no loop-finish call in the do-body.
(declare (xargs :guard (true-listp x)))
(loop$ with temp = x
with result = nil
with len = 0
do
:values (nil nil)
:guard (and (true-listp temp)
(natp len))
(cond ((null temp)
(return (mv len result)))
((equal (car temp) 0)
(return (mv len result)))
(t (mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len)))))))
; Here is an analogue of do-loop-counting-up (above) that returns multiple
; values that include a stobj.
(defun do-loop-counting-up-mv (i0 max st)
(declare (xargs :guard (and (natp i0) (natp max))
:verify-guards nil
:stobjs st))
(loop$ with i of-type (satisfies natp) = i0
with cnt of-type integer = 0
do
:measure (nfix (- max i))
:guard (natp max)
:values (nil st)
(if (>= i max)
(loop-finish)
(progn (setq cnt (+ 1 cnt))
(setq st (update-fld i st))
(setq i (+ 1 i))))
finally
(return
(mv (list 'from i0 'to max 'is cnt 'steps 'and 'fld '= (fld st))
st))))
; Repeating an experiment shown above, but on a different laptop:
#|
ACL2 !>(time$ (do-loop-counting-up 1 1000000))
; (EV-REC *RETURN-LAST-ARG3* ...) took
; 57.72 seconds realtime, 57.71 seconds runtime
; (4,080,550,752 bytes allocated).
(FROM 1 TO 1000000 IS 999999 STEPS)
ACL2 !>(verify-guards do-loop-counting-up)
[[.. output omitted ..]]
Prover steps counted: 400639
DO-LOOP-COUNTING-UP
ACL2 !>(time$ (do-loop-counting-up 1 1000000))
; (EV-REC *RETURN-LAST-ARG3* ...) took
; 0.00 seconds realtime, 0.00 seconds runtime
; (144 bytes allocated).
(FROM 1 TO 1000000 IS 999999 STEPS)
ACL2 !>
|#
; And now repeating that experiment for the new version.
#|
ACL2 !>(time$ (do-loop-counting-up-mv 1 1000000 st))
; (EV-REC *RETURN-LAST-ARG3* ...) took
; 67.41 seconds realtime, 67.39 seconds runtime
; (4,688,677,328 bytes allocated).
((FROM 1 TO 1000000
IS 999999 STEPS AND FLD = 999999)
<st>)
ACL2 !>(verify-guards do-loop-counting-up-mv)
[[.. output omitted ..]]
Prover steps counted: 634086
DO-LOOP-COUNTING-UP-MV
ACL2 !>(time$ (do-loop-counting-up-mv 1 1000000 st))
; (EV-REC *RETURN-LAST-ARG3* ...) took
; 0.01 seconds realtime, 0.01 seconds runtime
; (256 bytes allocated).
((FROM 1 TO 1000000
IS 999999 STEPS AND FLD = 999999)
<st>)
ACL2 !>
|#
; Test direct execution of do$.
(assert-event
(equal
(nth 3 (body 'do-mv-2 nil (w state)))
'(DO$
'(LAMBDA
(ALIST)
(DECLARE
(XARGS :GUARD (IF (ALISTP ALIST)
(IF (TRUE-LISTP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(NATP (CDR (ASSOC-EQ-SAFE 'LEN ALIST)))
'NIL)
'NIL)
:SPLIT-TYPES T)
(IGNORABLE ALIST))
(RETURN-LAST
'PROGN
'(LAMBDA$
(ALIST)
(DECLARE
(XARGS :GUARD (AND (ALISTP ALIST)
(TRUE-LISTP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(NATP (CDR (ASSOC-EQ-SAFE 'LEN ALIST))))))
(LET ((TEMP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(RESULT (CDR (ASSOC-EQ-SAFE 'RESULT ALIST)))
(LEN (CDR (ASSOC-EQ-SAFE 'LEN ALIST))))
(DECLARE (IGNORABLE TEMP RESULT LEN))
(ACL2-COUNT TEMP)))
((LAMBDA (TEMP RESULT LEN)
(ACL2-COUNT TEMP))
(CDR (ASSOC-EQ-SAFE 'TEMP ALIST))
(CDR (ASSOC-EQ-SAFE 'RESULT ALIST))
(CDR (ASSOC-EQ-SAFE 'LEN ALIST)))))
(CONS (CONS 'TEMP X)
(CONS (CONS 'RESULT 'NIL)
(CONS (CONS 'LEN '0) 'NIL)))
'(LAMBDA
(ALIST)
(DECLARE
(XARGS :GUARD (IF (ALISTP ALIST)
(IF (TRUE-LISTP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(NATP (CDR (ASSOC-EQ-SAFE 'LEN ALIST)))
'NIL)
'NIL)
:SPLIT-TYPES T)
(IGNORABLE ALIST))
(RETURN-LAST
'PROGN
'(LAMBDA$
(ALIST)
(DECLARE
(XARGS :GUARD (AND (ALISTP ALIST)
(TRUE-LISTP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(NATP (CDR (ASSOC-EQ-SAFE 'LEN ALIST))))))
(LET
((TEMP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(RESULT (CDR (ASSOC-EQ-SAFE 'RESULT ALIST)))
(LEN (CDR (ASSOC-EQ-SAFE 'LEN ALIST))))
(DECLARE (IGNORABLE TEMP RESULT LEN))
(IF
(NULL TEMP)
(CONS ':LOOP-FINISH
(CONS 'NIL
(CONS (CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL)))
'NIL)))
(CONS
'NIL
(CONS
'NIL
(CONS ((LAMBDA (MV0)
((LAMBDA (TEMP RESULT LEN)
(CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL))))
(MV-NTH '0 MV0)
(MV-NTH '1 MV0)
(MV-NTH '2 MV0)))
(CONS (CDR TEMP)
(CONS (CONS (CAR TEMP) RESULT)
(CONS (BINARY-+ '1 LEN) 'NIL))))
'NIL))))))
((LAMBDA
(TEMP RESULT LEN)
(IF
(NULL TEMP)
(CONS ':LOOP-FINISH
(CONS 'NIL
(CONS (CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL)))
'NIL)))
(CONS
'NIL
(CONS
'NIL
(CONS ((LAMBDA (MV0)
((LAMBDA (TEMP RESULT LEN)
(CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL))))
(MV-NTH '0 MV0)
(MV-NTH '1 MV0)
(MV-NTH '2 MV0)))
(CONS (CDR TEMP)
(CONS (CONS (CAR TEMP) RESULT)
(CONS (BINARY-+ '1 LEN) 'NIL))))
'NIL)))))
(CDR (ASSOC-EQ-SAFE 'TEMP ALIST))
(CDR (ASSOC-EQ-SAFE 'RESULT ALIST))
(CDR (ASSOC-EQ-SAFE 'LEN ALIST)))))
'(LAMBDA
(ALIST)
(DECLARE (XARGS :GUARD (ALISTP ALIST)
:SPLIT-TYPES T)
(IGNORABLE ALIST))
(RETURN-LAST
'PROGN
'(LAMBDA$
(ALIST)
(DECLARE (XARGS :GUARD (ALISTP ALIST)))
(LET ((TEMP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(RESULT (CDR (ASSOC-EQ-SAFE 'RESULT ALIST)))
(LEN (CDR (ASSOC-EQ-SAFE 'LEN ALIST))))
(DECLARE (IGNORABLE TEMP RESULT LEN))
(CONS ':RETURN
(CONS (CONS LEN (CONS RESULT 'NIL))
(CONS (CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL)))
'NIL)))))
((LAMBDA (TEMP RESULT LEN)
(CONS ':RETURN
(CONS (CONS LEN (CONS RESULT 'NIL))
(CONS (CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL)))
'NIL))))
(CDR (ASSOC-EQ-SAFE 'TEMP ALIST))
(CDR (ASSOC-EQ-SAFE 'RESULT ALIST))
(CDR (ASSOC-EQ-SAFE 'LEN ALIST)))))
'(NIL NIL)
'(ACL2-COUNT TEMP)
'(LOOP$ WITH TEMP = X WITH RESULT
= NIL WITH LEN = 0 DO :VALUES (NIL NIL)
:GUARD
(AND (TRUE-LISTP TEMP) (NATP LEN))
(IF (NULL TEMP)
(LOOP-FINISH)
(MV-SETQ (TEMP RESULT LEN)
(MV (CDR TEMP)
(CONS (CAR TEMP) RESULT)
(1+ LEN))))
FINALLY (RETURN (MV LEN RESULT))))))
; Below, we take the DO$ call from what is just above, unchanged.
(assert-event
(mv-let
(len result)
(let ((x '(4 6 8)))
(DO$
'(LAMBDA
(ALIST)
(DECLARE
(XARGS :GUARD (IF (ALISTP ALIST)
(IF (TRUE-LISTP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(NATP (CDR (ASSOC-EQ-SAFE 'LEN ALIST)))
'NIL)
'NIL)
:SPLIT-TYPES T)
(IGNORABLE ALIST))
(RETURN-LAST
'PROGN
'(LAMBDA$
(ALIST)
(DECLARE
(XARGS :GUARD (AND (ALISTP ALIST)
(TRUE-LISTP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(NATP (CDR (ASSOC-EQ-SAFE 'LEN ALIST))))))
(LET ((TEMP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(RESULT (CDR (ASSOC-EQ-SAFE 'RESULT ALIST)))
(LEN (CDR (ASSOC-EQ-SAFE 'LEN ALIST))))
(DECLARE (IGNORABLE TEMP RESULT LEN))
(ACL2-COUNT TEMP)))
((LAMBDA (TEMP RESULT LEN)
(ACL2-COUNT TEMP))
(CDR (ASSOC-EQ-SAFE 'TEMP ALIST))
(CDR (ASSOC-EQ-SAFE 'RESULT ALIST))
(CDR (ASSOC-EQ-SAFE 'LEN ALIST)))))
(CONS (CONS 'TEMP X)
(CONS (CONS 'RESULT 'NIL)
(CONS (CONS 'LEN '0) 'NIL)))
'(LAMBDA
(ALIST)
(DECLARE
(XARGS :GUARD (IF (ALISTP ALIST)
(IF (TRUE-LISTP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(NATP (CDR (ASSOC-EQ-SAFE 'LEN ALIST)))
'NIL)
'NIL)
:SPLIT-TYPES T)
(IGNORABLE ALIST))
(RETURN-LAST
'PROGN
'(LAMBDA$
(ALIST)
(DECLARE
(XARGS :GUARD (AND (ALISTP ALIST)
(TRUE-LISTP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(NATP (CDR (ASSOC-EQ-SAFE 'LEN ALIST))))))
(LET
((TEMP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(RESULT (CDR (ASSOC-EQ-SAFE 'RESULT ALIST)))
(LEN (CDR (ASSOC-EQ-SAFE 'LEN ALIST))))
(DECLARE (IGNORABLE TEMP RESULT LEN))
(IF
(NULL TEMP)
(CONS ':LOOP-FINISH
(CONS 'NIL
(CONS (CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL)))
'NIL)))
(CONS
'NIL
(CONS
'NIL
(CONS ((LAMBDA (MV0)
((LAMBDA (TEMP RESULT LEN)
(CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL))))
(MV-NTH '0 MV0)
(MV-NTH '1 MV0)
(MV-NTH '2 MV0)))
(CONS (CDR TEMP)
(CONS (CONS (CAR TEMP) RESULT)
(CONS (BINARY-+ '1 LEN) 'NIL))))
'NIL))))))
((LAMBDA
(TEMP RESULT LEN)
(IF
(NULL TEMP)
(CONS ':LOOP-FINISH
(CONS 'NIL
(CONS (CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL)))
'NIL)))
(CONS
'NIL
(CONS
'NIL
(CONS ((LAMBDA (MV0)
((LAMBDA (TEMP RESULT LEN)
(CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL))))
(MV-NTH '0 MV0)
(MV-NTH '1 MV0)
(MV-NTH '2 MV0)))
(CONS (CDR TEMP)
(CONS (CONS (CAR TEMP) RESULT)
(CONS (BINARY-+ '1 LEN) 'NIL))))
'NIL)))))
(CDR (ASSOC-EQ-SAFE 'TEMP ALIST))
(CDR (ASSOC-EQ-SAFE 'RESULT ALIST))
(CDR (ASSOC-EQ-SAFE 'LEN ALIST)))))
'(LAMBDA
(ALIST)
(DECLARE (XARGS :GUARD (ALISTP ALIST)
:SPLIT-TYPES T)
(IGNORABLE ALIST))
(RETURN-LAST
'PROGN
'(LAMBDA$
(ALIST)
(DECLARE (XARGS :GUARD (ALISTP ALIST)))
(LET ((TEMP (CDR (ASSOC-EQ-SAFE 'TEMP ALIST)))
(RESULT (CDR (ASSOC-EQ-SAFE 'RESULT ALIST)))
(LEN (CDR (ASSOC-EQ-SAFE 'LEN ALIST))))
(DECLARE (IGNORABLE TEMP RESULT LEN))
(CONS ':RETURN
(CONS (CONS LEN (CONS RESULT 'NIL))
(CONS (CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL)))
'NIL)))))
((LAMBDA (TEMP RESULT LEN)
(CONS ':RETURN
(CONS (CONS LEN (CONS RESULT 'NIL))
(CONS (CONS (CONS 'TEMP TEMP)
(CONS (CONS 'RESULT RESULT)
(CONS (CONS 'LEN LEN) 'NIL)))
'NIL))))
(CDR (ASSOC-EQ-SAFE 'TEMP ALIST))
(CDR (ASSOC-EQ-SAFE 'RESULT ALIST))
(CDR (ASSOC-EQ-SAFE 'LEN ALIST)))))
'(NIL NIL)
'(ACL2-COUNT TEMP)
'(LOOP$ WITH TEMP = X WITH RESULT
= NIL WITH LEN = 0 DO :VALUES (NIL NIL)
:GUARD
(AND (TRUE-LISTP TEMP) (NATP LEN))
(IF (NULL TEMP)
(LOOP-FINISH)
(MV-SETQ (TEMP RESULT LEN)
(MV (CDR TEMP)
(CONS (CAR TEMP) RESULT)
(1+ LEN))))
FINALLY (RETURN (MV LEN RESULT)))))
(and (eql len 3)
(equal result '(8 6 4)))))
; The following failed in the initial implementation of DO loop$ expressions.
(defun g3 ()
(loop$ with ans = nil with i = 0
do
:measure (nfix (- 3 i))
(progn (if (> (nfix i) 2)
(loop-finish)
(setq i (1+ i)))
(setq ans
(loop$ with ans2 = ans with j = 0
do
:measure (nfix (- 6 j))
(progn
(if (> (nfix j) 5)
(loop-finish)
(setq j (1+ j)))
(setq ans2 (cons (cons i j) ans2)))
finally (return ans2))))
finally (return ans)))
(assert-event (equal (g3)
'((3 . 6)
(3 . 5)
(3 . 4)
(3 . 3)
(3 . 2)
(3 . 1)
(2 . 6)
(2 . 5)
(2 . 4)
(2 . 3)
(2 . 2)
(2 . 1)
(1 . 6)
(1 . 5)
(1 . 4)
(1 . 3)
(1 . 2)
(1 . 1))))
(defun do-mv-6 (x)
; Modification of do-mv-5 that has
; both return and loop-finish in the loop body and also a finally body.
(declare (xargs :guard (true-listp x)))
(loop$ with temp = x
with result = nil
with len = 0
do
:values (nil nil)
:guard (and (true-listp temp)
(natp len))
(cond ((null temp)
(return (mv len result)))
((equal (car temp) 0)
(loop-finish))
(t (mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len)))))
finally
(return (mv len result))))
(assert-event
(mv-let
(len result)
(do-mv-5 '(a b c))
(and (= len 3)
(equal result '(c b a)))))
(assert-event
(mv-let
(len result)
(do-mv-6 '(a b c))
(and (= len 3)
(equal result '(c b a)))))
; The following tests aren't about loops, so they may be better placed in a
; different book. But warrants were first allowed for functions that take
; stobjs when supporting DO loop$ expressions, so we naturally placed the tests
; here. The first update below is discussed in a comment in
; logic-code-to-runnable-code.
; Initialize st.
(value-triple (update-fld 1 st)
:stobjs-out '(st))
; Update a non-live version of st.
(assert-event
(equal (apply$ '(lambda (x)
(declare (xargs :guard (stp x) :split-types t))
(fld x))
'((17)))
17))
; Check that live stobj didn't change.
(assert-event
(equal (fld st) 1))
; Here is a more complex version of the test above.
(assert-event
(equal (apply$ 'apply$
'((lambda (x)
(declare (xargs :guard (stp x) :split-types t))
(fld x))
((17))))
17))
; Check that live stobj didn't change.
(assert-event
(equal (fld st) 1))
; A do loop$ within a for loop$:
(defun loop$-for-with-1 (n)
(declare (xargs :guard (natp n)))
(loop$ for i of-type (integer 0 *) from 1 to n
collect
(mv-let (x y)
(loop$ with k2 of-type (integer 0 *) = i
with temp = nil
do
:values (nil nil)
(if (zp k2)
(return (mv temp temp))
(progn (setq temp (cons k2 temp))
(setq k2 (1- k2)))))
(list (len x) y))))
(assert-event (equal (loop$-for-with-1 3)
'((1 (1))
(2 (1 2))
(3 (1 2 3)))))
; A for loop$ within a do loop$:
(defun loop$-with-for-1 (n)
(declare (type (integer 1 *) n))
(loop$ with i of-type (integer 0 *) = n
with ans1 = nil
with ans2 of-type integer = 0
do
:values (nil nil)
(if (zp i)
(return (mv ans2 ans1))
(let ((temp (loop$ for k2 from 1 to i
collect k2)))
(mv-setq (ans1 ans2 i)
(mv (append temp ans1)
(+ ans2 (len temp))
(1- i)))))))
(assert-event (mv-let (a b)
(loop$-with-for-1 4)
(and (equal a 10)
(equal b '(1 1 2 1 2 3 1 2 3 4)))))
(must-fail
; Error message:
#|
Illegal assignment in the finally body:
it is illegal to attempt an assignment (with SETQ or MV-SETQ) to ANS,
which is not among the local variables (ANS2 and J) in the lexical
scope containing (SETQ ANS ANS2).
|#
(defun non-local-asst ()
(loop$ with ans = nil with i = 0
do
(progn (if (> (nfix i) 2) (loop-finish) (setq i (1+ i)))
(loop$ with ans2 = ans with j = 0 do
(progn
(if (> (nfix j) 5) (loop-finish) (setq j (1+ j)))
(setq ans2 (cons (cons i j) ans2)))
finally (setq ans ans2)))
finally (return ans))))
(defwarrant put-global)
(defthm state-p1-update-nth-2-do-mv-7
(implies (state-p1 st)
(state-p1 (update-nth 2
(add-pair 'do-mv-7 val (nth 2 st))
st)))
:hints (("Goal" :in-theory (enable state-p1))))
(defun do-mv-7 (x state)
; Modification of do-mv-6 that modifies state.
(declare (xargs :guard (true-listp x) :stobjs state))
(loop$ with temp = x
with result = nil
with len = 0
do
:values (state nil nil)
:guard (and (true-listp temp)
(natp len)
(state-p state))
(cond ((null temp)
(return (mv state len result)))
((equal (car temp) 0)
(loop-finish))
(t (mv-setq (temp result len state)
(let ((state (f-put-global 'do-mv-7 len state)))
(mv (cdr temp)
(cons (car temp) result)
(1+ len)
state)))))
finally
(return (mv state len result))))
(assert-event
(pprogn
(f-put-global 'do-mv-7 :uninitialized state)
(mv-let
(state len result)
(do-mv-7 '(a b c) state)
(mv (and (= len 3)
(equal (f-get-global 'do-mv-7 state) 2)
(equal result '(c b a)))
state)))
:stobjs-out '(nil state))
(must-fail
; It appears that the HyperSpec actually allows repeated variables in a
; multiple-value-setq, so we could presumably allow that for mv-setq. However,
; that doesn't seem like a particularly useful capability, and somehow it seems
; a bit open to problems (e.g., does every Lisp implementation bind the
; variables from left to right?). So we disallow that.
(defun mv-repeated-vars (x)
(declare (xargs :guard (true-listp x)))
(loop$ with lst = x
with val = nil
do
(if (atom lst)
(return val)
(mv-setq (val val lst)
(mv (car lst)
(car lst)
(cdr lst))))
finally (return val))))
(defun do-mv-2-a (x)
; This variant of do-mv-2 has loop$ on the else branch of the top-level if,
; where we know the stobjs-out.
(declare (xargs :guard (true-listp x)))
(if (eq (car x) 'abc)
(mv (car x) (cdr x))
(loop$ with temp = x
with result = nil
with len = 0
do
:values (nil nil)
:guard (and (true-listp temp)
(natp len))
(if (null temp)
(loop-finish)
(mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len))))
finally (return (mv len result)))))
(must-fail
; This variant of do-mv-2-a has loop$ on the else branch that doesn't match
; the stobjs-out determined from the then branch.
(defun do-mv-2-a-bad (x)
(declare (xargs :guard (true-listp x)))
(if (eq (car x) 'abc)
(mv 17 (car x) (cdr x))
(loop$ with temp = x
with result = nil
with len = 0
do
:values (nil nil)
:guard (and (true-listp temp)
(natp len))
(if (null temp)
(loop-finish)
(mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len))))
finally (return (mv len result)))))
)
(defun do-mv-2-b (x)
; This variant of do-mv-2 has loop$ on the then branch of the top-level if,
; where we do not yet know the stobjs-out.
(declare (xargs :guard (true-listp x)))
(if (eq (car x) 'abc)
(loop$ with temp = x
with result = nil
with len = 0
do
:values (nil nil)
:guard (and (true-listp temp)
(natp len))
(if (null temp)
(loop-finish)
(mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len))))
finally (return (mv len result)))
(mv (car x) (cdr x))))
(must-fail
; This variant of do-mv-1 uses an mv-setq to set a locally-scoped variable.
; That is no longer legal in 2022!
(defun do-mv-1-alt (x)
(declare (xargs :guard (true-listp x)))
(loop$ with temp = x
with result = nil
with len = 0
with my-car = 17
do
:guard (and (true-listp temp)
(natp len))
(if (null temp)
(loop-finish)
(let ((my-car 0))
(progn (setq my-car (car temp))
(mv-setq (temp result len)
(mv (cdr temp)
(cons my-car result)
(1+ len))))))
finally (return (list len result my-car))))
)
(defun do-mv-1-alt (x)
; Here's a variant of the function above in which the let-bound variable is
; below the mv-setq.
(declare (xargs :guard (true-listp x)))
(loop$ with temp = x
with result = nil
with len = 0
with my-car = 17
do
:guard (and (true-listp temp)
(natp len))
(if (null temp)
(loop-finish)
(progn (setq my-car (car temp))
(mv-setq (temp result len)
(let ((my-car 0))
(mv (cdr temp)
(cons my-car result)
(1+ len))))))
finally (return (list len result my-car))))
(assert-event (and (equal (do-mv-1-alt '(a b c d))
'(4 (0 0 0 0) D))
(equal (do-mv-1 '(a b c d))
'(4 (D C B A)))))
(must-fail
; This is just the body of loop-mv-1, with x replaced by '(a b c). The error
; message says, appropriately, that "We prohibit certain events .. from being
; ancestrally dependent on loop$ and lambda$ expressions...."
(defconst *c*
(loop$ with temp = '(a b c)
with result = nil
with len = 0
do
:guard (and (true-listp temp)
(natp len))
(if (null temp)
(loop-finish)
(mv-setq (temp result len)
(mv (cdr temp)
(cons (car temp) result)
(1+ len))))
finally (return (list len result)))))
; Check that flet isn't allowed.
(defun$ my-op (x y)
(declare (xargs :guard t))
(* (nfix x) (nfix y)))
(must-fail
(defun for-loop-with-flet (lst)
(declare (xargs :guard (true-listp lst) :verify-guards nil))
(flet ((my-op (x y) (+ (nfix x) (nfix y))))
(loop$ for x in lst
collect (my-op 3 (nfix x))))))
(must-fail
(defun do-loop-with-flet (lst)
(declare (xargs :guard t :verify-guards nil))
(flet ((my-op (x y) (+ (nfix x) (nfix y))))
(loop$ with temp = lst
with ans of-type integer = 1
do
(if (atom temp)
(return ans)
(progn (setq ans (my-op (car temp) ans))
(setq temp (cdr temp))))))))
; In the variant of do-mv-3 below, we warrant a function that returns state and
; is not a stobj primitive, and use it in the do loop$.
(defun$ do-mv-3-alt-helper (st a x)
(declare (xargs :stobjs st))
(let ((st (update-fld
(+ (ifix a) (ifix (fld st)))
st)))
(mv st x)))
(defun do-mv-3-alt (lst st)
(declare (xargs :stobjs st :guard (true-listp lst)))
(let ((st (update-fld 0 st)))
(loop$ with temp of-type (satisfies true-listp) = lst
do
:values (st)
:guard
; We include (stp st) because stobj-optp = nil for lambdas; see
; guard-clauses-for-fn1.
(stp st)
(cond ((endp temp)
(loop-finish))
(t (mv-setq (st temp)
(do-mv-3-alt-helper st (car temp) (cdr temp)))))
finally (return st))))
(assert-event
(let ((st (do-mv-3-alt '(1 2 4) st)))
(mv (equal (fld st) 7) st))
:stobjs-out '(nil st))
; The following example comes from :DOC loop$.
(defun test-loop$ (i0 max st)
(declare (xargs :guard (and (natp i0) (natp max))
:stobjs st))
(loop$ with i of-type (satisfies natp) = i0
with cnt of-type integer = 0
do
:measure (nfix (- max i))
:guard (and (natp max)
(natp cnt)
(stp st))
:values (nil st)
(if (>= i max)
(loop-finish)
(progn (setq st (update-fld i st))
(mv-setq (cnt i)
(mv (+ 1 cnt) (+ 1 i)))))
finally
:guard (stp st)
(return
(mv (list 'from i0 'to max 'is cnt 'steps 'and 'fld '= (fld st))
st))))
; Until around mid-January 2022 there was a bug in the handling of stobjs by DO
; loop$s, due to lack of sufficient attention to single-threadedness. The
; assert-event below the following definition had failed; it now succeeds.
(defun do-loop-single-threaded-check (st)
; This function runs a DO loop$ whose body accesses st after updating it (see
; the second (fld st) below.
(declare (xargs :stobjs st))
(loop$ with temp = '(1 2 3 4)
with x = nil
do
:values (nil st)
:guard (and (stp st)
(true-listp temp))
(cond ((endp temp)
(return (mv (fld st) st)))
(t (progn (setq st
(update-fld (cons (car temp)
(fld st))
st))
(setq x (fld st)) ; This causes a problem!
(setq temp (cdr temp)))))))
(assert-event
; Before the bug mentioned above was fixed, val below was (4 4 3 3 2 2 1 1).
(mv-let (val st)
(with-guard-checking
:none
(let ((st (update-fld nil st)))
(do-loop-single-threaded-check st)))
(mv (equal val '(4 3 2 1)) st))
:stobjs-out '(nil st))
; The bug illustrated below went away after we disallowed, around mid-January
; 2022, any form (setq x ...) under a let-binding of x.
; The raw Lisp error below was due to beta-reducing lambdas in
; cmp-do-body-pass1, which loses type information, allowing verify-guards to
; succeed where it shouldn't. Indeed, when we evaluated the trace$ form shown
; just above the defun below and then submitted that defun, we saw the
; following in the trace output:
#|
1> (LIST-OF-CHECK-DCL-GUARDIAN-TERMS (CHECK-DCL-GUARDIAN (NULL ACC)
'(NULL ACC)))
<1 (LIST-OF-CHECK-DCL-GUARDIAN-TERMS ((CHECK-DCL-GUARDIAN (NULL ACC)
'(NULL ACC))))
1> (SUBLIS-VAR-LST ((ACC QUOTE NIL) (TEMP . TEMP))
((CHECK-DCL-GUARDIAN (NULL ACC)
'(NULL ACC))))
<1 (SUBLIS-VAR-LST ((CHECK-DCL-GUARDIAN (NULL 'NIL)
'(NULL ACC))))
|#
; Here is the problematic code from cmp-do-body-pass1.
#|
(guardians1
(append (sublis-var-lst alist1
(list-of-check-dcl-guardian-terms
check-dcl-guardians-term))
guardians))
|#
; And here is a self-contained script that exhibited the bug.
#|
(include-book "projects/apply/top" :dir :system)
:q
(declaim (optimize (safety 3))) ; to get the raw Lisp error in CCL
(lp)
(trace$ list-of-check-dcl-guardian-terms sublis-var-lst)
(defun foo ()
(loop$ with temp of-type (satisfies true-listp) = '(1 2 3) with acc = nil
do
(cond ((endp temp)
(return acc))
(t (progn (setq acc (cons (car temp) acc))
(let ((acc nil))
(declare (type (satisfies null) acc))
(progn (setq acc (cdr temp))
(setq temp acc))))))))
(untrace$) ; eliminate noise below
(foo) ; ok: gives (3 2 1)
(verify-guards foo)
(foo) ; raw Lisp error
|#
(must-fail
(defun bad-superior-let-binding ()
(loop$ with temp of-type (satisfies true-listp) = '(1 2 3) with acc = nil
do
(cond ((endp temp)
(return acc))
(t (progn (setq acc (cons (car temp) acc))
(let ((acc nil))
(declare (type (satisfies null) acc))
(progn (setq acc (cdr temp))
(setq temp acc)))))))))
; The following is an error because x is not a with variable of the inner loop$
; expression. Programmers can work around that restriction, for example by
; binding "with x = x" in the inner loop$ as illustrated below.
(must-fail
(defun do-loop-nested-outer-with-var-bad (lst)
(loop$ with x = lst
do
(return
(loop$ with temp = '(1 2 3)
do
(cond ((endp temp)
(return (pairlis$ x x)))
(t (progn (setq x (cons (car temp) x))
(setq temp (cdr temp))))))))))
(defun do-loop-nested-outer-with-var (lst)
(loop$ with x = lst
do
(return
(loop$ with temp = '(1 2 3)
with x = x
do
(cond ((endp temp)
(return (pairlis$ x x)))
(t (progn (setq x (cons (car temp) x))
(setq temp (cdr temp)))))))))
(assert-event (equal (do-loop-nested-outer-with-var '(a b))
'((3 . 3)
(2 . 2)
(1 . 1)
(A . A)
(B . B))))
; Some more improvements for DO loop$ expressions were made on 2/2/2022. The
; tests below behave better after those improvements.
; This failed before 2/2/2022 (bad translation, so measure allegedly failed to
; decrease).
(assert-event
(equal (loop$ with temp = '(1 2 3)
with ans = 0
do
:measure (acl2-count temp)
(if (endp temp)
(loop-finish)
(let ((xxx (car temp)))
(declare (type integer xxx))
(progn (setq ans (+ xxx ans))
(setq temp (cdr temp)))))
finally (return ans))
6))
; This loop$ returned 0 before 2/2/2022.
(assert-event
(equal (loop$ with temp = '(1 2 3)
with ans = 0
do
:measure (acl2-count temp)
(if (endp temp)
(loop-finish)
(progn (let ((xxx (car temp)))
(declare (type integer xxx))
(setq ans (+ xxx ans)))
(setq temp (cdr temp))))
finally (return ans))
6))
; The next set of definitions are ones that shouldn't guard-verify. But guard
; verification succeeded because the translation of DO loop$ expressions tended
; to throw away expressions that had no effect on the alist being built but
; could cause guard violations. The generated proof obligations for guard
; failed to account for those expressions, leading to successful guard
; verification yet runtime guard violatios. Starting 2/2/2022, guard proof
; obligations require proving (CONSP (CDR (ASSOC-EQ-SAFE 'Y ALIST))), which
; (happily) fails to prove.
(defun$ my-car (x) (declare (xargs :guard (consp x))) (car x))
; Insert my-car call that should cause guard verification to fail.
(must-fail
(defun do-loop2-alternative1-bad (lst y)
(declare (xargs :guard (nat-listp lst)))
(loop$ with temp = lst
with ans = 0
do
:guard (and (nat-listp temp)
(integerp ans))
(if (endp temp)
(return ans)
(progn (setq ans (+ (car temp) ans))
(my-car y)
(setq temp (cdr temp))))))
)
; Raw Lisp error from (my-car 7) when the above was admitted:
; (do-loop2-alternative1-bad '(4) 7)
; Simpler example: This guard verified before 2/2/2022
(must-fail
(defun gv1 (lst y)
(declare (xargs :guard t))
(loop$ with temp = lst
do
(if (atom temp)
(return temp)
(progn (my-car y)
(setq temp (cdr temp))))))
)
; Raw Lisp error before 2/2/2022 from (my-car 7) when the above was admitted:
; (gv1 '(3) 7)
(must-fail
(defun gv2 (lst y)
(declare (xargs :guard t))
(loop$ with temp = lst
do
(if (atom temp)
(return temp)
(progn (my-car y)
(setq temp (cdr temp))))))
)
; Raw Lisp error before 2/2/2022 from (my-car 7) when the above was admitted:
; (gv2 '(3) 7)
(must-fail
(defun gv3 ()
(declare (xargs :guard t))
(loop$ with y = 7 do
(loop-finish)
finally (my-car y)))
)
; Raw Lisp error before 2/2/2022 from (my-car 7) when the above was admitted:
; (gv3)
(must-fail
(defun gv4 ()
(declare (xargs :guard t))
(loop$ with y = 7 do
(loop-finish)
finally (if (my-car y) 3 4)))
)
; Raw Lisp error before 2/2/2022 from (my-car 7) when the above was admitted:
; (gv4)
; The following prints once per iteration starting 2/2/2022. Previously it
; didn't print at all until it was guard-verified.
(defun loop-prints-print-cw ()
(loop$ with x = '(a b c)
do
(if (atom x)
(return x)
(progn (cw "Next: ~x0~%" (car x))
(setq x (cdr x))))))
(assert-event (null (loop-prints-print-cw)))
; Error message should be clear (but it wasn't before 2/2/2022):
(must-fail
(defun bad-finally ()
(declare (xargs :guard t))
(loop$ with y = 7 do
:values (nil nil)
(loop-finish)
finally (let ((x 17)) (list x y))))
)
; This is fine.
(defun finally-cw ()
(loop$ with y = 7 do
(loop-finish)
finally (let ((x 17)) (cw "(list x y) = ~x0~%" (list x y)))))
; The following should print "(list x y) = (17 7)", but didn't before 2/2/2022.
(assert-event (null (finally-cw)))
; This failed at one point.
(defun formerly-hard-error-1 (lst)
(loop$ with temp = lst with ans = nil
do
(if (atom temp)
(return ans)
(progn (ec-call (nth 0 ans))
(setq ans (cons (car temp) ans))
(setq temp (cdr temp))))))
; This can give the wrong answer when our algorithm updates the evolving alist
; using the let-binding below. That's why, in source function cmp-do-body-1,
; we disallow bindings of variables occurring free in the DO loop$, not merely
; the with-bound variables.
(must-fail
(defun bad-var (lst)
(loop$ with temp = lst with ans = nil
do
(if (atom temp)
(return ans)
(let ((lst (and (consp lst) (cdr lst))))
(progn (setq ans (list* lst (car temp) ans))
(setq temp (cdr temp)))))))
)
(defun bad-var-fixed (lst)
(loop$ with temp = lst with ans = nil
do
(if (atom temp)
(return ans)
(let ((lst2 (and (consp lst) (cdr lst))))
(progn (setq ans (list* lst2 (car temp) ans))
(setq temp (cdr temp)))))))
(assert-event
(equal
(bad-var-fixed '(1 2 3))
'((2 3) 3 (2 3) 2 (2 3) 1)))
; The following failed when we simply beta-reduced the let.
(assert-event
(equal
(loop$ with lst = '(a b c)
with blk-index = 0
with row-index = 1
do
(let ((temp (nth blk-index lst)))
(progn (setq lst (update-nth blk-index row-index lst))
(setq lst (update-nth row-index temp lst))
(loop-finish)))
finally
(return lst))
'(1 A C)))
|