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 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126
|
/**************************************************************/
/* ********************************************************** */
/* * * */
/* * CNF TRANSLATOR * */
/* * * */
/* * $Module: CNF * */
/* * * */
/* * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 * */
/* * MPI fuer Informatik * */
/* * * */
/* * This program is free software; you can redistribute * */
/* * it and/or modify it under the terms of the FreeBSD * */
/* * Licence. * */
/* * * */
/* * This program is distributed in the hope that it will * */
/* * be useful, but WITHOUT ANY WARRANTY; without even * */
/* * the implied warranty of MERCHANTABILITY or FITNESS * */
/* * FOR A PARTICULAR PURPOSE. See the LICENCE file * */
/* * for more details. * */
/* * * */
/* * * */
/* $Revision: 1.10 $ * */
/* $State: Exp $ * */
/* $Date: 2010-02-22 14:09:57 $ * */
/* $Author: weidenb $ * */
/* * * */
/* * Contact: * */
/* * Christoph Weidenbach * */
/* * MPI fuer Informatik * */
/* * Stuhlsatzenhausweg 85 * */
/* * 66123 Saarbruecken * */
/* * Email: spass@mpi-inf.mpg.de * */
/* * Germany * */
/* * * */
/* ********************************************************** */
/**************************************************************/
/* $RCSfile: cnf.c,v $ */
#include "cnf.h"
#include "rules-inf.h"
#include "rules-red.h"
static TERM cnf_AntiPrenexPath(TERM, TERM);
static TERM cnf_ApplyDefinitionInternOnce(TERM, TERM, TERM, TERM, BOOL*);
static SYMBOL cnf_GetDualSymbol(SYMBOL symbol);
static TERM cnf_IsDefinition(TERM);
static void cnf_OptimizedSkolemFormula(PROOFSEARCH, TERM, char*, BOOL, TERM,
LIST*, LIST*, BOOL, HASH, int);
static int cnf_PredicateOccurrences(TERM, SYMBOL);
static void cnf_RplacVar(TERM, LIST, LIST);
static LIST cnf_SatUnit(PROOFSEARCH, LIST);
static LIST cnf_SkolemFunctionFormula(TERM, LIST, LIST, PRECEDENCE);
/* For every variable the depth in the current term, required for */
/* strong skolemization */
static int* cnf_VARIABLEDEPTHARRAY;
/* Holds a copy of the ProofSearch--Object built by cnf_Flotter */
/* during cnf_QueryFlotter */
static PROOFSEARCH cnf_SEARCHCOPY;
/* Proofsearch--Object for the function cnf_HaveProof. We need this */
/* to reduce the number of term stamps required. */
static PROOFSEARCH cnf_HAVEPROOFPS;
void cnf_Init(FLAGSTORE Flags)
/***************************************************************
INPUT: A flag store.
RETURNS: None.
SUMMARY: Initializes the CNF Module.
EFFECTS: Initializes global variables.
CAUTION: MUST BE CALLED BEFORE ANY OTHER CNF-FUNCTION.
***************************************************************/
{
/* If strong skolemization is performed, allocate array for variable depth */
if (flag_GetFlagIntValue(Flags, flag_CNFSTRSKOLEM))
cnf_VARIABLEDEPTHARRAY = (int*) memory_Malloc(sizeof(int[symbol__MAXSTANDARDVAR + 1]));
else
cnf_VARIABLEDEPTHARRAY = NULL;
cnf_SEARCHCOPY = prfs_Create();
cnf_HAVEPROOFPS = prfs_Create();
}
void cnf_Free(FLAGSTORE Flags)
/**************************************************************
INPUT: A flag store.
RETURNS: None.
SUMMARY: Frees the CNF Module.
***************************************************************/
{
/* If strong skolemization is performed, free array for variable depth */
if (flag_GetFlagIntValue(Flags, flag_CNFSTRSKOLEM)) {
memory_Free(cnf_VARIABLEDEPTHARRAY, sizeof(int[symbol__MAXSTANDARDVAR + 1]));
cnf_VARIABLEDEPTHARRAY = NULL;
}
prfs_Delete(cnf_SEARCHCOPY);
cnf_SEARCHCOPY = NULL;
prfs_Delete(cnf_HAVEPROOFPS);
cnf_HAVEPROOFPS = NULL;
}
static int cnf_GetFormulaPolarity(TERM term, TERM subterm)
/**********************************************************
INPUT: Two terms term and subterm where subterm is a
subterm of term.
RETURNS: The polarity of subterm in term.
********************************************************/
{
LIST scan;
TERM term1;
int polterm1,bottom;
bottom = vec_ActMax();
vec_Push((POINTER) 1);
vec_Push(term);
do {
term1 = (TERM)vec_PopResult();
polterm1 = (int)vec_PopResult();
if (term1 == subterm) {
vec_SetMax(bottom);
return polterm1;
}else
if (symbol_Equal(term_TopSymbol(term1),fol_Not())) {
vec_Push((POINTER) (- polterm1));
vec_Push(list_Car(term_ArgumentList(term1)));
}
if (symbol_Equal(term_TopSymbol(term1),fol_Exist()) ||
symbol_Equal(term_TopSymbol(term1),fol_All())) {
vec_Push((POINTER)polterm1);
vec_Push(list_Second(term_ArgumentList(term1)));
}
else
if (symbol_Equal(term_TopSymbol(term1),fol_Implies())) {
vec_Push((POINTER) (- polterm1));
vec_Push(list_Car(term_ArgumentList(term1)));
vec_Push((POINTER) polterm1);
vec_Push(list_Second(term_ArgumentList(term1)));
}
else
if (symbol_Equal(term_TopSymbol(term1),fol_Equiv())) {
vec_Push(0);
vec_Push(list_Car(term_ArgumentList(term1)));
vec_Push(0);
vec_Push(list_Second(term_ArgumentList(term1)));
}
else
if (symbol_Equal(term_TopSymbol(term1),fol_And()) ||
symbol_Equal(term_TopSymbol(term1),fol_Or())) {
for (scan = term_ArgumentList(term1);
!list_Empty(scan);
scan = list_Cdr(scan)) {
vec_Push((POINTER) polterm1);
vec_Push(list_Car(scan));
}
}
} while (bottom != vec_ActMax());
vec_SetMax(bottom);
misc_StartErrorReport();
misc_ErrorReport("\n In cnf_GetFormulaPolarity: Wrong arguments !\n");
misc_FinishErrorReport();
return -2;
}
static BOOL cnf_ContainsDefinitionIntern(TERM TopDef, TERM Def, int Polarity,
TERM* FoundPred)
/**********************************************************
INPUT: A term TopDef which is the top level term of the recursion.
A term Def which is searched for a definition.
A pointer to a term into which the predicate of the definition
is stored if it is found.
RETURNS: TRUE if Def contains a definition that can be converted
to standard form.
********************************************************/
{
/* AND / OR */
/* In these cases Def cannot be converted to standard form */
if ((symbol_Equal(term_TopSymbol(Def),fol_And()) && (Polarity == 1)) ||
(symbol_Equal(term_TopSymbol(Def),fol_Or()) && (Polarity == -1)))
return FALSE;
if (symbol_Equal(term_TopSymbol(Def), fol_And()) ||
symbol_Equal(term_TopSymbol(Def),fol_Or())) {
/* Polarity is ok */
LIST l;
for (l=term_ArgumentList(Def); !list_Empty(l); l=list_Cdr(l))
if (cnf_ContainsDefinitionIntern(TopDef, list_Car(l), Polarity, FoundPred))
return TRUE;
return FALSE;
}
/* Quantifiers */
if (fol_IsQuantifier(term_TopSymbol(Def)))
return cnf_ContainsDefinitionIntern(TopDef, term_SecondArgument(Def), Polarity, FoundPred);
/* Negation */
if (symbol_Equal(term_TopSymbol(Def),fol_Not()))
return cnf_ContainsDefinitionIntern(TopDef, term_FirstArgument(Def), -Polarity, FoundPred);
/* Implication */
if (symbol_Equal(term_TopSymbol(Def),fol_Implies())) {
if (Polarity==1) {
if (cnf_ContainsDefinitionIntern(TopDef, term_FirstArgument(Def), -Polarity, FoundPred))
return TRUE;
return cnf_ContainsDefinitionIntern(TopDef, term_SecondArgument(Def), Polarity, FoundPred);
}
return FALSE;
}
/* Equivalence */
if (symbol_Equal(term_TopSymbol(Def),fol_Equiv()) && (Polarity==1)) {
/* Check if equivalence itself is in correct form */
TERM defpredicate;
defpredicate = cnf_IsDefinition(Def);
if (defpredicate != (TERM) NULL) {
LIST predicate_vars, l, defpath;
BOOL allquantifierfound;
TERM super;
int pol;
/* Check if predicate occurs several times in TopDef */
/* if (cnf_PredicateOccurrences(TopDef, term_TopSymbol(defpredicate)) > 1) {}
puts("\n Predicate occurs more than once.");
return FALSE; */
/* Now make sure that the variables of the predicate are */
/* all--quantified and not in the scope of an exist quantifier */
/* predicate_vars = list_Copy(term_ArgumentList(defpredicate)); */
predicate_vars = term_ListOfVariables(defpredicate);
predicate_vars = term_DeleteDuplicatesFromList(predicate_vars);
/* So far (going bottom--up) no all-quantifier was found for */
/* a variable of the predicates' arguments */
allquantifierfound = FALSE;
/* Build defpath here by going bottom up */
/* At first, list of superterms on path is top down */
defpath = list_Nil();
super = Def;
while (super != (TERM) NULL) {
defpath = list_Cons(super, defpath);
super = term_Superterm(super);
}
/* No go top down and add polarities */
pol = 1;
for (l=defpath; !list_Empty(l); l=list_Cdr(l)) {
list_Rplaca(l, list_PairCreate((TERM) list_Car(l), (LIST) pol));
if (symbol_Equal(term_TopSymbol((TERM) list_Car(l)), fol_Not()))
pol = -pol;
else {
if (symbol_Equal(term_TopSymbol((TERM) list_Car(l)), fol_Implies()) &&
(term_FirstArgument((TERM) list_Car(l)) == (TERM) list_Car(list_Cdr(l))))
pol = -pol;
else
if (symbol_Equal(term_TopSymbol((TERM) list_Car(l)), fol_Equiv()))
pol = 0;
}
}
/* <defpath> is now a list of pairs (term, polarity) */
for (l=defpath; !list_Empty(l) && !list_Empty(predicate_vars); l=list_Cdr(l)) {
LIST pair;
TERM t;
int p;
/* Pair Term t / Polarity p */
pair = (LIST) list_Car(l);
t = (TERM) list_PairFirst(pair);
p = (int) list_PairSecond(pair);
if (fol_IsQuantifier(term_TopSymbol(t))) {
/* Variables of the predicate that are universally quantified are no problem */
if ((symbol_Equal(term_TopSymbol(t), fol_All()) && (p==1)) ||
(symbol_Equal(term_TopSymbol(t), fol_Exist()) && (p==-1))) {
LIST scan;
allquantifierfound = TRUE;
for (scan=fol_QuantifierVariables(t); !list_Empty(scan); scan=list_Cdr(scan))
predicate_vars = list_DeleteElement(predicate_vars,(TERM) list_Car(scan),
(BOOL (*)(POINTER,POINTER))term_Equal);
}
else {
/* Check if allquantified variables of the predicate are in scope of an exist--quantifier */
/* We already found an all quantified variable */
if (allquantifierfound) {
list_Delete(predicate_vars);
list_DeletePairList(defpath);
return FALSE;
}
else {
LIST scan;
/* Check if a variable of the predicate is exist--quantified */
for (scan=fol_QuantifierVariables(t); !list_Empty(scan); scan=list_Cdr(scan)) {
if (term_ListContainsTerm(predicate_vars, list_Car(scan))) {
list_Delete(predicate_vars);
list_DeletePairList(defpath);
return FALSE;
}
}
}
}
}
}
#ifdef CHECK
if (!list_Empty(predicate_vars)) {
list_Delete(predicate_vars);
misc_StartErrorReport();
misc_ErrorReport("\n In cnf_ContainsDefinitionIntern: Definition has free variables.\n");
misc_FinishErrorReport();
}
#endif
list_DeletePairList(defpath);
*FoundPred = defpredicate;
return TRUE;
}
}
return FALSE;
}
BOOL cnf_ContainsDefinition(TERM Def, TERM* FoundPred)
/**********************************************************
INPUT: A term Def which is searched for a definition of a predicate.
A pointer to a term into which the predicate of the definition
is stored if it is found.
RETURNS: TRUE if Def contains a definition that can be converted to
standard form.
***********************************************************/
{
BOOL result;
#ifdef CHECK
fol_CheckFatherLinks(Def);
#endif
result = cnf_ContainsDefinitionIntern(Def, Def, 1, FoundPred);
#ifdef CHECK
fol_CheckFatherLinks(Def);
#endif
return result;
}
static TERM cnf_IsDefinition(TERM Def)
/**********************************************************
INPUT: A term Def.
RETURNS: The Def term where the arguments of the equivalence are exchanged
iff the first one is not a predicate.
**********************************************************/
{
LIST l,freevars, predicatevars;
#ifdef CHECK
if (Def == NULL) {
misc_StartErrorReport();
misc_ErrorReport("\n In cnf_IsDefinition: Empty formula.\n");
misc_FinishErrorReport();
}
if (!symbol_Equal(term_TopSymbol(Def),fol_Equiv())) {
misc_StartErrorReport();
misc_ErrorReport("\n In cnf_IsDefinition: Formula is no equivalence.\n");
misc_FinishErrorReport();
}
#endif
/* If the predicate is the second argument of the equivalence, exchange them */
if (!symbol_IsPredicate(term_TopSymbol(term_FirstArgument(Def)))) {
TERM arg1;
arg1 = term_FirstArgument(Def);
term_RplacFirstArgument(Def, term_SecondArgument(Def));
term_RplacSecondArgument(Def, arg1);
}
/* Check if the first argument is a predicate */
if (!symbol_IsPredicate(term_TopSymbol(term_FirstArgument(Def))))
return NULL;
/* Check if first argument is a predicate and not fol_Equality */
/* if (!symbol_IsPredicate(term_TopSymbol(term_FirstArgument(Def)))
|| symbol_Equal(term_TopSymbol(term_FirstArgument(Def)), fol_Equality()))) {
return NULL;
}*/
/* The free variables of the non-predicate term must occur in the predicate term */
freevars = fol_FreeVariables(term_SecondArgument(Def));
freevars = term_DeleteDuplicatesFromList(freevars);
predicatevars = term_ListOfVariables(term_FirstArgument(Def));
predicatevars = term_DeleteDuplicatesFromList(predicatevars);
for (l=predicatevars; !list_Empty(l); l=list_Cdr(l))
freevars = list_DeleteElement(freevars, list_Car(l),
(BOOL (*)(POINTER,POINTER))term_Equal);
if (!list_Empty(freevars)) {
list_Delete(freevars);
list_Delete(predicatevars);
return NULL;
}
list_Delete(predicatevars);
return term_FirstArgument(Def);
}
static BOOL cnf_ContainsPredicateIntern(TERM Target, SYMBOL Predicate,
int Polarity, TERM* TargetPredicate,
TERM* ToTopLevel, LIST* TargetVars,
LIST* VarsForTopLevel)
/**********************************************************
INPUT: A term (sub--) Target
A symbol Predicate which is searched in the target term.
The polarity of the subterm.
A pointer to the term TargetPredicate into which the found
predicate term is stored.
A pointer to the list TargetVars into which the variables found
in the predicates' arguments are stored.
A pointer to a list VarsForTopLevel into which all variables are
stored that are all--quantified and can be moved to top level.
RETURNS: TRUE if Formula contains the predicate for which a definition
was found.
********************************************************/
{
/* AND / OR */
/* In these cases the predicate (if it exists) can not be moved to a higher level */
if ((symbol_Equal(term_TopSymbol(Target),fol_And()) && Polarity == 1) ||
(symbol_Equal(term_TopSymbol(Target),fol_Or()) && Polarity == -1) ||
(symbol_Equal(term_TopSymbol(Target),fol_Implies()) && Polarity != 1) ||
symbol_Equal(term_TopSymbol(Target), fol_Equiv())) {
TERM s;
LIST l;
/* Try to find Predicate in Target */
s = term_FindSubterm(Target, Predicate);
if (s == NULL)
return FALSE;
/* Store variables found in the predicates arguments */
for (l=term_ArgumentList(s); !list_Empty(l); l = list_Cdr(l))
*TargetVars = list_Nconc(fol_FreeVariables((TERM) list_Car(l)), *TargetVars);
*TargetVars = term_DeleteDuplicatesFromList(*TargetVars);
/* Keep found predicate */
*TargetPredicate = s;
*ToTopLevel = Target;
return TRUE;
}
/* AND / OR continued */
if (symbol_Equal(term_TopSymbol(Target),fol_And()) || symbol_Equal(term_TopSymbol(Target),fol_Or())) {
/* The polarity is ok here */
LIST l;
for (l=term_ArgumentList(Target); !list_Empty(l); l = list_Cdr(l))
if (cnf_ContainsPredicateIntern((TERM) list_Car(l), Predicate, Polarity,
TargetPredicate, ToTopLevel, TargetVars,
VarsForTopLevel))
return TRUE;
return FALSE;
}
/* Quantifiers */
if (fol_IsQuantifier(term_TopSymbol(Target))) {
if (cnf_ContainsPredicateIntern(term_SecondArgument(Target), Predicate,
Polarity, TargetPredicate, ToTopLevel,
TargetVars, VarsForTopLevel)) {
/* Quantifiers for free variables of the predicate should be moved
to top level to make the proof easier */
if ((symbol_Equal(term_TopSymbol(Target), fol_All()) && Polarity == 1) ||
(symbol_Equal(term_TopSymbol(Target), fol_Exist()) && Polarity == -1)) {
LIST l;
/* Check for all variables found in the predicates arguments */
for (l = *TargetVars; !list_Empty(l); l=list_Cdr(l)) {
if (term_ListContainsTerm(fol_QuantifierVariables(Target),list_Car(l)))
*VarsForTopLevel = list_Cons(list_Car(l), *VarsForTopLevel);
}
}
return TRUE;
}
return FALSE;
}
/* Negation */
if (symbol_Equal(term_TopSymbol(Target),fol_Not()))
return cnf_ContainsPredicateIntern(term_FirstArgument(Target), Predicate,
-Polarity, TargetPredicate, ToTopLevel,
TargetVars, VarsForTopLevel);
/* Implication */
if (symbol_Equal(term_TopSymbol(Target),fol_Implies())) {
/* In this case the predicate (if it exists) can be moved to a higher level */
if (cnf_ContainsPredicateIntern(term_FirstArgument(Target), Predicate,
-Polarity, TargetPredicate, ToTopLevel,
TargetVars, VarsForTopLevel))
return TRUE;
return cnf_ContainsPredicateIntern(term_SecondArgument(Target), Predicate,
Polarity, TargetPredicate, ToTopLevel,
TargetVars, VarsForTopLevel);
}
/* Found the predicate */
if (symbol_Equal(term_TopSymbol(Target), Predicate)) {
LIST l;
for (l = term_ArgumentList(Target); !list_Empty(l); l = list_Cdr(l))
*TargetVars = list_Nconc(fol_FreeVariables((TERM) list_Car(l)), *TargetVars);
*TargetVars = term_DeleteDuplicatesFromList(*TargetVars);
*TargetPredicate = Target;
*ToTopLevel = Target;
return TRUE;
}
/* In all other cases the predicate was not found */
return FALSE;
}
BOOL cnf_ContainsPredicate(TERM Target, SYMBOL Predicate,
TERM* TargetPredicate, TERM* ToTopLevel,
LIST* TargetVars, LIST* VarsForTopLevel)
/**********************************************************
INPUT: A term Target without implications.
A symbol Predicate which is searched in the target term.
A pointer to the predicate found in TargetTerm is recorded.
A pointer to the term TargetPredicate into which the found
predicate term is stored.
A pointer to the list TargetVars into which the variables
found in the predicates' arguments are stored.
A pointer to a list VarsForTopLevel into which all variables
are stored that are all--quantified and can be moved to top level.
RETURNS: TRUE if Formula contains the predicate for which a definition
was found.
********************************************************/
{
BOOL result;
#ifdef CHECK
fol_CheckFatherLinks(Target);
#endif
result = cnf_ContainsPredicateIntern(Target, Predicate, 1, TargetPredicate,
ToTopLevel, TargetVars, VarsForTopLevel);
#ifdef CHECK
fol_CheckFatherLinks(Target);
#endif
return result;
}
static int cnf_PredicateOccurrences(TERM Term, SYMBOL P)
/****************************************************
INPUT: A term and a predicate symbol.
RETURNS: The number of occurrences of the predicate symbol in Term
**************************************************/
{
/* Quantifiers */
if (fol_IsQuantifier(term_TopSymbol(Term)))
return cnf_PredicateOccurrences(term_SecondArgument(Term), P);
/* Junctors and NOT */
if (fol_IsJunctor(term_TopSymbol(Term)) ||
symbol_Equal(term_TopSymbol(Term),fol_Not())) {
LIST scan;
int count;
count = 0;
for (scan=term_ArgumentList(Term); !list_Empty(scan); scan=list_Cdr(scan)) {
count += cnf_PredicateOccurrences(list_Car(scan), P);
/* Only the cases count==1 and count>1 are important */
if (count > 1)
return count;
}
return count;
}
if (symbol_Equal(term_TopSymbol(Term), P))
return 1;
return 0;
}
static TERM cnf_NegationNormalFormulaPath(TERM Term, TERM PredicateTerm)
/**********************************************************
INPUT: A term and a predicate term which is a subterm of term
RETURNS: The negation normal form of the term along the path.
CAUTION: The term is destructively changed.
This works only if the superterm member of Term and its subterms
are set.
********************************************************/
{
TERM subterm, termL, term1;
LIST scan;
SYMBOL symbol;
BOOL set;
term1 = Term;
while (term1 != NULL) {
set = FALSE;
if (symbol_Equal(term_TopSymbol(term1),fol_Not())) {
subterm = term_FirstArgument(term1);
if (symbol_Equal(term_TopSymbol(subterm),fol_Not())) {
LIST l;
term_RplacTop(term1,term_TopSymbol(term_FirstArgument(subterm)));
list_Delete(term_ArgumentList(term1));
term_RplacArgumentList(term1,term_ArgumentList(term_FirstArgument(subterm)));
term_Free(term_FirstArgument(subterm));
list_Delete(term_ArgumentList(subterm));
term_Free(subterm);
/* Set superterm member to new superterm */
for (l=term_ArgumentList(term1); !list_Empty(l); l=list_Cdr(l))
term_RplacSuperterm(list_Car(l), term1);
/* term1 weiter betrachten */
set = TRUE;
}
else {
if (fol_IsQuantifier(term_TopSymbol(subterm))) {
LIST l;
symbol = (SYMBOL)cnf_GetDualSymbol(term_TopSymbol(subterm));
termL = term_CreateAddFather(fol_Not(),
list_List(term_SecondArgument(subterm)));
list_RplacSecond(term_ArgumentList(subterm), termL);
term_RplacSuperterm(termL, subterm);
term_RplacTop(term1,symbol);
list_Delete(term_ArgumentList(term1));
term_RplacArgumentList(term1, term_ArgumentList(subterm));
for (l=term_ArgumentList(term1); !list_Empty(l); l = list_Cdr(l))
term_RplacSuperterm(list_Car(l), term1);
term_RplacArgumentList(subterm, list_Nil());
term_Delete(subterm);
term1 = termL;
/* Next term to check is not(subterm) */
set = TRUE;
}
else {
if (symbol_Equal(term_TopSymbol(subterm),fol_Or()) ||
(symbol_Equal(term_TopSymbol(subterm),fol_And()))) {
LIST l;
symbol = (SYMBOL)cnf_GetDualSymbol(term_TopSymbol(subterm));
for (scan = term_ArgumentList(subterm); !list_Empty(scan);
scan = list_Cdr(scan)) {
TERM new;
termL = list_Car(scan);
new = term_CreateAddFather(fol_Not(),list_List(termL));
list_Rplaca(scan, new);
term_RplacSuperterm(new, subterm);
}
term_RplacTop(term1,symbol);
list_Delete(term_ArgumentList(term1));
term_RplacArgumentList(term1,term_ArgumentList(subterm));
for (l = term_ArgumentList(term1); !list_Empty(l); l=list_Cdr(l))
term_RplacSuperterm(list_Car(l), term1);
term_RplacArgumentList(subterm, list_Nil());
term_Delete(subterm);
}
}
}
}
if (!set) {
if (!list_Empty(term_ArgumentList(term1)))
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan))
if (term_HasProperSuperterm(PredicateTerm, list_Car(scan))) {
term1 = list_Car(scan);
set = TRUE;
break;
}
if (!set)
term1 = NULL;
}
}
return Term;
}
TERM cnf_ApplyDefinitionOnce(TERM Predicate, TERM Formula, TERM TargetTerm,
TERM TargetPredicate, FLAGSTORE Flags)
/*********************************************************
INPUT: A term Predicate which is a predicate found in a definition.
A term Formula which is a term equivalent to the predicate.
A term TargetTerm in which one occurrence of the predicate may be
replaced by the Formula.
A term TargetPredicate which is the subterm of the TargetTerm
to be replaced.
A flag store.
RETURNS: The changed TargetTerm.
*************************************************************/
{
SYMBOL maxvar, maxvar_temp;
LIST bound, scan;
BOOL success;
/* Init varcounter */
maxvar = term_MaxVar(TargetTerm);
maxvar_temp = term_MaxVar(Formula);
if (maxvar_temp > maxvar)
maxvar = maxvar_temp;
symbol_SetStandardVarCounter(maxvar);
/* Find bound variables in formula for renaming them */
bound = fol_BoundVariables(Formula);
for (scan=bound; !list_Empty(scan); scan=list_Cdr(scan)) {
/* Bound variable in definition is already used in term */
if (term_ContainsSymbol(TargetTerm, term_TopSymbol(list_Car(scan))))
term_ExchangeVariable(Formula, term_TopSymbol(list_Car(scan)),
symbol_CreateStandardVariable());
}
list_Delete(bound);
TargetTerm = cnf_ApplyDefinitionInternOnce(Predicate, Formula, TargetTerm,
TargetPredicate,&success);
if (flag_GetFlagIntValue(Flags, flag_PAPPLYDEFS)) {
if (success) {
fputs("\nTarget after applying def:\n", stdout);
fol_PrettyPrint(TargetTerm);
puts("\n");
}
}
return TargetTerm;
}
static TERM cnf_ApplyDefinitionInternOnce(TERM Predicate, TERM Formula,
TERM TargetTerm, TERM TargetPredicate,
BOOL* Success)
/**********************************************************
INPUT: A term Predicate which is equivalence to
Formula and Term
RETURNS: The term in which all occurrences of P(..) are
replaced by Formula modulo the proper bindings
CAUTION: Term is destructively changed!
***********************************************************/
{
/* Quantifiers */
if (fol_IsQuantifier(term_TopSymbol(TargetTerm))) {
term_RplacSecondArgument(TargetTerm,
cnf_ApplyDefinitionInternOnce(Predicate, Formula,
term_SecondArgument(TargetTerm),
TargetPredicate, Success));
term_RplacSuperterm(term_SecondArgument(TargetTerm), TargetTerm);
return TargetTerm;
}
/* Junctors and NOT */
if (fol_IsJunctor(term_TopSymbol(TargetTerm)) ||
symbol_Equal(term_TopSymbol(TargetTerm),fol_Not())) {
LIST scan;
for (scan=term_ArgumentList(TargetTerm); !list_Empty(scan); scan=list_Cdr(scan)) {
list_Rplaca(scan, cnf_ApplyDefinitionInternOnce(Predicate, Formula,
list_Car(scan),
TargetPredicate, Success));
term_RplacSuperterm((TERM) list_Car(scan), TargetTerm);
}
return TargetTerm;
}
if (symbol_Equal(term_TopSymbol(TargetTerm), term_TopSymbol(Predicate))) {
if (TargetTerm == TargetPredicate) {
TERM result;
result = Formula;
cnf_RplacVar(result, term_ArgumentList(Predicate),
term_ArgumentList(TargetTerm));
term_AddFatherLinks(result);
term_Delete(TargetTerm);
*Success = TRUE;
return result;
}
}
return TargetTerm;
}
static TERM cnf_RemoveEquivImplFromFormula(TERM term)
/**********************************************************
INPUT: A term.
RETURNS: The term with replaced implications and equivalences.
CAUTION: The term is destructively changed.
********************************************************/
{
TERM term1,termL,termR,termLneg,termRneg;
LIST scan;
int bottom,pol;
bottom = vec_ActMax();
vec_Push(term);
while (bottom != vec_ActMax()) {
term1 = (TERM)vec_PopResult();
if (symbol_Equal(term_TopSymbol(term1),fol_Implies())) {
term_RplacTop(term1, fol_Or());
list_Rplaca(term_ArgumentList(term1),
term_Create(fol_Not(), list_List(list_Car(term_ArgumentList(term1)))));
}else
if (symbol_Equal(term_TopSymbol(term1),fol_Equiv())) {
pol = cnf_GetFormulaPolarity(term,term1);
termL = (TERM)list_Car(term_ArgumentList(term1));
termR = (TERM)list_Second(term_ArgumentList(term1));
termLneg = term_Create(fol_Not(),list_List(term_Copy(termL)));
termRneg = term_Create(fol_Not(),list_List(term_Copy(termR)));
if (pol == 1 || pol == 0) {
term_RplacTop(term1, fol_And());
list_Rplaca(term_ArgumentList(term1), term_Create(fol_Or(),list_Cons(termLneg,list_List(termR))));
list_RplacSecond(term_ArgumentList(term1),term_Create(fol_Or(),list_Cons(termRneg,list_List(termL))));
}else
if (pol == -1) {
term_RplacTop(term1, fol_Or());
list_Rplaca(term_ArgumentList(term1), term_Create(fol_And(),list_Cons(termLneg,list_List(termRneg))));
list_RplacSecond(term_ArgumentList(term1), term_Create(fol_And(),list_Cons(termL,list_List(termR))));
}
}
if (!list_Empty(term_ArgumentList(term1)) && !symbol_IsPredicate(term_TopSymbol(term1))) {
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan))
vec_Push(list_Car(scan));
}
}
vec_SetMax(bottom);
return term;
}
static TERM cnf_MovePredicateVariablesUp(TERM Term, TERM TargetPredicateTerm,
LIST VarsForTopLevel)
/**********************************************************
INPUT: A term and a predicate term which is a subterm of term
an equivalence.
RETURNS: The term where the free variables of the equivalence, which
must be allquantified and not in the scope of an
exist quantifier, are moved to toplevel.
CAUTION: The term is destructively changed.
********************************************************/
{
TERM term1;
LIST scan;
int bottom;
bottom = vec_ActMax();
vec_Push(Term);
while (bottom != vec_ActMax()) {
term1 = (TERM)vec_PopResult();
if (!list_Empty(term_ArgumentList(term1)))
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan)) {
TERM arg;
arg = (TERM) list_Car(scan);
if (term_HasProperSuperterm(TargetPredicateTerm, arg)) {
if (symbol_Equal(term_TopSymbol(arg), fol_All())) {
LIST predicatevarscan, quantifiervars;
quantifiervars = fol_QuantifierVariables(arg);
for (predicatevarscan=VarsForTopLevel; !list_Empty(predicatevarscan);
predicatevarscan = list_Cdr(predicatevarscan))
quantifiervars = list_DeleteElementFree(quantifiervars,
(TERM) list_Car(predicatevarscan),
(BOOL (*)(POINTER,POINTER))term_Equal,
(void (*)(POINTER))term_Delete);
if (!list_Empty(quantifiervars))
term_RplacArgumentList(term_FirstArgument(arg), quantifiervars);
else {
TERM subterm;
subterm = term_SecondArgument(arg);
term_Free(term_FirstArgument(arg));
list_Delete(term_ArgumentList(arg));
term_Free(arg);
list_Rplaca(scan, subterm);
term_RplacSuperterm(subterm, term1);
}
}
vec_Push((TERM) list_Car(scan));
}
}
}
for (scan=VarsForTopLevel; !list_Empty(scan); scan = list_Cdr(scan))
list_Rplaca(scan, term_Copy((TERM) list_Car(scan)));
if (symbol_Equal(term_TopSymbol(Term), fol_All())) {
LIST vars;
vars = fol_QuantifierVariables(Term);
vars = list_Nconc(vars, list_Copy(VarsForTopLevel));
vars = term_DestroyDuplicatesInList(vars);
term_RplacArgumentList(term_FirstArgument(Term), vars);
}
else {
TERM newtop;
newtop = fol_CreateQuantifier(fol_All(), list_Copy(VarsForTopLevel), list_List(Term));
term_RplacSuperterm(Term, newtop);
Term = newtop;
}
vec_SetMax(bottom);
return Term;
}
static TERM cnf_RemoveImplFromFormulaPath(TERM Term, TERM PredicateTerm)
/**********************************************************
INPUT: A term and a predicate term which is a subterm of term
RETURNS: The term where implications along the path to PredicateTerm
are replaced.
CAUTION: The term is destructively changed.
This works only if the superterm member of Term and its
subterms are set.
********************************************************/
{
TERM term1;
LIST scan;
int bottom;
bottom = vec_ActMax();
vec_Push(Term);
while (bottom != vec_ActMax()) {
term1 = (TERM)vec_PopResult();
if (term_HasProperSuperterm(PredicateTerm, term1)) {
if (symbol_Equal(term_TopSymbol(term1),fol_Implies())) {
TERM newterm;
term_RplacTop(term1, fol_Or());
newterm = term_CreateAddFather(fol_Not(), list_List(list_Car(term_ArgumentList(term1))));
list_Rplaca(term_ArgumentList(term1), newterm);
term_RplacSuperterm(newterm, term1);
}
if (!list_Empty(term_ArgumentList(term1)))
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan))
vec_Push(list_Car(scan));
}
}
vec_SetMax(bottom);
return Term;
}
static SYMBOL cnf_GetDualSymbol(SYMBOL symbol)
/********************************************************
INPUT: A predefined symbol.
RETURNS: The dual symbol.
********************************************************/
{
SYMBOL dual;
dual = symbol;
if (symbol_Equal(symbol,fol_All()))
dual = fol_Exist();
else
if (symbol_Equal(symbol,fol_Exist()))
dual = fol_All();
else
if (symbol_Equal(symbol,fol_Or()))
dual = fol_And();
else
if (symbol_Equal(symbol,fol_And()))
dual = fol_Or();
return dual;
}
TERM cnf_NegationNormalFormula(TERM term)
/********************************************************
INPUT: A term.
RETURNS: The negation normal form of the term.
CAUTION: The term is destructively changed.
********************************************************/
{
TERM term1,subterm,termL;
LIST scan;
SYMBOL symbol;
int bottom;
bottom = vec_ActMax();
vec_Push(term);
while (bottom != vec_ActMax()) {
term1 = (TERM)vec_PopResult();
if (symbol_Equal(term_TopSymbol(term1),fol_Not())) {
subterm = (TERM)list_Car(term_ArgumentList(term1));
if (symbol_Equal(term_TopSymbol(subterm),fol_Not())) {
term_RplacTop(term1,term_TopSymbol(term_FirstArgument(subterm)));
list_Delete(term_ArgumentList(term1));
term_RplacArgumentList(term1,term_ArgumentList(term_FirstArgument(subterm)));
term_Free(term_FirstArgument(subterm));
list_Delete(term_ArgumentList(subterm));
term_Free(subterm);
vec_Push(term1);
}else
if (fol_IsQuantifier(term_TopSymbol(subterm))) {
symbol = (SYMBOL)cnf_GetDualSymbol(term_TopSymbol(subterm));
termL = term_Create(fol_Not(),
list_List(term_SecondArgument(subterm)));
list_RplacSecond(term_ArgumentList(subterm), termL);
term_RplacTop(term1,symbol);
list_Delete(term_ArgumentList(term1));
term_RplacArgumentList(term1,term_CopyTermList(term_ArgumentList(subterm)));
term_Delete(subterm);
} else
if (symbol_Equal(term_TopSymbol(subterm),fol_Or()) ||
symbol_Equal(term_TopSymbol(subterm),fol_And())) {
symbol = (SYMBOL)cnf_GetDualSymbol(term_TopSymbol(subterm));
for (scan = term_ArgumentList(subterm);
!list_Empty(scan);
scan = list_Cdr(scan)) {
termL = (TERM)list_Car(scan);
list_Rplaca(scan, term_Create(fol_Not(),list_List(termL)));
}
term_RplacTop(term1,symbol);
list_Delete(term_ArgumentList(term1));
term_RplacArgumentList(term1,term_CopyTermList(term_ArgumentList(subterm)));
term_Delete(subterm);
}
}
if (!list_Empty(term_ArgumentList(term1)))
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan))
vec_Push(list_Car(scan));
}
vec_SetMax(bottom);
return term;
}
static TERM cnf_QuantMakeOneVar(TERM term)
/**************************************************************
INPUT: A term.
RETURNS: The term where all quantifiers quantify over only one variable.
CAUTION: The term is destructively changed.
***************************************************************/
{
TERM term1,termL;
SYMBOL quantor;
LIST scan,varlist;
int bottom;
bottom = vec_ActMax();
vec_Push(term);
while (bottom != vec_ActMax()) {
term1 = (TERM)vec_PopResult();
if (fol_IsQuantifier(term_TopSymbol(term1))) {
quantor = term_TopSymbol(term1);
if (list_Length(term_ArgumentList(term_FirstArgument(term1))) > 1) {
varlist =
list_Copy(list_Cdr(term_ArgumentList(term_FirstArgument(term1))));
for (scan=varlist;!list_Empty(scan);scan=list_Cdr(scan)) {
termL = term_SecondArgument(term1);
term_RplacSecondArgument(term1, fol_CreateQuantifier(quantor,list_List(list_Car(scan)),list_List(termL)));
}
for (scan=varlist;!list_Empty(scan);scan=list_Cdr(scan)) {
term_RplacArgumentList(term_FirstArgument(term1),
list_PointerDeleteElement(term_ArgumentList(term_FirstArgument(term1)),list_Car(scan)));
}
list_Delete(varlist);
}
}
if (!list_Empty(term_ArgumentList(term1)))
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan))
vec_Push(list_Car(scan));
}
vec_SetMax(bottom);
return term;
}
static LIST cnf_GetSymbolList(LIST varlist)
/**************************************************************
INPUT: A list of variables
RETURNS: The list of the symbols of the variables.
***************************************************************/
{
LIST scan,result;
result = list_Nil();
for (scan=varlist;!list_Empty(scan);scan=list_Cdr(scan))
result = list_Cons((POINTER)term_TopSymbol((TERM)list_Car(scan)),result);
return result;
}
static BOOL cnf_TopIsAnd(LIST termlist)
/**************************************************************
INPUT: A list of terms.
RETURNS: True if one term in termlist is a conjunction.
***************************************************************/
{
LIST scan;
for (scan=termlist;!list_Empty(scan);scan=list_Cdr(scan))
if (term_TopSymbol(list_Car(scan)) == fol_And())
return TRUE;
return FALSE;
}
static TERM cnf_MakeOneOr(TERM term)
/**************************************************************
INPUT: A term.
RETURNS: Takes all arguments of an or together.
CAUTION: The term is destructively changed.
***************************************************************/
{
LIST scan;
if (symbol_Equal(term_TopSymbol(term),fol_Or())) {
TERM argterm;
scan=term_ArgumentList(term);
while (!list_Empty(scan)) {
argterm = (TERM)list_Car(scan);
cnf_MakeOneOr(argterm);
if (symbol_Equal(term_TopSymbol(argterm),fol_Or())) {
scan = list_Cdr(scan);
term_RplacArgumentList(term,
list_Nconc(term_ArgumentList(argterm),list_PointerDeleteElement(term_ArgumentList(term),argterm)));
term_Free(argterm);
}
else
scan = list_Cdr(scan);
}
} else if (!symbol_IsPredicate(term_TopSymbol(term)))
for (scan=term_ArgumentList(term);!list_Empty(scan);scan=list_Cdr(scan))
cnf_MakeOneOr(list_Car(scan));
return term;
}
static TERM cnf_MakeOneOrPredicate(TERM term)
/**************************************************************
INPUT: A term.
RETURNS: Takes all predicates and negated predicates as arguments
of an or together.
CAUTION: The term is destructively changed.
***************************************************************/
{
LIST scan,scan1,predlist;
if (cnf_TopIsAnd(term_ArgumentList(term))) {
for (scan1=term_ArgumentList(term);
!(list_Empty(scan1) || symbol_Equal(term_TopSymbol(list_Car(scan1)),fol_And()));
scan1=list_Cdr(scan1));
if (!list_Empty(scan1)) {
predlist = list_Nil();
for (scan=scan1; !list_Empty(scan); scan=list_Cdr(scan)) {
if (symbol_IsPredicate(term_TopSymbol(list_Car(scan))) ||
fol_IsNegativeLiteral(list_Car(scan))) {
predlist = list_Cons(list_Car(scan),predlist);
}
}
for (scan=predlist;!list_Empty(scan);scan=list_Cdr(scan))
term_RplacArgumentList(term,
list_PointerDeleteElement(term_ArgumentList(term),list_Car(scan)));
if (!list_Empty(predlist))
term_RplacArgumentList(term, list_Nconc(predlist,term_ArgumentList(term)));
}
}
return term;
}
static TERM cnf_MakeOneOrTerm(TERM term)
/**************************************************************
INPUT: A term.
RETURNS: Takes all predicates as arguments of an or together.
CAUTION: The term is destructively changed.
***************************************************************/
{
return cnf_MakeOneOrPredicate(cnf_MakeOneOr(term));
}
static TERM cnf_MakeOneAnd(TERM term)
/**************************************************************
INPUT: A term.
RETURNS: Takes all arguments of an and together.
CAUTION: The term is destructively changed.
***************************************************************/
{
LIST scan;
if (symbol_Equal(term_TopSymbol(term),fol_And())) {
TERM argterm;
scan=term_ArgumentList(term);
while (!list_Empty(scan)) {
argterm = (TERM)list_Car(scan);
cnf_MakeOneAnd(argterm);
if (symbol_Equal(term_TopSymbol(argterm),fol_And())) {
scan = list_Cdr(scan);
term_RplacArgumentList(term,
list_Nconc(term_ArgumentList(argterm),list_PointerDeleteElement(term_ArgumentList(term),argterm)));
term_Free(argterm);
}
else
scan = list_Cdr(scan);
}
} else if (!symbol_IsPredicate(term_TopSymbol(term)))
for (scan=term_ArgumentList(term);!list_Empty(scan);scan=list_Cdr(scan))
cnf_MakeOneAnd(list_Car(scan));
return term;
}
static TERM cnf_MakeOneAndPredicate(TERM term)
/**************************************************************
INPUT: A term.
RETURNS: Takes all predicates as arguments of one or together.
CAUTION: The term is destructively changed.
***************************************************************/
{
LIST scan,scan1,predlist;
for (scan1=term_ArgumentList(term);
!(list_Empty(scan1) || symbol_Equal(term_TopSymbol(list_Car(scan1)),fol_Or()));
scan1=list_Cdr(scan1));
if (!list_Empty(scan1)) {
/* The car of scan1 points to a term with topsymbol 'or' */
predlist = list_Nil();
for (scan=scan1; !list_Empty(scan); scan=list_Cdr(scan)) {
if (symbol_IsPredicate(term_TopSymbol(list_Car(scan))) &&
fol_IsNegativeLiteral(list_Car(scan))) {
predlist = list_Cons(list_Car(scan),predlist);
}
}
for (scan=predlist; !list_Empty(scan); scan=list_Cdr(scan))
term_RplacArgumentList(term, list_PointerDeleteElement(term_ArgumentList(term),list_Car(scan)));
if (!list_Empty(predlist))
term_RplacArgumentList(term, list_Nconc(predlist,term_ArgumentList(term)));
}
return term;
}
static TERM cnf_MakeOneAndTerm(TERM term)
/**************************************************************
INPUT: A term.
RETURNS: Takes all predicates as arguments of an or together.
CAUTION: The term is destructively changed.
***************************************************************/
{
return cnf_MakeOneAndPredicate(cnf_MakeOneAnd(term));
}
BOOL cnf_FlattenToSimpleORTerm(TERM Term)
/**************************************************************
INPUT: A term
RETURNS: Traverse the term tree using BFS, and flatten the cascated OR Term
to flat ones. Return True if it is a flat OR Term after all,
returns FALSE if it contains any AND SubTerm
EFFECTS: The input Term will be flattened on each level,
as long as it contains no AND subTerm. The sub Terms of the
AND Terms are no more flattened, even if it might contains
cascated OR Terms as sub Terms.
CAUTION: The term is changed.
***************************************************************/
{
LIST Scan1,Scan2;
BOOL SimpleOrTerm, SimpleOrSubTerm;
SimpleOrTerm = FALSE;
if (symbol_Equal(term_TopSymbol(Term), fol_Or())) {
TERM Argterm;
SimpleOrSubTerm = TRUE;
Scan1 =term_ArgumentList(Term);
while (!list_Empty(Scan1)) {
Argterm = (TERM)list_Car(Scan1);
Scan2 = list_Cdr(Scan1);
if (symbol_Equal(term_TopSymbol(Argterm),fol_Or())) {
SimpleOrSubTerm = cnf_FlattenToSimpleORTerm(Argterm);
if (!SimpleOrSubTerm) SimpleOrTerm = FALSE;
list_NInsert(Scan1,list_Cdr(term_ArgumentList(Argterm))); /* Be efficient ... */
list_Rplaca(Scan1,list_Car(term_ArgumentList(Argterm)));
list_Free(term_ArgumentList(Argterm));
term_Free(Argterm);
}
else if (symbol_Equal(term_TopSymbol(Argterm),fol_And())) {
SimpleOrTerm = FALSE;
}
Scan1 = Scan2;
}
}
return SimpleOrTerm;
}
TERM cnf_ScanTree(TERM Tree)
/**************************************************************
INPUT: The input complex Term, which need to be transformed to CNF
RETURNS: Traverse the term tree using BFS, and put the "or" subtree pointer into the stacks.
CAUTION: The term is not changed.
***************************************************************/
{
SYMBOL Symbol;
LIST Temp;
BOOL SimpleOrTerm;
SimpleOrTerm = cnf_FlattenToSimpleORTerm(Tree);
Symbol = term_TopSymbol(Tree);
if (symbol_Equal(Symbol,fol_Or()) && (!SimpleOrTerm)) {
stack_Push(Tree);
}
for (Temp=term_ArgumentList(Tree);!list_Empty(Temp);Temp=list_Cdr(Temp)) {
cnf_ScanTree(list_Car(Temp));
}
return Tree;
}
TERM cnf_CombineORTerms(TERM Term1, TERM Term2)
/**********************************************************
INPUT: Two OR Terms
RETURNS: A big "OR" Term. Both argument lists are combined
to be the new argument list of Term1. Term1 will
be returned.
MEMORY: Term2 will be freed.
***********************************************************/
{
list_Nconc(term_ArgumentList(Term1), term_ArgumentList(Term2));
term_Free(Term2);
return Term1;
}
TERM cnf_AddAtomToORTerm(TERM AtomTerm, TERM OrTerm)
/**********************************************************
INPUT: First arg is an Atom Term, second arg is an OR Term
RETURNS: Atom Term will be added into the argumentlist of OR Term
CAUTION: Atom Term is used, no copy or creation occured
***********************************************************/
{
LIST ArgumentList;
ArgumentList = list_Cons(AtomTerm, term_ArgumentList(OrTerm));
term_RplacArgumentList(OrTerm, ArgumentList);
return OrTerm;
}
TERM cnf_BuildORTermFromAtoms(TERM Atom1, TERM Atom2)
/**********************************************************
INPUT: Two atom Terms
RETURNS: An OR Term containing the input atom Terms as subterms
MEMORY: One new list created, one new Term created.
***********************************************************/
{
LIST ArgumentList;
ArgumentList = list_List(Atom1);
ArgumentList = list_Cons(Atom2, ArgumentList);
return term_Create(fol_Or(), ArgumentList);
}
LIST cnf_List_MultiCons(LIST TempResultList, LIST RightCNFAndArgument)
/**********************************************************
INPUT: Two list of CNF list.
RETURNS: One big CNF list after "multiplications"
CAUTION: Both input lists will be destructed and deleted afterwards
The content of these lists are reused in the result.
New list is generated for the result
***********************************************************/
{
LIST NewResult, Scan1, Scan2;
TERM NewTerm, Term1, Term2;
SYMBOL Symbol1, Symbol2;
BOOL BreakOut;
NewResult = list_Nil();
BreakOut = FALSE;
for (Scan1=TempResultList;!list_Empty(Scan1);Scan1=list_Cdr(Scan1)) {
for (Scan2=RightCNFAndArgument;!list_Empty(Scan2);Scan2=list_Cdr(Scan2)) {
Term1 = list_Car(Scan1);
Term2 = list_Car(Scan2);
if (!list_Empty(list_Cdr(Scan2))) {
Term1 = term_Copy(Term1);
}
if (!list_Empty(list_Cdr(Scan1))) {
Term2 = term_Copy(Term2);
}
Symbol1 = term_TopSymbol(Term1);
Symbol2 = term_TopSymbol(Term2);
/*Case analysis:*/
if (symbol_Equal(Symbol1,fol_Or()) && symbol_Equal(Symbol2,fol_Or())) {
if((!list_Empty(list_Cdr(Scan1))) && list_Empty(list_Cdr(Scan2))) {
NewTerm = cnf_CombineORTerms(Term2, Term1);
}
else {
NewTerm = cnf_CombineORTerms(Term1, Term2);
}
}
else if ((symbol_Equal(Symbol1,fol_Or())) && (!symbol_Equal(Symbol2,fol_Or()))) {
NewTerm = cnf_AddAtomToORTerm(Term2, Term1);
}
else if ((!symbol_Equal(Symbol1,fol_Or())) && (symbol_Equal(Symbol2,fol_Or()))) {
NewTerm = cnf_AddAtomToORTerm(Term1, Term2);
}
else {
NewTerm = cnf_BuildORTermFromAtoms(Term1, Term2);
}
NewResult = list_Cons( NewTerm, NewResult);
}
}
/* The list is not yet deleted*/
list_Delete(RightCNFAndArgument);
list_Delete(TempResultList);
NewResult = term_DestroyDuplicatesInList(NewResult);
/*Debugging Code*/
/*
printf("\nAfter multiplication, the new Result contains:");
for (Scan1= NewResult; !list_Empty(Scan1); Scan1=list_Cdr(Scan1)) {
printf("\n"); term_Print(list_Car(Scan1));fflush(stdout);
}
*/
return NewResult;
}
void cnf_SeparateAndTermsFromArgList(LIST* Input, LIST* AndList,
LIST* AtomList, LIST* AndTail, LIST* AtomTail)
/**************************************************************
INPUT: A Pointer to Input Argument List
A Pointer to AndList, which will be filled with And subterms
A Pointer to AtomList,which will be filled with Atom subterms
A Pointer to AndTail, the last element of AndList
A Pointer to AtomTail, the last element of AtomList
EFFECTS: All the arguments will be initialised. The given
Input List (Argumentst) will be separated to AndList
and AtomList.
MEMORY: No memory allocation occurs here. The input argumentlist
might become either AndList or AtomList, depending on the
head element of it.
***************************************************************/
{
LIST Scan1,Scan2;
Scan1=*Input;
while(!list_Empty(Scan1)) {
Scan2 = list_Cdr(Scan1);
list_Rplacd(Scan1,list_Nil());
if (symbol_Equal(term_TopSymbol(list_Car(Scan1)), fol_And())) {
if (list_Empty(*AndList)){
*AndList = Scan1;
}
else {
list_Rplacd(*AndTail,Scan1);
}
*AndTail = Scan1;
}
else {
if (list_Empty(*AtomList)){
*AtomList = Scan1;
}
else {
list_Rplacd(*AtomTail,Scan1);
}
*AtomTail = Scan1;
}
Scan1=Scan2;
}
/*Debugging Code*/
/*
printf("\nAfter cnf_SeparateAtomOrAndTermsFrom:.");
printf("\nAnd list:.");
for (Scan1= *AndList; !list_Empty(Scan1); Scan1=list_Cdr(Scan1)) {
printf("\n"); term_Print(list_Car(Scan1));fflush(stdout);
}
printf("\nAtom list:.");
for (Scan1= *AtomList; !list_Empty(Scan1); Scan1=list_Cdr(Scan1)) {
printf("\n"); term_Print(list_Car(Scan1));fflush(stdout);
}
printf("\nInput list:.");
for (Scan1= *Input; !list_Empty(Scan1); Scan1=list_Cdr(Scan1)) {
printf("\n"); term_Print(list_Car(Scan1));fflush(stdout);
}
*/
}
LIST cnf_MakeBigAndList(LIST AndList)
/**************************************************************
INPUT: Build the list of OR SubTerms of a big AND Term
RETURNS: The argumentlist of the big AND Term
CAUTION: The content of the big AND list will be reused but the list
itself is no more useful. The input list is deleted here.
***************************************************************/
{
LIST Result, Scan;
Result = term_ArgumentList(list_Car(AndList));
for (Scan=list_Cdr(AndList);!list_Empty(Scan);Scan=list_Cdr(Scan)) {
Result = cnf_List_MultiCons(Result, term_ArgumentList(list_Car(Scan)));
term_Free(list_Car(Scan));
}
term_Free(list_Car(AndList));
list_Delete(AndList);
return Result;
}
void cnf_AttachAtomList(LIST* ResultCandidate, LIST AtomList)
/**************************************************************
INPUT: A candidate list containing either flattened OR Terms
or atom Terms;
A list containing only Atom Terms
EFFECT: The candidate list will be manipulated, so that all
subTerms are extended with the AtomList.
CAUTION: Destructive on candidate list.
The AtomList is useful afterwards, i.e.
shouldn't be deleted.
***************************************************************/
{
LIST Scan, Temp, AttachAtomList;
for (Scan = *ResultCandidate;!list_Empty(Scan);Scan=list_Cdr(Scan)){
if (!list_Empty(list_Cdr(Scan))) {
AttachAtomList = term_CopyTermList(AtomList);
}
else {
AttachAtomList = AtomList;
}
if(symbol_Equal(term_TopSymbol(list_Car(Scan)), fol_Or())) {/*OR subterm*/
Temp = term_ArgumentList(list_Car(Scan));
Temp = list_Nconc(Temp, AttachAtomList);
Temp = term_DestroyDuplicatesInList(Temp);
term_RplacArgumentList(list_Car(Scan), Temp);
}
else {/*single atom*/
Temp = list_Cons(list_Car(Scan), AttachAtomList);
Temp = term_DestroyDuplicatesInList(Temp);
list_Rplaca(Scan, term_Create(fol_Or(), Temp));
}
}
}
void cnf_TransformTree(NAT StackBottom)
/**************************************************************
INPUT: The NAT flag of stack bottom.
EFFECTS: Go through the "or" subtrees bottom up by processing the
Stack and convert the poped out subtree to CNF subtree
CAUTION: The poped out subterm and the overall Term is distructively
changed.
***************************************************************/
{
TERM Term;
LIST Result, Scan, ArgList, AtomList, AndList, AtomTail, AndTail;
while (!stack_Empty(StackBottom)) {
Term = stack_PopResult();
for (Scan=term_ArgumentList(Term);!list_Empty(Scan);Scan=list_Cdr(Scan)) {
cnf_Flatten(list_Car(Scan), fol_And());
}
AndList = list_Nil();
AtomList = list_Nil();
AndTail = list_Nil();
AtomTail = list_Nil();
ArgList = term_ArgumentList(Term);
cnf_SeparateAndTermsFromArgList(&ArgList , &AndList, &AtomList,&AndTail, &AtomTail );
if (!list_Empty(AndList)) {/*The Term is not a simple OR Term, contains And subterms*/
Result = cnf_MakeBigAndList(AndList);
if (!list_Empty(AtomList)) {/*The Term contains both AND and Atom sub terms */
cnf_AttachAtomList(&Result, AtomList);
}
term_RplacTop(Term, fol_And());
term_RplacArgumentList(Term,Result);
}
/*
printf("\nSubOrTerm-After-Transformation: \n");
term_Print(Term);fflush(stdout);
*/
}
}
static TERM cnf_DistributiveFormula(TERM Formula)
/**************************************************************
INPUT: A Formula in NNF which consists only of disjunctions and
conjunctions.
RETURNS: The Formula where the distributivity rule is exhaustively applied
and all disjunctions and the top level conjunction are grouped.
CAUTION: The Formula is destructively changed.
***************************************************************/
{
NAT StackBottom;
if (symbol_Equal(term_TopSymbol(Formula), fol_Or()) || symbol_Equal(term_TopSymbol(Formula), fol_And())) {
StackBottom = stack_Bottom();
cnf_ScanTree(Formula);
cnf_TransformTree(StackBottom);
cnf_Flatten(Formula, fol_And());
}
return Formula;
}
void cnf_FPrintClause(TERM term, FILE* file)
/**************************************************************
INPUT: A term and a file pointer.
RETURNS: Nothing.
EFFECT: Print the term which contains only disjunctions to file.
The disjunctions represent a clause.
***************************************************************/
{
TERM term1;
LIST scan;
int bottom;
bottom = vec_ActMax();
vec_Push(term);
while (bottom != vec_ActMax()) {
term1 = (TERM)vec_PopResult();
if (symbol_Equal(term_TopSymbol(term1),fol_Or())) {
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan))
vec_Push(list_Car(scan));
}else
term_FPrint(file,term1);
}
fputs(".\n", file);
vec_SetMax(bottom);
}
void cnf_FPrint(TERM term, FILE* file)
/**************************************************************
INPUT: A term and a file pointer.
RETURNS: Nothing.
EFFECT: Print the term (in negation normal form)
which contains only conjunctions of
disjunctions to file. The conjunctions are interpreted
to represent different clauses.
***************************************************************/
{
TERM term1;
LIST scan;
int bottom;
bottom = vec_ActMax();
vec_Push(term);
while (bottom != vec_ActMax()) {
term1 = (TERM)vec_PopResult();
if (symbol_Equal(term_TopSymbol(term1),fol_And())) {
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan))
vec_Push(list_Car(scan));
}else
if (symbol_Equal(term_TopSymbol(term1),fol_Or()) ||
symbol_IsPredicate(term_TopSymbol(term1)) ||
symbol_Equal(term_TopSymbol(term1),fol_Not()))
cnf_FPrintClause(term1,file);
}
vec_SetMax(bottom);
}
void cnf_StdoutPrint(TERM term)
/**************************************************************
INPUT: A term.
RETURNS: Nothing.
EFFECT: Print the term (in negation normal form)
which contains only conjunctions of
disjunctions to standard out. The conjunctions are interpreted
to represent different clauses.
***************************************************************/
{
LIST termlist,scan,scan1;
for (scan=term_ArgumentList(term); !list_Empty(scan); scan=list_Cdr(scan)) {
termlist = list_Nil();
if (!(symbol_IsPredicate(term_TopSymbol(list_Car(scan))) ||
fol_IsNegativeLiteral(list_Car(scan))))
termlist = term_ArgumentList(list_Car(scan));
if (!list_Empty(termlist)) {
for (scan1=termlist;!list_Empty(scan1);scan1=list_Cdr(scan1))
term_Print(list_Car(scan1));
puts(".");
}else{
term_Print(list_Car(scan));
puts(".");
}
}
}
void cnf_FilePrint(TERM term, FILE* file)
/**************************************************************
INPUT: A term and a file.
RETURNS: Nothing.
EFFECT: Print the term (in negation normal form)
which contains only conjunctions of
disjunctions to file. The conjunctions are interpreted
to represent different clauses.
***************************************************************/
{
LIST termlist,scan,scan1;
for (scan=term_ArgumentList(term); !list_Empty(scan); scan=list_Cdr(scan)) {
termlist = list_Nil();
if (!(symbol_IsPredicate(term_TopSymbol(list_Car(scan))) ||
fol_IsNegativeLiteral(list_Car(scan))))
termlist = term_ArgumentList(list_Car(scan));
if (!list_Empty(termlist)) {
for (scan1=termlist;!list_Empty(scan1);scan1=list_Cdr(scan1))
term_FPrint(file,list_Car(scan1));
fputs(".\n", file);
}else{
term_FPrint(file,list_Car(scan));
fputs(".\n", file);
}
}
}
void cnf_FilePrintPrefix(TERM term, FILE* file)
/**************************************************************
INPUT: A term and a file pointer.
RETURNS: Nothing.
EFFECT: Prefix Print the term (in negation normal form)
which contains only conjunctions of
disjunctions to file. The conjunctions are interpreted
to represent different clauses.
***************************************************************/
{
LIST termlist,scan,scan1;
for (scan=term_ArgumentList(term);!list_Empty(scan);scan=list_Cdr(scan)) {
termlist = list_Nil();
if (!(symbol_IsPredicate(term_TopSymbol(list_Car(scan))) ||
fol_IsNegativeLiteral(list_Car(scan))))
termlist = term_ArgumentList(list_Car(scan));
if (!list_Empty(termlist)) {
for (scan1=termlist;!list_Empty(scan1);scan1=list_Cdr(scan1)) {
term_FPrintPrefix(file,list_Car(scan1));
if (!list_Empty(list_Cdr(scan1)))
fputs(" | ", file);
}
fputs(".\n", file);
} else {
term_FPrintPrefix(file,list_Car(scan));
fputs(".\n", file);
}
}
}
static LIST cnf_SubsumeClauseList(FLAGSTORE Flags, LIST clauselist)
/**********************************************************
INPUT: A list of clauses.
RETURNS: The list of clauses without subsumed clauses.
EFFECT: Checks the clock cnf_REDUCTION with respect to the value
of flag_CNFREDTIME to permit subsumption reductions.
CAUTION: The list is destructively changed.
***********************************************************/
{
LIST scan;
st_INDEX stindex;
CLAUSE actclause;
stindex = st_IndexCreate();
for (scan = clauselist; !list_Empty(scan); scan=list_Cdr(scan))
res_InsertClauseIndex(list_Car(scan),stindex);
scan=clauselist;
while (!list_Empty(scan)) {
actclause = list_Car(scan);
res_DeleteClauseIndex(actclause,stindex);
if (res_BackSubWithLength(actclause,stindex)) {
clause_Delete(actclause);
list_Rplaca(scan,(POINTER)NULL);
}
else
res_InsertClauseIndex(actclause,stindex);
if (flag_GetFlagIntValue(Flags,flag_CNFREDTIMELIMIT) != flag_CNFREDTIMELIMITUNLIMITED &&
flag_GetFlagIntValue(Flags,flag_CNFREDTIMELIMIT) <= ceil(clock_GetSeconds(clock_CNFREDUCTION)))
scan = list_Nil();
else
scan = list_Cdr(scan);
}
clauselist = list_PointerDeleteElement(clauselist, (POINTER)NULL);
st_IndexDelete(stindex);
return clauselist;
}
static LIST cnf_MakeClauseList(TERM term, BOOL Sorts, BOOL Conclause,
FLAGSTORE Flags, PRECEDENCE Precedence)
/**************************************************************
INPUT: A term in cnf and two boolean values indicating
whether sorts should be generated and whether the
generated clauses are Conclauses, a flag store and
a precedence.
RETURNS: A list of clauses with respect to term. The terms
in the new clauses are the copied subterms from term.
EFFECT: The flag store and the precedence are not changed,
but they're needed for creating clauses.
Checks the clock cnf_REDUCTION with respect to the value
of flag_CNFREDTIME to permit condesing and subsumption reductions.
***************************************************************/
{
LIST termlist,scan,clauselist,condlist;
CLAUSE clause;
int j;
termlist = list_Nil();
clauselist = list_Nil();
if (fol_IsTrue(term))
return clauselist;
if (fol_IsNegativeLiteral(term) || symbol_IsPredicate(term_TopSymbol(term))) {
termlist = list_List(term_Copy(term));
clause = clause_CreateFromLiterals(termlist, Sorts, Conclause,TRUE,
Flags, Precedence);
clauselist = list_Nconc(clauselist,list_List(clause));
term_StartMinRenaming();
term_Rename(clause_GetLiteralTerm(clause,0));
list_Delete(termlist);
return clauselist;
}
term = cnf_MakeOneAndTerm(term);
if (symbol_Equal(term_TopSymbol(term), fol_And())) {
for (scan=term_ArgumentList(term); !list_Empty(scan); scan=list_Cdr(scan)) {
list_Rplaca(scan, cnf_MakeOneOrTerm(list_Car(scan)));
termlist = list_Nil();
if (!(symbol_IsPredicate(term_TopSymbol(list_Car(scan))) ||
fol_IsNegativeLiteral(list_Car(scan)))) {
termlist = term_CopyTermList(term_ArgumentList(list_Car(scan)));
termlist = term_DestroyDuplicatesInList(termlist);
} else
termlist = list_List(term_Copy(list_Car(scan)));
if (!list_Empty(termlist)) {
clause = clause_CreateFromLiterals(termlist, Sorts, Conclause, TRUE,
Flags, Precedence);
term_StartMinRenaming();
for (j = 0; j < clause_Length(clause); j++)
term_Rename(clause_GetLiteralTerm(clause,j));
clauselist = list_Cons(clause,clauselist);
list_Delete(termlist);
}
}
} else {
/* Here the term is a disjunction, i.e. there is only one clause */
term = cnf_MakeOneOrTerm(term);
if (!(symbol_IsPredicate(term_TopSymbol(term)) ||
fol_IsNegativeLiteral(term))) {
termlist = term_CopyTermList(term_ArgumentList(term));
termlist = term_DestroyDuplicatesInList(termlist);
} else
termlist = list_List(term_Copy(term));
if (!list_Empty(termlist)) {
clause = clause_CreateFromLiterals(termlist, Sorts, Conclause, TRUE,
Flags, Precedence);
term_StartMinRenaming();
for (j = 0; j < clause_Length(clause); j++)
term_Rename(clause_GetLiteralTerm(clause,j));
clauselist = list_Cons(clause,clauselist);
list_Delete(termlist);
}
}
for (scan=clauselist; !list_Empty(scan); scan=list_Cdr(scan)) {
clause = (CLAUSE)list_Car(scan);
if (res_HasTautology(clause)) {
clause_Delete(clause);
list_Rplaca(scan, (POINTER)NULL);
}
else
if (flag_GetFlagIntValue(Flags, flag_CNFCON) == flag_ON) {
condlist = cond_CondFast(clause);
if (!list_Empty(condlist))
clause_DeleteLiterals(clause, condlist, Flags, Precedence);
list_Delete(condlist);
}
if (flag_GetFlagIntValue(Flags,flag_CNFREDTIMELIMIT) != flag_CNFREDTIMELIMITUNLIMITED &&
flag_GetFlagIntValue(Flags,flag_CNFREDTIMELIMIT) <= ceil(clock_GetSeconds(clock_CNFREDUCTION))) {
flag_SetFlagIntValue(Flags, flag_CNFCON, flag_OFF);
flag_SetFlagIntValue(Flags, flag_CNFSUB, flag_OFF);
}
}
clauselist = list_PointerDeleteElement(clauselist, (POINTER)NULL);
if (flag_GetFlagIntValue(Flags, flag_CNFSUB) == flag_ON)
clauselist = cnf_SubsumeClauseList(Flags, clauselist);
return clauselist;
}
TERM cnf_Flatten(TERM Term, SYMBOL Symbol)
/**************************************************************
INPUT: A <Term> and <Symbol> that is assumed to be associative.
RETURNS: If the top symbol of <Term> is <Symbol> the <Term> is flattened
as long as it contains further direct subterms starting with <Symbol>
CAUTION: The term is destructively changed.
***************************************************************/
{
LIST Scan1,Scan2;
if (symbol_Equal(term_TopSymbol(Term), Symbol)) {
TERM Argterm;
Scan1 =term_ArgumentList(Term);
while (!list_Empty(Scan1)) {
Argterm = (TERM)list_Car(Scan1);
Scan2 = list_Cdr(Scan1);
if (symbol_Equal(term_TopSymbol(Argterm),Symbol)) {
cnf_Flatten(Argterm,Symbol);
list_NInsert(Scan1,list_Cdr(term_ArgumentList(Argterm))); /* Be efficient ... */
list_Rplaca(Scan1,list_Car(term_ArgumentList(Argterm)));
list_Free(term_ArgumentList(Argterm));
term_Free(Argterm);
}
Scan1 = Scan2;
}
}
return Term;
}
static TERM cnf_FlattenPath(TERM Term, TERM PredicateTerm)
/**************************************************************
INPUT: A <Term> and <Symbol> that is assumed to be associative,
and a predicate term which is a subterm of term
RETURNS: If the top symbol of <Term> is <Symbol> the <Term> is flattened
as long as it contains further direct subterms starting with <Symbol>
CAUTION: The term is destructively changed.
***************************************************************/
{
TERM subterm;
subterm = Term;
while (symbol_Equal(term_TopSymbol(subterm), fol_All()))
subterm = term_SecondArgument(subterm);
if (symbol_Equal(term_TopSymbol(subterm), fol_Or())) {
TERM Argterm;
LIST scan1;
scan1 = term_ArgumentList(subterm);
while (!list_Empty(scan1)) {
LIST scan2;
Argterm = (TERM)list_Car(scan1);
scan2 = list_Cdr(scan1);
if (term_HasProperSuperterm(PredicateTerm, Argterm)) {
if (symbol_Equal(term_TopSymbol(Argterm),fol_Or())) {
LIST l;
cnf_Flatten(Argterm,fol_Or());
for (l=term_ArgumentList(Argterm); !list_Empty(l); l=list_Cdr(l))
term_RplacSuperterm((TERM) list_Car(l), subterm);
list_NInsert(scan1,list_Cdr(term_ArgumentList(Argterm))); /* Be efficient ... */
list_Rplaca(scan1,list_Car(term_ArgumentList(Argterm)));
list_Free(term_ArgumentList(Argterm));
term_Free(Argterm);
}
}
scan1 = scan2;
}
}
return Term;
}
static void cnf_DistrQuantorNoVarSub(TERM Term)
/**************************************************************
INPUT: A formula in negation normal form starting with a universal
(existential) quantifier and a disjunction (conjunction) as argument.
EFFECT: The Quantor is distributed if possible.
CAUTION: The term is destructively changed.
***************************************************************/
{
LIST Variables,Subformulas,Scan1,Scan2,Rest;
TERM Subterm,Var,NewForm;
SYMBOL Subtop,Top;
Top = term_TopSymbol(Term);
Variables = list_Copy(fol_QuantifierVariables(Term));
Subterm = term_SecondArgument(Term);
Subtop = term_TopSymbol(Subterm);
Subterm = cnf_Flatten(Subterm,Subtop);
for (Scan1=Variables;!list_Empty(Scan1);Scan1=list_Cdr(Scan1)) {
Subformulas = list_Nil();
Var = (TERM)list_Car(Scan1);
for (Scan2=term_ArgumentList(Subterm);!list_Empty(Scan2);Scan2=list_Cdr(Scan2))
if (!fol_VarOccursFreely(Var,list_Car(Scan2)))
Subformulas = list_Cons(list_Car(Scan2),Subformulas);
if (!list_Empty(Subformulas)) {
Rest = list_NPointerDifference(term_ArgumentList(Subterm),Subformulas);
if (list_Empty(list_Cdr(Rest))) { /* One subformula */
if (symbol_Equal(Top,term_TopSymbol(list_Car(Rest)))) { /* Optimization: quantifier still exist */
NewForm = (TERM)list_Car(Rest);
term_RplacArgumentList(term_FirstArgument(NewForm),
list_Cons((POINTER)Var,fol_QuantifierVariables(NewForm)));
list_Delete(Rest);
}
else
NewForm = fol_CreateQuantifier(Top,list_List((POINTER)Var),Rest);
}
else
NewForm = fol_CreateQuantifier(Top,list_List((POINTER)Var),list_List(term_Create(Subtop,Rest)));
term_RplacArgumentList(Subterm,list_Cons(NewForm,Subformulas));
term_RplacArgumentList(term_FirstArgument(Term),
list_PointerDeleteElement(fol_QuantifierVariables(Term),(POINTER)Var));
}
}
if (list_Empty(fol_QuantifierVariables(Term))) { /* All variables moved inside */
term_Free(term_FirstArgument(Term));
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,Subtop);
term_RplacArgumentList(Term,term_ArgumentList(Subterm));
term_Free(Subterm);
}
list_Delete(Variables);
}
static TERM cnf_AntiPrenex(TERM Term)
/**************************************************************
INPUT: A formula in negation normal form.
RETURNS: The term after application of anti-prenexing. Quantifiers
are moved inside as long as possible.
CAUTION: The term is destructively changed.
***************************************************************/
{
LIST Scan;
SYMBOL Top;
Top = term_TopSymbol(Term);
if (fol_IsQuantifier(Top)) {
TERM Subterm,Actterm;
SYMBOL DistrSymb,Subtop; /* The junctor the respective quantifier distributes over */
Subterm = term_SecondArgument(Term);
Subtop = term_TopSymbol(Subterm);
if (!symbol_IsPredicate(Subtop) &&
!symbol_Equal(Subtop,fol_Not())) { /* Formula in NNF: No Literals or Atoms */
if (symbol_Equal(Top,fol_All()))
DistrSymb = fol_And();
else
DistrSymb = fol_Or();
if (fol_IsQuantifier(Subtop)) {
cnf_AntiPrenex(Subterm);
Subtop = term_TopSymbol(Subterm);
}
if (symbol_Equal(Subtop,DistrSymb)) {
LIST Variables;
LIST NewVars;
Variables = fol_QuantifierVariables(Term);
Subterm = cnf_Flatten(Subterm,DistrSymb);
for (Scan=term_ArgumentList(Subterm);!list_Empty(Scan);Scan=list_Cdr(Scan)) {
Actterm = (TERM)list_Car(Scan);
NewVars = list_NIntersect(fol_FreeVariables(Actterm),Variables,
(BOOL (*)(POINTER,POINTER))term_Equal);
if (!list_Empty(NewVars)) {
if (symbol_Equal(Top,term_TopSymbol(Actterm))) { /* Quantor already there */
term_CopyTermsInList(NewVars);
term_RplacArgumentList(term_FirstArgument(Actterm),
list_Nconc(fol_QuantifierVariables(Actterm),
NewVars));
}
else {
term_CopyTermsInList(NewVars);
list_Rplaca(Scan,fol_CreateQuantifier(Top, NewVars, list_List(Actterm)));
}
}
}
term_Delete(term_FirstArgument(Term)); /* Delete old variable list */
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,DistrSymb);
term_RplacArgumentList(Term,term_ArgumentList(Subterm));
term_Free(Subterm);
for (Scan=term_ArgumentList(Term);!list_Empty(Scan);Scan=list_Cdr(Scan))
list_Rplaca(Scan,cnf_AntiPrenex(list_Car(Scan)));
}
else
if (!fol_IsQuantifier(Subtop)) {
cnf_DistrQuantorNoVarSub(Term);
for (Scan=term_ArgumentList(Term);!list_Empty(Scan);Scan=list_Cdr(Scan))
cnf_AntiPrenex(list_Car(Scan));
}
}
}
else
if (!symbol_Equal(Top,fol_Not()) && !symbol_IsPredicate(Top))
for (Scan=term_ArgumentList(Term);!list_Empty(Scan);Scan=list_Cdr(Scan))
cnf_AntiPrenex(list_Car(Scan));
return Term;
}
static void cnf_DistrQuantorNoVarSubPath(TERM Term, TERM PredicateTerm)
/**************************************************************
INPUT: A formula in negation normal form starting with a universal
(existential) quantifier and a disjunction (conjunction) as argument
and a predicate term which is a subterm of term.
CAUTION: The term is destructively changed.
***************************************************************/
{
LIST Variables,Subformulas,Scan1,Scan2,Rest;
TERM Subterm,Var,NewForm;
SYMBOL Subtop,Top;
/*fputs("\nAN0:\t",stdout);term_Print(Term);*/
Top = term_TopSymbol(Term);
Variables = list_Copy(fol_QuantifierVariables(Term));
Subterm = term_SecondArgument(Term);
Subtop = term_TopSymbol(Subterm);
Subterm = cnf_Flatten(Subterm,Subtop);
/*fputs("\nAN1:\t",stdout);term_Print(Subterm);*/
for (Scan1=Variables;!list_Empty(Scan1);Scan1=list_Cdr(Scan1)) {
Subformulas = list_Nil();
Var = (TERM)list_Car(Scan1);
/* Find subterms in which the variable does not occur freely */
for (Scan2=term_ArgumentList(Subterm);!list_Empty(Scan2);Scan2=list_Cdr(Scan2))
if (!fol_VarOccursFreely(Var,list_Car(Scan2)))
Subformulas = list_Cons(list_Car(Scan2),Subformulas);
if (!list_Empty(Subformulas)) {
/* Rest is the list of those subterms where the variable does occur freely */
Rest = list_NPointerDifference(term_ArgumentList(Subterm),Subformulas);
if (list_Empty(list_Cdr(Rest))) { /* One subformula */
if (symbol_Equal(Top,term_TopSymbol(list_Car(Rest)))) { /* Optimization: quantifier still exist */
NewForm = (TERM)list_Car(Rest);
/* Move one variable down */
term_RplacArgumentList(term_FirstArgument(NewForm),
list_Cons((POINTER)Var,fol_QuantifierVariables(NewForm)));
list_Delete(Rest);
}
else {
NewForm = fol_CreateQuantifierAddFather(Top,list_List((POINTER)Var),
Rest);
}
}
else {
TERM t;
t = term_CreateAddFather(Subtop,Rest);
NewForm = fol_CreateQuantifierAddFather(Top,list_List((POINTER)Var),list_List(t));
}
if (term_HasProperSuperterm(PredicateTerm, NewForm))
NewForm = cnf_AntiPrenexPath(NewForm, PredicateTerm);
term_RplacArgumentList(Subterm,list_Cons(NewForm,Subformulas));
term_RplacSuperterm(NewForm, Subterm);
term_RplacArgumentList(term_FirstArgument(Term),
list_PointerDeleteElement(fol_QuantifierVariables(Term),(POINTER)Var));
}
}
if (list_Empty(fol_QuantifierVariables(Term))) { /* All variables moved inside */
LIST l;
term_Free(term_FirstArgument(Term));
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,Subtop);
term_RplacArgumentList(Term,term_ArgumentList(Subterm));
term_Free(Subterm);
for (l=term_ArgumentList(Term); !list_Empty(l); l=list_Cdr(l))
term_RplacSuperterm((TERM) list_Car(l), Term);
}
list_Delete(Variables);
}
static TERM cnf_AntiPrenexPath(TERM Term, TERM PredicateTerm)
/**************************************************************
INPUT: A formula in negation normal form and a predicate term
which is a subterm of term.
RETURNS: The term after application of anti-prenexing. Quantifiers
are moved inside along the path as long as possible.
CAUTION: The term is destructively changed.
***************************************************************/
{
LIST Scan;
SYMBOL Top;
Top = term_TopSymbol(Term);
if (fol_IsQuantifier(Top)) {
TERM Subterm,Actterm;
SYMBOL DistrSymb,Subtop; /* The junctor the respective quantifier distributes over */
Subterm = term_SecondArgument(Term);
Subtop = term_TopSymbol(Subterm);
if (!symbol_Equal(Subtop,fol_Not()) && !symbol_IsPredicate(Subtop)) { /* No Literals or Atoms */
if (symbol_Equal(Top,fol_All()))
DistrSymb = fol_And();
else
DistrSymb = fol_Or();
if (fol_IsQuantifier(Subtop)) {
cnf_AntiPrenexPath(Subterm, PredicateTerm);
Subtop = term_TopSymbol(Subterm);
}
if (symbol_Equal(Subtop,DistrSymb)) {
LIST Variables;
LIST NewVars;
Variables = fol_QuantifierVariables(Term);
Subterm = cnf_Flatten(Subterm,DistrSymb);
term_AddFatherLinks(Subterm);
/*
for (l=term_ArgumentList(Subterm); !list_Empty(l); l=list_Cdr(l))
term_RplacSuperterm((TERM) list_Car(l), Subterm);
*/
for (Scan=term_ArgumentList(Subterm);!list_Empty(Scan);Scan=list_Cdr(Scan)) {
Actterm = (TERM)list_Car(Scan);
NewVars = list_NIntersect(fol_FreeVariables(Actterm),Variables,
(BOOL (*)(POINTER,POINTER))term_Equal);
if (!list_Empty(NewVars)) {
if (symbol_Equal(Top,term_TopSymbol(Actterm))) { /* Quantor already there */
term_CopyTermsInList(NewVars);
term_RplacArgumentList(term_FirstArgument(Actterm),
list_Nconc(fol_QuantifierVariables(Actterm), NewVars));
}
else {
term_CopyTermsInList(NewVars);
list_Rplaca(Scan,fol_CreateQuantifierAddFather(Top, NewVars, list_List(Actterm)));
}
}
}
term_Delete(term_FirstArgument(Term)); /* Delete old variable list */
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,DistrSymb);
term_RplacArgumentList(Term,term_ArgumentList(Subterm));
term_Free(Subterm);
term_AddFatherLinks(Term);
for (Scan=term_ArgumentList(Term);!list_Empty(Scan);Scan=list_Cdr(Scan)) {
term_RplacSuperterm((TERM) list_Car(Scan), Term);
if (term_HasPointerSubterm((TERM) list_Car(Scan), PredicateTerm)) {
puts("\ncheck1");
list_Rplaca(Scan,cnf_AntiPrenexPath(list_Car(Scan), PredicateTerm));
term_RplacSuperterm((TERM) list_Car(Scan), Term);
}
}
}
else
if (!fol_IsQuantifier(Subtop)) {
cnf_DistrQuantorNoVarSubPath(Term, PredicateTerm);
for (Scan=term_ArgumentList(Term); !list_Empty(Scan); Scan = list_Cdr(Scan)) {
if (term_HasPointerSubterm(list_Car(Scan), PredicateTerm))
cnf_AntiPrenexPath(list_Car(Scan), PredicateTerm);
}
}
}
}
else
if (!symbol_Equal(Top,fol_Not()) && !symbol_IsPredicate(Top))
for (Scan=term_ArgumentList(Term);!list_Empty(Scan);Scan=list_Cdr(Scan))
if (term_HasProperSuperterm(PredicateTerm, (TERM) list_Car(Scan)))
cnf_AntiPrenexPath(list_Car(Scan), PredicateTerm);
term_AddFatherLinks(Term);
return Term;
}
static TERM cnf_RemoveTrivialOperators(TERM Term)
/**************************************************************
INPUT: A formula.
RETURNS: The formula after
removal of "or" and "and" with only one argument
CAUTION: The term is destructively changed.
***************************************************************/
{
SYMBOL Top;
LIST Scan;
Top = term_TopSymbol(Term);
if (symbol_IsPredicate(Top))
return Term;
if ((symbol_Equal(Top,fol_And()) || symbol_Equal(Top,fol_Or())) &&
list_Empty(list_Cdr(term_ArgumentList(Term)))) {
TERM Result;
Result = term_FirstArgument(Term);
term_RplacSuperterm(Result, term_Superterm(Term));
list_Delete(term_ArgumentList(Term));
term_Free(Term);
return cnf_RemoveTrivialOperators(Result);
}
for (Scan=term_ArgumentList(Term);!list_Empty(Scan);Scan=list_Cdr(Scan)) {
list_Rplaca(Scan,cnf_RemoveTrivialOperators(list_Car(Scan)));
term_RplacSuperterm((TERM) list_Car(Scan), Term);
}
return Term;
}
static TERM cnf_SimplifyQuantors(TERM Term)
/**************************************************************
INPUT: A formula.
RETURNS: The formula after
removal of bindings of variables that don't occur in the
respective subformula and possible mergings of quantors
CAUTION: The term is destructively changed.
***************************************************************/
{
SYMBOL Top;
LIST Scan;
Top = term_TopSymbol(Term);
if (symbol_IsPredicate(Top) || symbol_Equal(Top,fol_Varlist()))
return Term;
if (fol_IsQuantifier(Top)) {
LIST Vars;
TERM Var,Subterm,Aux;
Vars = list_Nil();
Subterm = term_SecondArgument(Term);
while (symbol_Equal(term_TopSymbol(Subterm),Top)) {
term_RplacArgumentList(term_FirstArgument(Term),
list_Nconc(fol_QuantifierVariables(Term),fol_QuantifierVariables(Subterm)));
term_Free(term_FirstArgument(Subterm));
Aux = term_SecondArgument(Subterm);
list_Delete(term_ArgumentList(Subterm));
term_Free(Subterm);
list_Rplaca(list_Cdr(term_ArgumentList(Term)),Aux);
Subterm = Aux;
}
for (Scan=fol_QuantifierVariables(Term);!list_Empty(Scan);Scan=list_Cdr(Scan)) {
Var = (TERM)list_Car(Scan);
if (!fol_VarOccursFreely(Var,Subterm))
Vars = list_Cons(Var,Vars);
}
if (!list_Empty(Vars)) {
Subterm = term_FirstArgument(Term);
term_RplacArgumentList(Subterm,list_NPointerDifference(term_ArgumentList(Subterm),Vars));
term_DeleteTermList(Vars);
if (list_Empty(term_ArgumentList(Subterm))) {
Subterm = term_SecondArgument(Term);
term_Delete(term_FirstArgument(Term));
list_Delete(term_ArgumentList(Term));
term_Free(Term);
return cnf_SimplifyQuantors(Subterm);
}
}
}
for (Scan=term_ArgumentList(Term);!list_Empty(Scan);Scan=list_Cdr(Scan))
list_Rplaca(Scan,cnf_SimplifyQuantors(list_Car(Scan)));
return Term;
}
TERM cnf_RemoveTrivialAtoms(TERM Term)
/**************************************************************
INPUT: A formula.
RETURNS: The formula where occurrences of the atoms "true"
and "false" are propagated and eventually removed.
CAUTION: The term is destructively changed.
***************************************************************/
{
SYMBOL Top,Subtop;
LIST Scan;
TERM Result;
BOOL Update;
if (!term_IsComplex(Term))
return Term;
Top = term_TopSymbol(Term);
Update = FALSE;
if (symbol_Equal(Top,fol_And())) {
Scan = term_ArgumentList(Term);
while (!list_Empty(Scan)) {
Result = cnf_RemoveTrivialAtoms(list_Car(Scan));
Subtop = term_TopSymbol(Result);
if (symbol_Equal(Subtop,fol_True()))
Update = TRUE;
else
if (symbol_Equal(Subtop,fol_False())) {
term_RplacTop(Term,fol_False());
term_DeleteTermList(term_ArgumentList(Term));
term_RplacArgumentList(Term,list_Nil());
return Term;
}
Scan = list_Cdr(Scan);
}
if (Update) {
term_RplacArgumentList(Term,fol_DeleteTrueTermFromList(term_ArgumentList(Term)));
if (list_Empty(term_ArgumentList(Term))) {
term_RplacTop(Term,fol_True());
return Term;
}
}
}
else if (symbol_Equal(Top,fol_Or())) {
Scan = term_ArgumentList(Term);
while (!list_Empty(Scan)) {
Result = cnf_RemoveTrivialAtoms(list_Car(Scan));
Subtop = term_TopSymbol(Result);
if (symbol_Equal(Subtop,fol_False()))
Update = TRUE;
else
if (symbol_Equal(Subtop,fol_True())) {
term_RplacTop(Term,fol_True());
term_DeleteTermList(term_ArgumentList(Term));
term_RplacArgumentList(Term,list_Nil());
return Term;
}
Scan = list_Cdr(Scan);
}
if (Update) {
term_RplacArgumentList(Term,fol_DeleteFalseTermFromList(term_ArgumentList(Term)));
if (list_Empty(term_ArgumentList(Term))) {
term_RplacTop(Term,fol_False());
return Term;
}
}
}
else if (fol_IsQuantifier(Top) || symbol_Equal(Top,fol_Not())) {
if (fol_IsQuantifier(Top))
Result = cnf_RemoveTrivialAtoms(term_SecondArgument(Term));
else
Result = cnf_RemoveTrivialAtoms(term_FirstArgument(Term));
Subtop = term_TopSymbol(Result);
if ((symbol_Equal(Subtop,fol_False()) && symbol_Equal(Top,fol_Not())) ||
(symbol_Equal(Subtop,fol_True()) && fol_IsQuantifier(Top))) {
term_RplacTop(Term,fol_True());
term_DeleteTermList(term_ArgumentList(Term));
term_RplacArgumentList(Term,list_Nil());
return Term;
}
else
if ((symbol_Equal(Subtop,fol_True()) && symbol_Equal(Top,fol_Not())) ||
(symbol_Equal(Subtop,fol_False()) && fol_IsQuantifier(Top))) {
term_RplacTop(Term,fol_False());
term_DeleteTermList(term_ArgumentList(Term));
term_RplacArgumentList(Term,list_Nil());
return Term;
}
}
else if (symbol_Equal(Top,fol_Implies())) {
Result = cnf_RemoveTrivialAtoms(term_FirstArgument(Term));
Subtop = term_TopSymbol(Result);
if (symbol_Equal(Subtop,fol_False())) {
term_RplacTop(Term,fol_True());
term_DeleteTermList(term_ArgumentList(Term));
term_RplacArgumentList(Term,list_Nil());
return Term;
}
else if (symbol_Equal(Subtop,fol_True())) {
term_Delete(Result);
Result = term_SecondArgument(Term);
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,term_TopSymbol(Result));
term_RplacArgumentList(Term,term_ArgumentList(Result));
term_Free(Result);
return cnf_RemoveTrivialAtoms(Term);
}
Result = cnf_RemoveTrivialAtoms(term_SecondArgument(Term));
Subtop = term_TopSymbol(Result);
if (symbol_Equal(Subtop,fol_True())) {
term_RplacTop(Term,fol_True());
term_DeleteTermList(term_ArgumentList(Term));
term_RplacArgumentList(Term,list_Nil());
return Term;
}
else if (symbol_Equal(Subtop,fol_False())) {
term_RplacTop(Term,fol_Not());
term_RplacArgumentList(Term,fol_DeleteFalseTermFromList(term_ArgumentList(Term)));
}
}
else if (symbol_Equal(Top,fol_Equiv())) {
Result = cnf_RemoveTrivialAtoms(term_FirstArgument(Term));
Subtop = term_TopSymbol(Result);
if (symbol_Equal(Subtop,fol_False())) {
term_RplacTop(Term,fol_Not());
term_RplacArgumentList(Term,fol_DeleteFalseTermFromList(term_ArgumentList(Term)));
if (list_Empty(term_ArgumentList(Term))) {
term_RplacTop(Term, fol_True());
return Term;
}
return cnf_RemoveTrivialAtoms(Term);
}
else if (symbol_Equal(Subtop,fol_True())) {
term_Delete(Result);
Result = term_SecondArgument(Term);
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,term_TopSymbol(Result));
term_RplacArgumentList(Term,term_ArgumentList(Result));
term_Free(Result);
return cnf_RemoveTrivialAtoms(Term);
}
Result = cnf_RemoveTrivialAtoms(term_SecondArgument(Term));
Subtop = term_TopSymbol(Result);
if (symbol_Equal(Subtop,fol_False())) {
term_RplacTop(Term,fol_Not());
term_RplacArgumentList(Term,fol_DeleteFalseTermFromList(term_ArgumentList(Term)));
}
else if (symbol_Equal(Subtop,fol_True())) {
term_Delete(Result);
Result = term_FirstArgument(Term);
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,term_TopSymbol(Result));
term_RplacArgumentList(Term,term_ArgumentList(Result));
term_Free(Result);
}
}
return Term;
}
TERM cnf_ObviousSimplifications(TERM Term)
/**************************************************************
INPUT: A formula.
RETURNS: The formula after performing the following simplifications:
- remove "or" and "and" with only one argument
- remove bindings of variables that don't occur in the
respective subformula
- merge quantors
CAUTION: The term is destructively changed.
***************************************************************/
{
Term = cnf_RemoveTrivialAtoms(Term);
Term = cnf_RemoveTrivialOperators(Term);
Term = cnf_SimplifyQuantors(Term);
return Term;
}
/* EK: warum wird Term zurueckgegeben, wenn er destruktiv geaendert wird??? */
static TERM cnf_SkolemFormula(TERM Term, FLAGSTORE Flags,
PRECEDENCE Precedence, LIST* Symblist)
/**************************************************************
INPUT: A formula in negation normal form, a precedence and pointer
to a list used as return value.
RETURNS: The skolemized term and the list of introduced Skolem functions.
CAUTION: The term is destructively changed.
The precedence of the new Skolem functions is set in <Precedence>.
***************************************************************/
{
SYMBOL Top,SkolemSymbol;
TERM Subterm,SkolemTerm;
LIST Varlist,Scan;
NAT Arity;
Top = term_TopSymbol(Term);
if (fol_IsQuantifier(term_TopSymbol(Term))) {
if (symbol_Equal(Top,fol_All())) {
term_Delete(term_FirstArgument(Term));
Subterm = term_SecondArgument(Term);
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,term_TopSymbol(Subterm));
term_RplacArgumentList(Term,term_ArgumentList(Subterm));
term_Free(Subterm);
return cnf_SkolemFormula(Term, Flags, Precedence, Symblist);
}
else { /* exist quantifier */
/* Implementation of the quantifier exchange operator of Ohlbach &
* Schmidt for the functional translation of modal logics K, KD.
* Constants are introduced during Skolemisation */
if (flag_GetFlagIntValue(Flags, flag_CNFQUANTEXCH)) {
Varlist = list_Nil();
Arity = 0;
}
else {
Varlist = fol_FreeVariables(Term);
Arity = list_Length(Varlist);
}
for (Scan=fol_QuantifierVariables(Term);!list_Empty(Scan);Scan=list_Cdr(Scan)) {
SkolemSymbol = symbol_CreateSkolemFunction(Arity, Precedence);
*Symblist = list_Cons((POINTER)SkolemSymbol, *Symblist);
SkolemTerm = term_Create(SkolemSymbol,Varlist); /* Caution: Sharing of Varlist ! */
fol_ReplaceVariable(term_SecondArgument(Term),term_TopSymbol(list_Car(Scan)),SkolemTerm);
term_Free(SkolemTerm);
}
list_Delete(Varlist);
term_Delete(term_FirstArgument(Term));
Subterm = term_SecondArgument(Term);
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,term_TopSymbol(Subterm));
term_RplacArgumentList(Term,term_ArgumentList(Subterm));
term_Free(Subterm);
return cnf_SkolemFormula(Term, Flags, Precedence, Symblist);
}
}
else
if (symbol_Equal(Top,fol_And()) || symbol_Equal(Top,fol_Or()))
for (Scan=term_ArgumentList(Term);!list_Empty(Scan);Scan=list_Cdr(Scan))
cnf_SkolemFormula(list_Car(Scan), Flags, Precedence, Symblist);
return Term;
}
static TERM cnf_Cnf(TERM Term, FLAGSTORE Flags, PRECEDENCE Precedence, LIST* Symblist)
/**************************************************************
INPUT: A formula, a precedence and a pointer to a list of symbols
used as return value.
RETURNS: The term is transformed to conjunctive normal form.
EFFECT: The term is destructively changed and not normalized.
The precedence of new Skolem symbols is set in <Precedence>.
***************************************************************/
{
/* Necessary because ren_Rename crashes if a e.g. and() has only one argument */
Term = cnf_ObviousSimplifications(Term);
term_AddFatherLinks(Term);
Term = ren_Rename(Term, Precedence, Symblist, FALSE, FALSE, flag_GetFlagIntValue(Flags, flag_CNFRENAMING));
Term = cnf_RemoveEquivImplFromFormula(Term);
Term = cnf_NegationNormalFormula(Term);
Term = cnf_SkolemFormula(cnf_AntiPrenex(Term), Flags, Precedence, Symblist);
Term = cnf_DistributiveFormula(Term);
return Term;
}
static LIST cnf_GetUsedTerms(CLAUSE C, PROOFSEARCH Search,
HASH InputClauseToTermLabellist)
/**************************************************************
INPUT:
RETURNS:
***************************************************************/
{
LIST UsedTerms, Used2, Scan;
UsedTerms = list_Copy(hsh_Get(InputClauseToTermLabellist, C));
UsedTerms = cnf_DeleteDuplicateLabelsFromList(UsedTerms);
if (!list_Empty(UsedTerms))
return UsedTerms;
for (Scan = clause_ParentClauses(C); !list_Empty(Scan); Scan = list_Cdr(Scan)) {
CLAUSE P;
int ClauseNumber;
ClauseNumber = (int) list_Car(Scan);
P = clause_GetNumberedCl(ClauseNumber, prfs_WorkedOffClauses(Search));
if (P == NULL) {
P = clause_GetNumberedCl(ClauseNumber, prfs_UsableClauses(Search));
if (P == NULL)
P = clause_GetNumberedCl(ClauseNumber, prfs_DocProofClauses(Search));
}
Used2 = cnf_GetUsedTerms(P, Search, InputClauseToTermLabellist);
UsedTerms = list_Nconc(UsedTerms, Used2);
}
return UsedTerms;
}
static BOOL cnf_HaveProofOptSkolem(PROOFSEARCH Search, TERM topterm,
char* toplabel, TERM term2,
LIST* UsedTerms, LIST* Symblist,
HASH InputClauseToTermLabellist)
/**************************************************************
INPUT:
RETURNS: ??? EK
***************************************************************/
{
LIST ConClauses, EmptyClauses;
LIST scan;
BOOL found;
LIST Usables;
FLAGSTORE Flags;
PRECEDENCE Precedence;
Flags = prfs_Store(Search);
Precedence = prfs_Precedence(Search);
ConClauses = list_Nil();
found = FALSE;
/* List of clauses from term2 */
term_AddFatherLinks(term2);
term2 = cnf_Cnf(term2, Flags, Precedence, Symblist);
Usables = cnf_MakeClauseList(term2, FALSE, FALSE, Flags, Precedence);
term_Delete(term2);
for (scan=Usables; !list_Empty(scan); scan = list_Cdr(scan)) {
clause_SetFlag(list_Car(scan), CONCLAUSE);
if (flag_GetFlagIntValue(Flags, flag_DOCPROOF) || flag_GetFlagIntValue(Flags, flag_FLOTTER)) {
#ifdef CHECK
hsh_Check(InputClauseToTermLabellist);
#endif
hsh_Put(InputClauseToTermLabellist, list_Car(scan), toplabel);
#ifdef CHECK_CNF
fputs("\nUsable : ", stdout);
clause_Print(list_Car(scan));
printf(" Label %s", toplabel);
#endif
}
}
EmptyClauses = cnf_SatUnit(Search, Usables);
if (!list_Empty(EmptyClauses)) {
found = TRUE;
#ifdef CHECK_CNF
fputs("\nHaveProof : Empty Clause : ", stdout);
clause_Print((CLAUSE) list_Car(EmptyClauses));
putchar('\n');
#endif
if (flag_GetFlagIntValue(Flags, flag_DOCPROOF) || flag_GetFlagIntValue(Flags, flag_FLOTTER))
*UsedTerms = list_Nconc(*UsedTerms, cnf_GetUsedTerms((CLAUSE) list_Car(EmptyClauses), Search, InputClauseToTermLabellist));
EmptyClauses = list_PointerDeleteDuplicates(EmptyClauses);
clause_DeleteClauseList(EmptyClauses);
}
/* Removing ConClauses from UsablesIndex */
ConClauses = list_Copy(prfs_UsableClauses(Search));
for (scan = ConClauses; !list_Empty(scan); scan = list_Cdr(scan))
if (flag_GetFlagIntValue(Flags, flag_DOCPROOF))
prfs_MoveUsableDocProof(Search, (CLAUSE) list_Car(scan));
else
prfs_DeleteUsable(Search, (CLAUSE) list_Car(scan));
list_Delete(ConClauses);
return found;
}
BOOL cnf_HaveProof(LIST TermList, TERM ToProve, FLAGSTORE InputFlags,
PRECEDENCE InputPrecedence)
/**************************************************************
INPUT: A list of terms, a term to prove, a flag store and a precedence.
The arguments are not changed.
RETURNS: True if the termlist implies ToProve
CAUTION: All terms are copied.
***************************************************************/
{
PROOFSEARCH search;
LIST scan, usables, symblist, emptyclauses;
BOOL found;
FLAGSTORE Flags;
PRECEDENCE Precedence;
/* Use global PROOFSEARCH object to avoid stamp overflow */
search = cnf_HAVEPROOFPS;
usables = symblist = list_Nil();
/* Initialize search object's flag store */
Flags = prfs_Store(search);
flag_CleanStore(Flags);
flag_InitFlotterSubproofFlags(InputFlags, Flags);
/* Initialize search object's precedence */
Precedence = prfs_Precedence(search);
symbol_TransferPrecedence(InputPrecedence, Precedence);
/* Build list of clauses from the termlist */
for (scan=TermList; !list_Empty(scan); scan=list_Cdr(scan)) {
TERM t;
t = term_Copy(list_Car(scan));
t = cnf_Cnf(t, Flags, Precedence, &symblist);
usables = list_Nconc(cnf_MakeClauseList(t,FALSE,FALSE,Flags,Precedence),
usables);
term_Delete(t);
}
/* Build clauses from negated term to prove */
ToProve = term_Create(fol_Not(), list_List(term_Copy(ToProve)));
term_AddFatherLinks(ToProve);
ToProve = cnf_Cnf(ToProve, Flags, Precedence, &symblist);
usables = list_Nconc(cnf_MakeClauseList(ToProve,FALSE,FALSE,Flags,Precedence),
usables);
term_Delete(ToProve);
/* SatUnit requires the CONCLAUSE flag */
for (scan=usables;!list_Empty(scan); scan = list_Cdr(scan))
clause_SetFlag(list_Car(scan), CONCLAUSE);
emptyclauses = cnf_SatUnit(search, usables);
if (!list_Empty(emptyclauses)) {
found = TRUE;
emptyclauses = list_PointerDeleteDuplicates(emptyclauses);
clause_DeleteClauseList(emptyclauses);
}
else
found = FALSE;
prfs_Clean(search);
symbol_DeleteSymbolList(symblist);
return found;
}
static void cnf_RplacVarsymbFunction(TERM term, SYMBOL varsymb, TERM function)
/**********************************************************
INPUT: A term, a variable symbol and a function.
EFFECT: The variable with the symbol varsymb in the term
is replaced by the function function.
CAUTION: The term is destructively changed.
***********************************************************/
{
int bottom;
TERM term1;
LIST scan;
bottom = vec_ActMax();
vec_Push(term);
while (bottom != vec_ActMax()) {
term1 = (TERM)vec_PopResult();
if (symbol_Equal(term_TopSymbol(term1),varsymb)) {
term_RplacTop(term1,term_TopSymbol(function));
term_RplacArgumentList(term1,term_CopyTermList(term_ArgumentList(function)));
}else
if (!list_Empty(term_ArgumentList(term1)))
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan))
vec_Push(list_Car(scan));
}
vec_SetMax(bottom);
}
static void cnf_RplacVar(TERM Term, LIST Varlist, LIST Termlist)
/**********************************************************
INPUT: A term,a variable symbol and a function.
RETURNS: The variable with the symbol varsymb in the term
is replaced by the function function.
CAUTION: The term is destructively changed.
***********************************************************/
{
int bottom;
TERM term1;
LIST scan,scan2;
bottom = vec_ActMax();
vec_Push(Term);
while (bottom != vec_ActMax()) {
term1 = vec_PopResult();
if (symbol_IsVariable(term_TopSymbol(term1))) {
BOOL done;
done = FALSE;
for (scan=Varlist, scan2=Termlist; !list_Empty(scan) && !done;
scan = list_Cdr(scan), scan2 = list_Cdr(scan2)) {
if (symbol_Equal(term_TopSymbol(term1),term_TopSymbol(list_Car(scan)))) {
term_RplacTop(term1,term_TopSymbol((TERM) list_Car(scan2)));
term_RplacArgumentList(term1,
term_CopyTermList(term_ArgumentList(list_Car(scan2))));
done = TRUE;
}
}
}
else
if (!list_Empty(term_ArgumentList(term1)))
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan))
vec_Push(list_Car(scan));
}
vec_SetMax(bottom);
}
static TERM cnf_MakeSkolemFunction(LIST varlist, PRECEDENCE Precedence)
/**************************************************************
INPUT: A list of variables and a precedence.
RETURNS: The new term oskf... (oskc...) which is a function
with varlist as arguments.
EFFECT: The precedence of the new Skolem function is set in <Precedence>.
***************************************************************/
{
TERM term;
SYMBOL skolem;
skolem = symbol_CreateSkolemFunction(list_Length(varlist), Precedence);
term = term_Create(skolem, term_CopyTermList(varlist));
return term;
}
static void cnf_PopAllQuantifier(TERM term)
/********************************************************
INPUT: A term whose top symbol is fol_all.
RETURNS: Nothing.
EFFECT: Removes the quantifier
********************************************************/
{
TERM SubTerm;
LIST VarList;
#ifdef CHECK
if (!symbol_Equal(term_TopSymbol(term), fol_All())) {
misc_StartErrorReport();
misc_ErrorReport("\n In cnf_PopAllQuantifier: Top symbol is not fol_All !\n");
misc_FinishErrorReport();
}
#endif
VarList = term_ArgumentList(term_FirstArgument(term));
term_DeleteTermList(VarList);
term_Free(term_FirstArgument(term));
SubTerm = term_SecondArgument(term);
list_Delete(term_ArgumentList(term));
term_RplacTop(term,term_TopSymbol(SubTerm));
term_RplacArgumentList(term,term_ArgumentList(SubTerm));
term_Free(SubTerm);
}
static TERM cnf_QuantifyAndNegate(TERM term, LIST VarList, LIST FreeList)
/****************************************************************
INPUT: A term, a list of variables to be exist-quantified,
a list of variables to be all-quantified
RETURNS: not(forall[FreeList](exists[VarList](term)))
MEMORY: The term, the lists and their arguments are copied.
***************************************************************/
{
TERM Result;
TERM TermCopy;
LIST VarListCopy;
LIST FreeListCopy;
TermCopy = term_Copy(term);
VarListCopy = term_CopyTermList(VarList);
Result = fol_CreateQuantifier(fol_Exist(),VarListCopy,list_List(TermCopy));
FreeListCopy = list_Nil();
FreeList = fol_FreeVariables(Result);
if (!list_Empty(FreeList)) {
FreeListCopy = term_CopyTermList(FreeList);
list_Delete(FreeList);
Result = fol_CreateQuantifier(fol_All(), FreeListCopy, list_List(Result));
}
Result = term_Create(fol_Not(), list_List(Result));
return Result;
}
static TERM cnf_MoveProvedTermToTopLevel(TERM Term, TERM Term1, TERM Proved,
LIST VarList, LIST FreeList,
PRECEDENCE Precedence)
/********************************************************************
INPUT: A top-level term, which must be a conjunction,
a subterm <Term1> of <Term>, a subterm <Proved> of <Term1>,
a list of existence quantified variables <VarList>,
a list of free variables <FreeList> and a precedence.
<Term1> is of the form
exists[...](t1 and t2 and ... and Proved and ..)
RETURNS: A new term, where <Proved> is removed from the arguments
of <Term1>.
EFFECT: The precedence of new Skolem functions is set in <Precedence>
*******************************************************************/
{
TERM termR;
TERM skolemfunction;
SYMBOL varsymb;
LIST scan;
termR = term_SecondArgument(Term1); /* t1 and t2 and ... and Proved ... */
term_RplacArgumentList(termR,
list_PointerDeleteElement(term_ArgumentList(termR),
Proved));
if (list_Length(term_ArgumentList(termR)) < 2) {
TERM termRL = term_FirstArgument(termR); /* t1 */
list_Delete(term_ArgumentList(termR));
term_RplacTop(termR, term_TopSymbol(termRL));
term_RplacArgumentList(termR,term_ArgumentList(termRL));
term_Free(termRL);
}
for (scan = VarList; scan != list_Nil(); scan = list_Cdr(scan)) {
varsymb = term_TopSymbol(list_Car(scan));
skolemfunction = cnf_MakeSkolemFunction(FreeList, Precedence);
cnf_RplacVarsymbFunction(termR,varsymb,skolemfunction);
cnf_RplacVarsymbFunction(Proved,varsymb,skolemfunction);
term_Delete(skolemfunction);
}
if (!list_Empty(FreeList)) {
Proved =
fol_CreateQuantifier(fol_All(), term_CopyTermList(FreeList),
list_List(Proved));
if (list_Length(FreeList) > 1)
Proved = cnf_QuantMakeOneVar(Proved);
}
term_Delete(term_FirstArgument(Term1)); /* Variables of "exists" */
list_Delete(term_ArgumentList(Term1));
term_RplacTop(Term1,term_TopSymbol(termR));
term_RplacArgumentList(Term1,term_ArgumentList(termR));
term_Free(termR);
term_RplacArgumentList(Term, list_Cons(Proved, term_ArgumentList(Term)));
return Proved;
}
static void cnf_Skolemize(TERM Term, LIST FreeList, PRECEDENCE Precedence)
/********************************************************
INPUT: A existence quantified term, the list of free variables
and a precedence.
RETURNS: Nothing.
EFFECT: The term is destructively changed, i.e. the
existence quantifier is removed by skolemization.
The precedence of new Skolem functions is set in <Precedence>.
*********************************************************/
{
LIST exlist;
TERM subterm;
LIST symblist;
symblist = list_Nil();
exlist = cnf_GetSymbolList(term_ArgumentList(term_FirstArgument(Term)));
term_Delete(term_FirstArgument(Term));
subterm = term_SecondArgument(Term);
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,term_TopSymbol(subterm));
term_RplacArgumentList(Term,term_ArgumentList(subterm));
term_Free(subterm);
symblist = cnf_SkolemFunctionFormula(Term, FreeList, exlist, Precedence);
list_Delete(exlist);
list_Delete(symblist);
}
static LIST cnf_FreeVariablesBut(TERM Term, LIST Symbols)
/********************************************************
INPUT: A term and a list of symbols
RETURNS: A list of all free variable terms in Term whose symbols are
not in Symbols
*********************************************************/
{
LIST follist, Scan;
follist = fol_FreeVariables(Term);
for (Scan = follist; !list_Empty(Scan); Scan = list_Cdr(Scan))
if (list_Member(Symbols, (POINTER)term_TopSymbol(list_Car(Scan)),
(BOOL (*)(POINTER,POINTER))symbol_Equal))
list_Rplaca(Scan,NULL);
follist = list_PointerDeleteElement(follist,NULL);
return follist;
}
static void cnf_SkolemFunctionFormulaMapped(TERM term, LIST allist, LIST map)
/**************************************************************
INPUT: A term term and a list allist of variables and a list map
of pairs (variable symbols, function symbol)
RETURNS: None.
CAUTION: The term is destructively changed. All variable symbols
in map which appear in term are replaced by the skolem functions
with respect to allist which contains the universally quantified
variables.
***************************************************************/
{
TERM term1;
LIST scan,scan1;
SYMBOL skolem, symbol;
int bottom;
bottom = vec_ActMax();
for (scan1=map; !list_Empty(scan1); scan1=list_Cdr(scan1)) {
vec_Push(term);
symbol = (SYMBOL) list_PairFirst((LIST) list_Car(scan1));
skolem = (SYMBOL) list_PairSecond((LIST) list_Car(scan1));
#ifdef CHECK_STRSKOLEM
if (flag_GetFlagIntValue(flag_PSTRSKOLEM)) {
fputs("\nVariable : ", stdout);
symbol_Print(symbol);
fputs("\nFunction : ", stdout);
symbol_Print(skolem);
}
#endif
while (bottom != vec_ActMax()) {
term1 = (TERM)vec_PopResult();
if (symbol_Equal(term_TopSymbol(term1),symbol)) {
term_RplacTop(term1,skolem);
list_Delete(term_ArgumentList(term1));
term_RplacArgumentList(term1,term_CopyTermList(allist));
}
if (!list_Empty(term_ArgumentList(term1)))
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan)) {
vec_Push(list_Car(scan));
}
}
}
vec_SetMax(bottom);
}
static BOOL cnf_HasDeeperVariable(LIST List1, LIST List2)
/******************************************************************
INPUT: Two lists of variable terms
RETURNS: TRUE if a variable in the first list is deeper than all variables
in the second list, FALSE otherwise.
NOTE: If cnf_VARIABLEDEPTHARRAY is not allocated this will crash
If new variables are introduced by strong skolemization, their
depth is -1.
*******************************************************************/
{
LIST scan;
int maxdepth1;
/* Determine maximum depth of variables in List1 */
maxdepth1 = 0;
for (scan=List1; !list_Empty(scan); scan=list_Cdr(scan)) {
int i;
i = cnf_VARIABLEDEPTHARRAY[term_TopSymbol((TERM) list_Car(scan))];
#ifdef CHECK_STRSKOLEM
if (flag_GetFlagIntValue(flag_PSTRSKOLEM)) {
fputs("\nFor variable ", stdout);
symbol_Print(term_TopSymbol((TERM) list_Car(scan)));
printf(" depth is %d.", i);
}
#endif
if (i > maxdepth1)
maxdepth1 = i;
}
/* Compare with depth of variables in List2 */
for (scan=List2; !list_Empty(scan); scan=list_Cdr(scan)) {
int i;
i = cnf_VARIABLEDEPTHARRAY[term_TopSymbol((TERM) list_Car(scan))];
#ifdef CHECK_STRSKOLEM
if (flag_GetFlagIntValue(flag_PSTRSKOLEM)) {
fputs("\nFor variable ", stdout);
symbol_Print(term_TopSymbol((TERM) list_Car(scan)));
printf(" depth is %d.", i);
}
#endif
if (i >= maxdepth1)
return FALSE;
}
return TRUE;
}
static void cnf_StrongSkolemization(PROOFSEARCH Search, TERM Topterm,
char* Toplabel, BOOL TopAnd, TERM Term,
LIST* UsedTerms, LIST* Symblist,
BOOL Result1,
HASH InputClauseToTermLabellist, int Depth)
/******************************************************************
INPUT: An existence quantified formula. ??? EK
RETURNS: Nothing.
EFFECT: The existence quantifier is removed by strong skolemization.
The precedence of new Skolem symbols is set in the precedence
of the search object.
*******************************************************************/
{
LIST exlist; /* Variable symbols bound by exists[]() */
LIST pairlist; /* List of pairs (Subterm of AND, free variable symbols
not in exlist) */
LIST allfreevariables;
LIST newvariables; /* w2..wn*/
LIST mapping; /* List of pairs */
int numberofallfreevariables, acc_length, i;
LIST pair, pairscan, pairscan_pred, scan, accumulatedvariables;
TERM subterm, w;
BOOL strskolemsuccess; /* Indicates whether strong skolemization was
possible */
FLAGSTORE Flags;
PRECEDENCE Precedence;
Flags = prfs_Store(Search);
Precedence = prfs_Precedence(Search);
/* Necessary so that new variables really are new ! */
if (flag_GetFlagIntValue(Flags, flag_CNFSTRSKOLEM))
symbol_SetStandardVarCounter(term_MaxVar(Topterm));
/* Get list of quantified variable symbols x_k */
exlist = cnf_GetSymbolList(term_ArgumentList(term_FirstArgument(Term)));
/* Pop quantifier */
term_Delete(term_FirstArgument(Term));
subterm = term_SecondArgument(Term);
list_Delete(term_ArgumentList(Term));
term_RplacTop(Term,term_TopSymbol(subterm));
term_RplacArgumentList(Term,term_ArgumentList(subterm));
term_Free(subterm);
/* Now for every argument get the list of free variables whose symbols
are not in exlist */
pairlist = list_Nil();
for (scan=term_ArgumentList(Term); !list_Empty(scan); scan = list_Cdr(scan)) {
pair = list_PairCreate((TERM) list_Car(scan),
cnf_FreeVariablesBut((TERM) list_Car(scan), exlist));
if (list_Empty(pairlist))
pairlist = list_List(pair);
else {
/* First sort subterms by number of free variables */
int pairlength, currentlength;
pairlength = list_Length((LIST) list_PairSecond(pair));
pairscan = pairlist;
pairscan_pred = list_Nil();
currentlength = 0;
while (!list_Empty(pairscan)) {
currentlength = list_Length((LIST) list_PairSecond((LIST) list_Car(pairscan)));
if (currentlength < pairlength) {
pairscan_pred = pairscan;
pairscan = list_Cdr(pairscan);
}
else if (currentlength == pairlength) {
/* If both subterms have the same number of free variables compare depth of variables */
if (cnf_HasDeeperVariable((LIST) list_PairSecond((LIST) list_Car(pairscan)), /* in list */
(LIST) list_PairSecond(pair))) { /* new pair */
#ifdef CHECK_STRSKOLEM
if (flag_GetFlagIntValue(flag_PSTRSKOLEM)) {
fputs("\nTerm ", stdout);
term_Print((TERM) list_PairFirst((LIST) list_Car(pairscan)));
fputs("\n has deeper variable than ", stdout);
term_Print((TERM) list_PairFirst(pair));
}
#endif
pairscan_pred = pairscan;
pairscan = list_Cdr(pairscan);
}
else
break;
}
else
break;
}
/* New pair has more variables than all others in list */
if (list_Empty(pairscan))
list_Rplacd(pairscan_pred, list_List(pair));
/* New pair is inserted between pairscan_pred and pairscan */
else if (currentlength >= pairlength) {
/* Head of list */
if (list_Empty(pairscan_pred))
pairlist = list_Cons(pair, pairlist);
else
list_InsertNext(pairscan_pred, pair);
}
/* The case for the same number of variables is not yet implemented */
}
}
#ifdef CHECK_STRSKOLEM
if (flag_GetFlagIntValue(flag_PSTRSKOLEM)) {
for (pairscan=pairlist; !list_Empty(pairscan); pairscan = list_Cdr(pairscan)) {
LIST l;
fputs("\nSubterm ", stdout);
term_Print((TERM) list_PairFirst((LIST) list_Car(pairscan)));
fputs("\n has free variables ", stdout);
for (l=(LIST) list_PairSecond((LIST) list_Car(pairscan)); !list_Empty(l); l = list_Cdr(l)) {
term_Print((TERM) list_Car(l));
fputs(" ", stdout);
}
}
}
#endif
/* Determine number of all free variablein and()--term whose symbols are not in exlist */
/* Create map from ex_variables tp skolem symbols */
allfreevariables = cnf_FreeVariablesBut(Term, exlist);
numberofallfreevariables = list_Length(allfreevariables);
mapping = list_Nil();
for (scan = exlist; !list_Empty(scan); scan = list_Cdr(scan)) {
SYMBOL skolem;
skolem = symbol_CreateSkolemFunction(numberofallfreevariables, Precedence);
*Symblist = list_Cons((POINTER)skolem,*Symblist);
mapping = list_Cons(list_PairCreate(list_Car(scan), (POINTER)skolem),
mapping);
}
list_Delete(allfreevariables);
/* Create new variables */
newvariables = list_Nil();
for (i=0; i < numberofallfreevariables; i++) {
w = term_CreateStandardVariable();
newvariables = list_Cons(w, newvariables);
}
#ifdef CHECK_STRSKOLEM
if (flag_GetFlagIntValue(flag_PSTRSKOLEM)) {
LIST l;
fputs("\nNew variables : ", stdout);
for (l=newvariables; !list_Empty(l); l = list_Cdr(l)) {
term_Print((TERM) list_Car(l));
fputs(" ", stdout);
}
}
#endif
/* Now do the replacing */
accumulatedvariables = list_Nil();
acc_length = 0;
strskolemsuccess = FALSE;
for (pairscan=pairlist; !list_Empty(pairscan); pairscan=list_Cdr(pairscan)) {
LIST allist;
/* Add bound variables for this subterm */
accumulatedvariables = list_Nconc(accumulatedvariables,
(LIST) list_PairSecond((LIST) list_Car(pairscan)));
accumulatedvariables = term_DeleteDuplicatesFromList(accumulatedvariables);
/* Remove new variables not (no longer) needed */
for (i=0; i < list_Length(accumulatedvariables) - acc_length; i++) {
term_Delete((TERM) list_Top(newvariables));
newvariables = list_Pop(newvariables);
}
acc_length = list_Length(accumulatedvariables);
#ifdef CHECK_STRSKOLEM
if (flag_GetFlagIntValue(flag_PSTRSKOLEM)) {
LIST l;
fputs("\n\nSubterm is ", stdout);
term_Print((TERM) list_PairFirst((LIST) list_Car(pairscan)));
fputs("\nFree variables : ", stdout);
for (l=accumulatedvariables; !list_Empty(l); l = list_Cdr(l)) {
term_Print((TERM) list_Car(l));
fputs(" ", stdout);
}
}
#endif
if (!list_Empty(newvariables))
strskolemsuccess = TRUE;
allist = list_Nconc(list_Copy(accumulatedvariables), list_Copy(newvariables));
cnf_SkolemFunctionFormulaMapped((TERM) list_PairFirst((LIST) list_Car(pairscan)), allist,
mapping);
#ifdef CHECK_STRSKOLEM
if (flag_GetFlagIntValue(flag_PSTRSKOLEM)) {
fputs("\nSubterm after skolemization : ", stdout);
term_Print(list_PairFirst((LIST) list_Car(pairscan)));
}
#endif
list_Delete(allist);
cnf_OptimizedSkolemFormula(Search, Topterm, Toplabel, TopAnd,
(TERM) list_PairFirst((LIST) list_Car(pairscan)),
UsedTerms, Symblist, Result1,
InputClauseToTermLabellist, Depth);
}
while (!list_Empty(newvariables)) {
term_Delete((TERM) list_Top(newvariables));
newvariables = list_Pop(newvariables);
}
list_Delete(accumulatedvariables); /* Only pairs and pairlist left */
list_DeletePairList(pairlist);
list_Delete(exlist);
list_DeletePairList(mapping);
if (flag_GetFlagIntValue(Flags, flag_PSTRSKOLEM) && strskolemsuccess) {
fputs("\nStrong skolemization applied", stdout);
}
}
static void cnf_OptimizedSkolemFormula(PROOFSEARCH Search, TERM topterm,
char* toplabel, BOOL TopAnd, TERM term,
LIST* UsedTerms, LIST* Symblist,
BOOL Result1,
HASH InputClauseToTermLabellist,
int Depth)
/**************************************************************
INPUT: Two terms in negation normal form. ??? EK
RETURNS: The skolemized term with the optimized skolemization
due to Ohlbach and Weidenbach of <term> and further improvements.
<rest> is used as additional, conjunctively added information.
EFFECT: The symbol precedence of the search object is changed
because new Skolem symbols are defined.
Checks the clock cnf_REDUCTION with respect to the value
of flag_CNFREDTIME to permit optimized Skolemization steps.
CAUTION: The term is destructively changed.
***************************************************************/
{
TERM termL2, provedterm;
LIST freevariables, scan, varlist;
SYMBOL top;
BOOL result2;
BOOL optimized;
FLAGSTORE Flags;
PRECEDENCE Precedence;
result2 = FALSE;
freevariables = list_Nil();
Flags = prfs_Store(Search);
Precedence = prfs_Precedence(Search);
top = term_TopSymbol(term);
if (fol_IsQuantifier(top)) {
if (symbol_Equal(top,fol_All())) {
/* For quantified variables store depth if strong skolemization is performed */
if (flag_GetFlagIntValue(Flags, flag_CNFSTRSKOLEM)) {
LIST variables;
variables = term_ArgumentList(term_FirstArgument(term));
for (scan=variables; !list_Empty(scan); scan=list_Cdr(scan)) {
#ifdef CHECK_STRSKOLEM
if (flag_GetFlagIntValue(Flags, flag_PSTRSKOLEM)) {
if (cnf_VARIABLEDEPTHARRAY[term_TopSymbol(list_Car(scan))] != -1) {
fputs("\nFor variable ", stderr);
term_Print((TERM) list_Car(scan));
printf(" depth is already set to %d, now setting it to %d",
cnf_VARIABLEDEPTHARRAY[term_TopSymbol(list_Car(scan))],Depth);
}
}
#endif
#ifdef CHECK_STRSKOLEM
if (flag_GetFlagIntValue(Flags, flag_PSTRSKOLEM)) {
fputs("\nVariable ", stdout);
term_Print((TERM) list_Car(scan));
printf(" has depth %d in term\n ", Depth);
term_Print(term);
}
#endif
cnf_VARIABLEDEPTHARRAY[term_TopSymbol(list_Car(scan))] = Depth;
}
Depth++;
}
cnf_PopAllQuantifier(term);
cnf_OptimizedSkolemFormula(Search,topterm, toplabel, TopAnd, term,
UsedTerms, Symblist, Result1,
InputClauseToTermLabellist, Depth);
return;
}
freevariables = fol_FreeVariables(term);
optimized = FALSE;
if (symbol_Equal(term_TopSymbol(term_SecondArgument(term)), fol_And())) {
if (flag_GetFlagIntValue(Flags, flag_CNFOPTSKOLEM)) {
scan = term_ArgumentList(term_SecondArgument(term));
varlist = term_ArgumentList(term_FirstArgument(term));
while (!list_Empty(scan) && !optimized) {
if (!Result1) {
if (TopAnd) {
if (flag_GetFlagIntValue(Flags, flag_POPTSKOLEM)) {
fputs("\nHaveProof not necessary", stdout);
}
result2 = TRUE;
}
else {
termL2 = cnf_QuantifyAndNegate((TERM) list_Car(scan),
varlist, freevariables);
result2 = cnf_HaveProofOptSkolem(Search, topterm, toplabel, termL2,
UsedTerms, Symblist,
InputClauseToTermLabellist);
if (flag_GetFlagIntValue(Flags,flag_CNFREDTIMELIMIT) != flag_CNFREDTIMELIMITUNLIMITED &&
flag_GetFlagIntValue(Flags,flag_CNFREDTIMELIMIT) <= ceil(clock_GetSeconds(clock_CNFREDUCTION)))
flag_SetFlagIntValue(Flags, flag_CNFOPTSKOLEM, flag_OFF);
#ifdef CHECK_OPTSKOLEM
if (flag_GetFlagIntValue(Flags, flag_POPTSKOLEM)) {
fputs("\nHaveProof result : ", stdout);
if (result2)
fputs("TRUE", stdout);
else
fputs("FALSE", stdout);
}
#endif
}
}
if (Result1 || result2) {
optimized = TRUE;
if (flag_GetFlagIntValue(Flags, flag_POPTSKOLEM)) {
fputs("\nIn term ", stdout);
term_Print(topterm);
fputs("\n subterm ", stdout);
term_Print((TERM) list_Car(scan));
puts(" is moved to toplevel.");
}
provedterm =
cnf_MoveProvedTermToTopLevel(topterm, term, list_Car(scan),
varlist, freevariables, Precedence);
if (flag_GetFlagIntValue(Flags, flag_POPTSKOLEM)) {
fputs("Result : ", stdout);
term_Print(topterm);
putchar('\n');
}
/* provedterm is argument of top AND term */
cnf_OptimizedSkolemFormula(Search, topterm, toplabel, TRUE,
provedterm,UsedTerms, Symblist, Result1,
InputClauseToTermLabellist, Depth);
}
else
scan = list_Cdr(scan);
}
}
if (!optimized) {
/* Optimized skolemization not enabled or not possible */
if (flag_GetFlagIntValue(Flags, flag_CNFSTRSKOLEM)) {
optimized = TRUE; /* Strong Skolemization is always possible after exists[..](and(..)) */
cnf_StrongSkolemization(Search, topterm, toplabel, TopAnd, term,
UsedTerms, Symblist, Result1,
InputClauseToTermLabellist, Depth);
}
}
}
else
TopAnd = FALSE;
if (!optimized) {
/* Optimized skolemization not enabled or not possible */
/* Strong skolemization not enabled or not possible */
cnf_Skolemize(term, freevariables, Precedence);
}
list_Delete(freevariables);
cnf_OptimizedSkolemFormula(Search, topterm, toplabel, TopAnd, term,UsedTerms,
Symblist,Result1,InputClauseToTermLabellist,Depth);
return;
}
else {
if (symbol_Equal(top,fol_And()) || symbol_Equal(top,fol_Or())) {
if (symbol_Equal(top,fol_Or()))
TopAnd = FALSE;
for (scan=term_ArgumentList(term);!list_Empty(scan);
scan=list_Cdr(scan))
cnf_OptimizedSkolemFormula(Search, topterm, toplabel, TopAnd,
(TERM) list_Car(scan),
UsedTerms, Symblist,
Result1, InputClauseToTermLabellist, Depth);
}
}
return;
}
static LIST cnf_SkolemFunctionFormula(TERM term, LIST allist, LIST exlist,
PRECEDENCE Precedence)
/**************************************************************
INPUT: A term <term>, a list <allist> of variables, a list <exlist>
of variable symbols and a precedence.
RETURNS: The list of new Skolem functions.
EFFECT: The term is destructively changed. All variable symbols
in <exlist> which appear in <term> are replaced by skolem functions
with respect to <allist> which contains the universally quantified
variables.
New Skolem functions are created and their precedence is set
in <Precedence>.
***************************************************************/
{
TERM term1;
LIST scan, scan1, Result;
SYMBOL skolem;
int bottom,n;
Result = list_Nil();
bottom = vec_ActMax();
n = list_Length(allist);
for (scan1=exlist; !list_Empty(scan1); scan1=list_Cdr(scan1)) {
vec_Push(term);
skolem = symbol_CreateSkolemFunction(n, Precedence);
Result = list_Cons((POINTER)skolem, Result);
while (bottom != vec_ActMax()) {
term1 = (TERM)vec_PopResult();
if (symbol_Equal(term_TopSymbol(term1),(SYMBOL)list_Car(scan1))) {
term_RplacTop(term1,skolem);
list_Delete(term_ArgumentList(term1));
term_RplacArgumentList(term1,term_CopyTermList(allist));
}
if (!list_Empty(term_ArgumentList(term1)))
for (scan=term_ArgumentList(term1);!list_Empty(scan);scan=list_Cdr(scan))
vec_Push(list_Car(scan));
}
}
vec_SetMax(bottom);
return Result;
}
static LIST cnf_OptimizedSkolemization(PROOFSEARCH Search, TERM Term,
char* Label, LIST* UsedTerms,
LIST* Symblist, BOOL result,
BOOL Conjecture,
HASH InputClauseToTermLabellist)
/**************************************************************
INPUT: A term, a shared index and a list of non-ConClauses. ??? EK
RETURNS: The list of clauses derived from Term.
EFFECT: The term is skolemized using optimized skolemization wrt ShIndex.
**************************************************************/
{
LIST Clauses;
TERM FirstArg;
int i;
FLAGSTORE Flags;
PRECEDENCE Precedence;
#ifdef CHECK
if (Term == NULL) {
misc_StartErrorReport();
misc_ErrorReport("\n In cnf_OptimizedSkolemization: Input term is NULL.\n");
misc_FinishErrorReport();
}
#endif
Flags = prfs_Store(Search);
Precedence = prfs_Precedence(Search);
FirstArg = Term;
if (flag_GetFlagIntValue(Flags, flag_CNFSTRSKOLEM)) {
/* Initializing array */
for (i = 1; i <= symbol__MAXSTANDARDVAR; i++)
cnf_VARIABLEDEPTHARRAY[i] = -1;
}
if (flag_GetFlagIntValue(Flags, flag_POPTSKOLEM) ||
flag_GetFlagIntValue(Flags, flag_PSTRSKOLEM)) {
fputs("\nTerm before skolemization : \n ", stdout);
fol_PrettyPrintDFG(Term);
}
if (!fol_IsLiteral(Term)) {
if (flag_GetFlagIntValue(Flags, flag_CNFOPTSKOLEM) ||
flag_GetFlagIntValue(Flags, flag_CNFSTRSKOLEM)) {
if (flag_GetFlagIntValue(Flags, flag_CNFOPTSKOLEM))
Term = term_Create(fol_And(), list_List(Term)); /* CW hack: definitions are added on top level*/
cnf_OptimizedSkolemFormula(Search, Term, Label, TRUE, FirstArg, UsedTerms,
Symblist, result, InputClauseToTermLabellist, 0);
}
else {
LIST Symbols;
Symbols = list_Nil();
Term = cnf_SkolemFormula(Term, Flags, Precedence, &Symbols);
list_Delete(Symbols);
}
}
if (flag_GetFlagIntValue(Flags, flag_POPTSKOLEM) ||
flag_GetFlagIntValue(Flags, flag_PSTRSKOLEM)) {
fputs("\nTerm after skolemization : ", stdout);
term_Print(Term);
}
Term = cnf_DistributiveFormula(Term);
Clauses = cnf_MakeClauseList(Term, FALSE, Conjecture, Flags, Precedence);
term_Delete(Term);
return Clauses;
}
LIST cnf_GetSkolemFunctions(TERM Term, LIST ArgList, LIST* SkolToExVar)
/**************************************************************
INPUT: A term, the argumentlist of a skolem function, a mapping from
a skolem function to a variable
RETURNS: The longest argumentlist of all skolem functions found so far.
EFFECT: Computes information for renaming variables and replacing
skolem functions during de-skolemization.
**************************************************************/
{
LIST Scan;
SYMBOL Top;
Top = term_TopSymbol(Term);
if (fol_IsQuantifier(Top))
return cnf_GetSkolemFunctions(term_SecondArgument(Term), ArgList,
SkolToExVar);
if (symbol_IsFunction(Top) && symbol_HasProperty(Top, SKOLEM)) {
BOOL found;
SYMBOL Var = 0;
int Arity;
found = FALSE;
/* Keep longest argument list of all skolem functions in the clause for renaming */
/* Delete all other argument lists */
Arity = list_Length(term_ArgumentList(Term));
if (Arity > list_Length(ArgList)) {
term_DeleteTermList(ArgList);
ArgList = term_ArgumentList(Term);
}
else
term_DeleteTermList(term_ArgumentList(Term));
term_RplacArgumentList(Term, NULL);
/* Replace skolem function by variable */
if (list_Length(*SkolToExVar) > Arity) {
NAT i;
LIST SkolScan = *SkolToExVar;
for (i = 0; i < Arity; i++)
SkolScan = list_Cdr(SkolScan);
for (SkolScan = (LIST) list_Car(SkolScan);
(SkolScan != list_Nil()) && !found; SkolScan = list_Cdr(SkolScan)) {
SYMBOL Skol;
Skol = (SYMBOL) list_PairFirst((LIST) list_Car(SkolScan));
if (Skol == term_TopSymbol(Term)) {
Var = (SYMBOL) list_PairSecond((LIST) list_Car(SkolScan));
found = TRUE;
}
}
}
if (!found) {
LIST Pair;
NAT i;
LIST SkolScan;
SkolScan = *SkolToExVar;
for (i = 0; i < Arity; i++) {
if (list_Cdr(SkolScan) == list_Nil())
list_Rplacd(SkolScan, list_List(NULL));
SkolScan = list_Cdr(SkolScan);
}
Var = symbol_CreateStandardVariable();
Pair = list_PairCreate((POINTER) term_TopSymbol(Term),
(POINTER) Var);
if (list_Car(SkolScan) == list_Nil())
list_Rplaca(SkolScan, list_List(Pair));
else
list_Rplaca(SkolScan, list_Nconc((LIST) list_Car(SkolScan),
list_List(Pair)));
}
term_RplacTop(Term, Var);
}
else {
for (Scan = term_ArgumentList(Term); Scan != list_Nil();
Scan = list_Cdr(Scan))
ArgList = cnf_GetSkolemFunctions((TERM) list_Car(Scan), ArgList,
SkolToExVar);
}
return ArgList;
}
void cnf_ReplaceVariable(TERM Term, SYMBOL Old, SYMBOL New)
/**************************************************************
INPUT: A term, two symbols that are variables
EFFECT: In term every occurrence of Old is replaced by New
**************************************************************/
{
LIST Scan;
#ifdef CHECK
if (!symbol_IsVariable(Old)) {
misc_StartErrorReport();
misc_ErrorReport("\n In cnf_ReplaceVariable: Illegal input symbol.\n");
misc_FinishErrorReport();
}
#endif
if (symbol_Equal(term_TopSymbol(Term), Old))
term_RplacTop(Term, New);
else
for (Scan = term_ArgumentList(Term); !list_Empty(Scan);
Scan = list_Cdr(Scan))
cnf_ReplaceVariable(list_Car(Scan), Old, New);
}
LIST cnf_RemoveSkolemFunctions(CLAUSE Clause, LIST* SkolToExVar, LIST Vars)
/**************************************************************
INPUT: A clause, a list which is a mapping from skolem functions to
variables and a list of variables for forall-quantification.
RETURNS: A list of terms derived from the clause using deskolemization
EFFECT: Arguments of skolem functions are renamed consistently.
Skolemfunctions are replaced by variables.
**************************************************************/
{
LIST Scan;
LIST TermScan, TermList, ArgList;
TERM Term;
int i;
TermList = list_Nil();
ArgList = list_Nil();
for (i = 0; i < clause_Length(Clause); i++) {
Term = term_Copy(clause_GetLiteralTerm(Clause, i));
ArgList = cnf_GetSkolemFunctions(Term, ArgList, SkolToExVar);
TermList = list_Cons(Term, TermList);
}
if (list_Empty(ArgList))
return TermList;
/* Rename variables */
for (Scan = ArgList; Scan != list_Nil(); Scan = list_Cdr(Scan)) {
for (TermScan = TermList; TermScan != list_Nil();
TermScan = list_Cdr(TermScan)) {
Term = (TERM) list_Car(TermScan);
cnf_ReplaceVariable(Term,
term_TopSymbol((TERM) list_Car(Scan)),
(SYMBOL) list_Car(Vars));
}
if (list_Cdr(Vars) == list_Nil()) {
SYMBOL New = symbol_CreateStandardVariable();
Vars = list_Nconc(Vars, list_List((POINTER) New));
}
Vars = list_Cdr(Vars);
}
term_DeleteTermList(ArgList);
return TermList;
}
TERM cnf_DeSkolemFormula(LIST Clauses)
/**************************************************************
INPUT: A list of clauses.
RETURNS: A formula built from the clauses.
EFFECT: All skolem functions are removed from the clauses.
**************************************************************/
{
LIST Scan, SkolToExVar, Vars, FreeVars, FreeVarsCopy, VarScan, TermList;
TERM VarListTerm, TopTerm, Term;
BOOL First;
SkolToExVar = list_List(NULL);
Vars = list_List((POINTER) symbol_CreateStandardVariable());
TopTerm = term_Create(fol_And(), NULL);
for (Scan = Clauses; Scan != list_Nil(); Scan = list_Cdr(Scan)) {
TermList = cnf_RemoveSkolemFunctions((CLAUSE) list_Car(Scan),
&SkolToExVar, Vars);
Term = term_Create(fol_Or(), TermList);
FreeVars = fol_FreeVariables(Term);
if (!list_Empty(FreeVars)) {
FreeVarsCopy = term_CopyTermList(FreeVars);
list_Delete(FreeVars);
Term = fol_CreateQuantifier(fol_All(), FreeVarsCopy, list_List(Term));
}
term_RplacArgumentList(TopTerm, list_Cons(Term, term_ArgumentList(TopTerm)));
}
VarScan = Vars;
First = TRUE;
for (Scan = SkolToExVar; Scan != list_Nil(); Scan = list_Cdr(Scan)) {
if (list_Empty(list_Car(Scan))) {
if (term_TopSymbol(TopTerm) == fol_All())
term_RplacArgumentList(TopTerm, list_Cons(term_Create((SYMBOL) list_Car(VarScan), NULL),
term_ArgumentList(TopTerm)));
if (!First)
TopTerm = fol_CreateQuantifier(fol_All(),
list_List(term_Create((SYMBOL) list_Car(VarScan), NULL)),
list_List(TopTerm));
}
else {
LIST ExVarScan;
LIST ExVars = list_Nil();
for (ExVarScan = list_Car(Scan); ExVarScan != list_Nil();
ExVarScan = list_Cdr(ExVarScan)) {
if (ExVars == list_Nil())
ExVars = list_List(term_Create((SYMBOL) list_PairSecond((LIST) list_Car(ExVarScan)), NULL));
else
ExVars = list_Cons(term_Create((SYMBOL) list_PairSecond((LIST) list_Car(ExVarScan)), NULL), ExVars);
list_PairFree((LIST) list_Car(ExVarScan));
}
list_Delete((LIST) list_Car(Scan));
list_Rplaca(Scan, NULL);
if (term_TopSymbol(TopTerm) == fol_Exist()) {
VarListTerm = (TERM) list_Car(term_ArgumentList(TopTerm));
term_RplacArgumentList(VarListTerm,
list_Nconc(term_ArgumentList(VarListTerm),
ExVars));
}
else
TopTerm = fol_CreateQuantifier(fol_Exist(), ExVars, list_List(TopTerm));
ExVars = list_Nil();
if (!First)
TopTerm = fol_CreateQuantifier(fol_All(),
list_List(term_Create((SYMBOL) list_Car(VarScan), NULL)),
list_List(TopTerm));
}
if (!First)
VarScan = list_Cdr(VarScan);
else
First = FALSE;
}
list_Delete(SkolToExVar);
list_Delete(Vars);
return TopTerm;
}
#ifdef OPTCHECK
/* Currently unused */
/*static */
LIST cnf_CheckOptimizedSkolemization(LIST* AxClauses, LIST* ConClauses,
TERM AxTerm, TERM ConTerm,
LIST NonConClauses, LIST* SkolemPredicates,
SHARED_INDEX ShIndex, BOOL result)
/**********************************************************
EFFECT: Used to check the correctness of optimized skolemization
***********************************************************/
{
TERM DeSkolemizedAxOpt, DeSkolemizedConOpt, DeSkolemizedAx, DeSkolemizedCon;
TERM TopOpt, Top, ToProve;
LIST SkolemFunctions2;
if (*AxClauses != list_Nil()) {
DeSkolemizedAxOpt = cnf_DeSkolemFormula(*AxClauses);
if (*ConClauses != list_Nil()) {
DeSkolemizedConOpt = cnf_DeSkolemFormula(*ConClauses);
TopOpt = term_Create(fol_And(),
list_Cons(DeSkolemizedAxOpt,
list_List(DeSkolemizedConOpt)));
}
else
TopOpt = DeSkolemizedAxOpt;
}
else {
DeSkolemizedConOpt = cnf_DeSkolemFormula(*ConClauses);
TopOpt = DeSkolemizedConOpt;
}
clause_DeleteClauseList(*AxClauses);
clause_DeleteClauseList(*ConClauses);
*AxClauses = list_Nil();
*ConClauses = list_Nil();
flag_SetFlagIntValue(flag_CNFOPTSKOLEM, flag_CNFOPTSKOLEMOFF);
if (AxTerm) {
*AxClauses = cnf_OptimizedSkolemization(term_Copy(AxTerm), ShIndex, NonConClauses, result,FALSE, ClauseToTermLabellist);
}
if (ConTerm) {
*ConClauses = cnf_OptimizedSkolemization(term_Copy(ConTerm), ShIndex, NonConClauses, result,TRUE, ClauseToTermLabellist);
}
if (*AxClauses != list_Nil()) {
DeSkolemizedAx = cnf_DeSkolemFormula(*AxClauses);
if (*ConClauses != list_Nil()) {
DeSkolemizedCon = cnf_DeSkolemFormula(*ConClauses);
Top = term_Create(fol_And(),
list_Cons(DeSkolemizedAx,
list_List(DeSkolemizedCon)));
}
else
Top = DeSkolemizedAx;
}
else {
DeSkolemizedCon = cnf_DeSkolemFormula(*ConClauses);
Top = DeSkolemizedCon;
}
clause_DeleteClauseList(*AxClauses);
clause_DeleteClausList(*ConClauses);
*AxClauses = list_Nil();
*ConClauses = list_Nil();
ToProve = term_Create(fol_Equiv(), list_Cons(TopOpt, list_List(Top)));
ToProve = term_Create(fol_Not(), list_List(ToProve));
fol_NormalizeVars(ToProve);
ToProve = cnf_ObviousSimplifications(ToProve);
term_AddFatherLinks(ToProve);
ToProve = ren_Rename(ToProve,SkolemPredicates,FALSE);
ToProve = cnf_RemoveEquivImplFromFormula(ToProve);
ToProve = cnf_NegationNormalFormula(ToProve);
ToProve = cnf_AntiPrenex(ToProve);
SkolemFunctions2 = list_Nil();
ToProve = cnf_SkolemFormula(ToProve, &SkolemFunctions2);
ToProve = cnf_DistributiveFormula(ToProve);
*ConClauses = cnf_MakeClauseList(ToProve);
if (ToProve)
term_Delete(ToProve);
*AxClauses = list_Nil();
return SkolemFunctions2;
}
#endif
PROOFSEARCH cnf_Flotter(LIST AxiomList, LIST ConjectureList, LIST* AxClauses,
LIST* AllLabels, HASH TermLabelToClauselist,
HASH ClauseToTermLabellist, FLAGSTORE InputFlags,
PRECEDENCE InputPrecedence, LIST* Symblist)
/**************************************************************
INPUT: A list of axiom formulae,
a list of conjecture formulae,
a pointer to a list in which clauses derived from axiom formulae
are stored,
a pointer to a list in which clauses derived from
conjecture formulae are stored, ???
a pointer to a list of all termlabels,
a hasharray in which for every term label the list of clauses
derived from the term is stored (if DocProof is set),
a hasharray in which for every clause the list of labels
of the terms used for deriving the clause is stored (if DocProof
is set),
a flag store,
a precedence
a pointer to a list of symbols which have to be deleted later if
the ProofSearch object is kept.
RETURNS: If KeepProofSearch ??? is TRUE, then the ProofSearch object is not
freed but returned.
Else, NULL is returned.
EFFECT: Initializes and checks the clock_CNFREDUCTION clock with respect
to the flag_CNFREDTIME value for usable reduction time including
optimized Skolemization, condensing and subsumption testing.
The precedence of new skolem symbols is set in <InputPrecedence>.
***************************************************************/
{
LIST Scan, Scan2, FormulaClauses,SkolemFunctions;
LIST SkolemPredicates, EmptyClauses, AllFormulae;
LIST UsedTerms;
TERM AxTerm,Formula;
BOOL Result;
PROOFSEARCH Search;
PRECEDENCE Precedence;
FLAGSTORE Flags;
NAT Count;
HASH InputClauseToTermLabellist;
clock_InitCounter(clock_CNFREDUCTION);
Search = prfs_Create();
/* Initialize the flagstore for the CNF transformation */
Flags = prfs_Store(Search);
flag_CleanStore(Flags);
flag_InitFlotterFlags(InputFlags, Flags);
/* Initialize the precedence */
Precedence = prfs_Precedence(Search);
symbol_TransferPrecedence(InputPrecedence, Precedence);
if (flag_GetFlagIntValue(Flags, flag_DOCPROOF))
prfs_AddDocProofSharingIndex(Search);
AxTerm = (TERM)NULL;
SkolemPredicates = list_Nil();
Result = FALSE;
if (flag_GetFlagIntValue(Flags, flag_DOCPROOF) || flag_GetFlagIntValue(Flags, flag_FLOTTER))
InputClauseToTermLabellist = hsh_Create();
else
InputClauseToTermLabellist = NULL;
symbol_ReinitGenericNameCounters();
for (Scan = AxiomList; !list_Empty(Scan); Scan = list_Cdr(Scan)) {
LIST Pair;
Pair = list_Car(Scan);
AxTerm = (TERM) list_PairSecond(Pair);
fol_RemoveImplied(AxTerm);
AxTerm = fol_RemoveXorNorNand(AxTerm);
term_AddFatherLinks(AxTerm);
fol_NormalizeVars(AxTerm);
if (flag_GetFlagIntValue(Flags, flag_CNFFEQREDUCTIONS))
cnf_PropagateSubstEquations(AxTerm);
AxTerm = cnf_ObviousSimplifications(AxTerm);
if (flag_GetFlagIntValue(Flags, flag_CNFRENAMING)) {
term_AddFatherLinks(AxTerm);
AxTerm = ren_Rename(AxTerm, Precedence, &SkolemPredicates,
flag_GetFlagIntValue(Flags, flag_CNFPRENAMING),
flag_GetFlagIntValue(Flags, flag_CNFRENMATCH),
flag_GetFlagIntValue(Flags, flag_CNFRENAMING));
}
AxTerm = cnf_RemoveEquivImplFromFormula(AxTerm);
AxTerm = cnf_NegationNormalFormula(AxTerm);
AxTerm = cnf_AntiPrenex(AxTerm);
list_Rplacd(Pair, (LIST) AxTerm);
}
AllFormulae = AxiomList;
/* At this point the list contains max. 1 element, which is a pair
of the label NULL and the negated
conjunction of all conjecture formulae. */
Count = 0;
for (Scan = ConjectureList; !list_Empty(Scan); Scan = list_Cdr(Scan)) {
TERM ConTerm;
char* Label;
char buf[100];
/* Add label */
if (list_PairFirst(list_Car(Scan)) == NULL) {
sprintf(buf, "conjecture%d", Count);
Label = string_StringCopy(buf);
list_Rplaca((LIST) list_Car(Scan), Label);
if ((flag_GetFlagIntValue(Flags, flag_DOCPROOF) || flag_GetFlagIntValue(Flags, flag_FLOTTER)) &&
flag_GetFlagIntValue(Flags, flag_PLABELS)) {
printf("\nAdded label %s for conjecture", Label);
fol_PrettyPrintDFG((TERM) list_PairSecond(list_Car(Scan)));
}
}
ConTerm = (TERM) list_PairSecond((LIST) list_Car(Scan));
fol_RemoveImplied(ConTerm);
ConTerm = fol_RemoveXorNorNand(ConTerm);
term_AddFatherLinks(ConTerm);
fol_NormalizeVars(ConTerm);
if (flag_GetFlagIntValue(Flags, flag_CNFFEQREDUCTIONS))
cnf_PropagateSubstEquations(ConTerm);
ConTerm = cnf_ObviousSimplifications(ConTerm);
if (flag_GetFlagIntValue(Flags, flag_CNFRENAMING)) {
term_AddFatherLinks(ConTerm);
ConTerm = ren_Rename(ConTerm, Precedence, &SkolemPredicates,
flag_GetFlagIntValue(Flags, flag_CNFPRENAMING),
flag_GetFlagIntValue(Flags, flag_CNFRENMATCH),
flag_GetFlagIntValue(Flags, flag_CNFRENAMING));
}
/* fputs("\nRen:\t",stdout);term_Print(ConTerm);putchar('\n'); */
ConTerm = cnf_RemoveEquivImplFromFormula(ConTerm);
ConTerm = cnf_NegationNormalFormula(ConTerm);
/* fputs("\nAn:\t",stdout);term_Print(ConTerm);putchar('\n'); */
ConTerm = cnf_AntiPrenex(ConTerm);
/* fputs("\nPr:\t",stdout);term_Print(ConTerm);putchar('\n'); */
/* Insert changed term into pair */
list_Rplacd((LIST) list_Car(Scan), (LIST) ConTerm);
Count++;
}
AllFormulae = list_Append(ConjectureList, AllFormulae);
for (Scan = ConjectureList;!list_Empty(Scan); Scan = list_Cdr(Scan))
list_Rplaca(Scan,list_PairSecond(list_Car(Scan)));
FormulaClauses = list_Nil();
SkolemFunctions = list_Nil();
Count = 0;
clock_StartCounter(clock_CNFREDUCTION);
if (flag_GetFlagIntValue(Flags, flag_CNFOPTSKOLEM) == flag_ON) {
for (Scan = AllFormulae; !list_Empty(Scan); Scan = list_Cdr(Scan), Count++) {
LIST FormulaClausesTemp;
Formula = term_Copy((TERM) list_PairSecond(list_Car(Scan)));
#ifdef CHECK_CNF
fputs("\nInputFormula : ",stdout); term_Print(Formula);
printf("\nLabel : %s\n", (char*) list_PairFirst(list_Car(Scan)));
#endif
Formula = cnf_SkolemFormula(Formula,Flags,Precedence,&SkolemFunctions);
Formula = cnf_DistributiveFormula(Formula);
FormulaClausesTemp = cnf_MakeClauseList(Formula,FALSE,FALSE,Flags,Precedence);
if (flag_GetFlagIntValue(Flags, flag_DOCPROOF) || flag_GetFlagIntValue(Flags, flag_FLOTTER)) {
for (Scan2 = FormulaClausesTemp; !list_Empty(Scan2); Scan2 = list_Cdr(Scan2)) {
hsh_Put(InputClauseToTermLabellist, list_Car(Scan2), list_PairFirst(list_Car(Scan)));
}
}
FormulaClauses = list_Nconc(FormulaClauses, FormulaClausesTemp);
term_Delete(Formula);
}
/* red_SatUnit works only on conclauses */
for (Scan = FormulaClauses; !list_Empty(Scan); Scan = list_Cdr(Scan))
clause_SetFlag((CLAUSE) list_Car(Scan), CONCLAUSE);
/* For FormulaClauses a full saturation */
/* List is deleted in red_SatUnit ! */
EmptyClauses = red_SatUnit(Search, FormulaClauses);
if (!list_Empty(EmptyClauses)) {
/* Set now to FALSE because formula clause relationship for subsequent */
/* optimized Skolemization steps is then not properly set. However, this */
/* may cause performance problems */
Result = FALSE;
/*puts("\nPROOF in FormulaClauses");*/
clause_DeleteClauseList(EmptyClauses);
}
/* Move all usables to workedoff */
FormulaClauses = list_Copy(prfs_UsableClauses(Search));
for (Scan = FormulaClauses; !list_Empty(Scan); Scan = list_Cdr(Scan))
prfs_MoveUsableWorkedOff(Search, (CLAUSE) list_Car(Scan));
list_Delete(FormulaClauses);
FormulaClauses = list_Nil();
}
#ifdef CHECK
/*cnf_CheckClauseListsConsistency(ShIndex); */
#endif
*Symblist = list_Nil();
for (Scan = AllFormulae; !list_Empty(Scan); Scan = list_Cdr(Scan)) {
LIST Ax, Pair;
UsedTerms = list_Nil();
Pair = list_Car(Scan);
#ifdef CHECK_CNF
fputs("\nFormula : ", stdout);
term_Print((TERM) list_PairSecond(Pair));
printf("\nLabel : %s", (char*) list_PairFirst(Pair));
#endif
Ax = cnf_OptimizedSkolemization(Search, term_Copy((TERM)list_PairSecond(Pair)),
(char*) list_PairFirst(Pair), &UsedTerms,
Symblist,Result,FALSE,InputClauseToTermLabellist);
clock_StopAddPassedTime(clock_CNFREDUCTION);
/* Set CONCLAUSE flag for clauses derived from conjectures */
if (list_PointerMember(ConjectureList,list_PairSecond(Pair))) {
LIST l;
for (l = Ax; !list_Empty(l); l = list_Cdr(l))
clause_SetFlag((CLAUSE) list_Car(l), CONCLAUSE);
}
if (flag_GetFlagIntValue(Flags, flag_DOCPROOF) || flag_GetFlagIntValue(Flags, flag_FLOTTER)) {
hsh_PutListWithCompareFunc(TermLabelToClauselist, list_PairFirst(Pair),
list_Copy(Ax),
(BOOL (*)(POINTER,POINTER))cnf_LabelEqual,
(unsigned long (*)(POINTER))hsh_StringHashKey);
UsedTerms = list_Cons(list_PairFirst(Pair), UsedTerms);
UsedTerms = cnf_DeleteDuplicateLabelsFromList(UsedTerms);
for (Scan2 = Ax; !list_Empty(Scan2); Scan2 = list_Cdr(Scan2)) {
hsh_PutList(ClauseToTermLabellist, list_Car(Scan2), list_Copy(UsedTerms));
hsh_PutList(InputClauseToTermLabellist, list_Car(Scan2), list_Copy(UsedTerms));
}
}
*AxClauses = list_Nconc(Ax, *AxClauses);
list_Delete(UsedTerms);
}
/* Transfer precedence of new skolem symbols into <InputPrecedence> */
symbol_TransferPrecedence(Precedence, InputPrecedence);
list_Delete(ConjectureList);
if (flag_GetFlagIntValue(Flags, flag_DOCPROOF) || flag_GetFlagIntValue(Flags, flag_FLOTTER))
hsh_Delete(InputClauseToTermLabellist);
if (!flag_GetFlagIntValue(Flags, flag_INTERACTIVE)) {
list_Delete(*Symblist);
}
*AllLabels = list_Nil();
for (Scan = AllFormulae; !list_Empty(Scan); Scan = list_Cdr(Scan)) {
LIST Pair;
Pair = list_Car(Scan);
term_Delete((TERM) list_PairSecond(Pair));
*AllLabels = list_Cons(list_PairFirst(Pair), *AllLabels);
list_PairFree(Pair);
}
list_Delete(AllFormulae);
list_Delete(SkolemFunctions);
list_Delete(SkolemPredicates);
if (!flag_GetFlagIntValue(Flags, flag_INTERACTIVE)) {
symbol_ResetSkolemIndex();
prfs_Delete(Search);
return NULL;
}
else {
/* Delete DocProof clauses */
prfs_DeleteDocProof(Search);
return Search;
}
}
LIST cnf_QueryFlotter(PROOFSEARCH Search, TERM Term, LIST* Symblist)
/**************************************************************
INPUT: A term to derive clauses from, using optimized skolemization,
and a ProofSearch object.
RETURNS: A list of derived clauses.
EFFECT: ??? EK
The precedence of new skolem symbols is set in <Search>.
***************************************************************/
{
LIST SkolemPredicates, SkolemFunctions, IndexedClauses, Scan;
LIST ResultClauses, Dummy, EmptyClauses;
TERM TermCopy;
int Formulae2Clause;
BOOL Result;
FLAGSTORE Flags, SubProofFlags;
PRECEDENCE Precedence;
Flags = prfs_Store(Search);
Precedence = prfs_Precedence(Search);
/* Initialize the flagstore of the cnf_SEARCHCOPY object with default values */
/* and copy the value of flag_DOCPROOF from the global Proofserach object. */
SubProofFlags = prfs_Store(cnf_SEARCHCOPY);
flag_InitStoreByDefaults(SubProofFlags);
flag_TransferFlag(Flags, SubProofFlags, flag_DOCPROOF);
/* Transfer the precedence into the local search object */
symbol_TransferPrecedence(Precedence, prfs_Precedence(cnf_SEARCHCOPY));
SkolemPredicates = SkolemFunctions = list_Nil();
Result = FALSE;
prfs_CopyIndices(Search, cnf_SEARCHCOPY);
Term = term_Create(fol_Not(), list_List(Term));
fol_NormalizeVars(Term);
Term = cnf_ObviousSimplifications(Term);
if (flag_GetFlagIntValue(Flags, flag_CNFRENAMING)) {
term_AddFatherLinks(Term);
Term = ren_Rename(Term, Precedence, &SkolemPredicates,
flag_GetFlagIntValue(Flags, flag_CNFPRENAMING),
flag_GetFlagIntValue(Flags, flag_CNFRENMATCH),
flag_GetFlagIntValue(Flags, flag_CNFRENAMING));
}
Term = cnf_RemoveEquivImplFromFormula(Term);
Term = cnf_NegationNormalFormula(Term);
Term = cnf_AntiPrenex(Term);
TermCopy = term_Copy(Term);
TermCopy = cnf_SkolemFormula(TermCopy, Flags, Precedence, &SkolemFunctions);
TermCopy = cnf_DistributiveFormula(TermCopy);
IndexedClauses = cnf_MakeClauseList(TermCopy,FALSE,FALSE,Flags,Precedence);
term_Delete(TermCopy);
/* red_SatUnit works only on conclauses */
for (Scan = IndexedClauses; !list_Empty(Scan); Scan = list_Cdr(Scan))
clause_SetFlag((CLAUSE) list_Car(Scan), CONCLAUSE);
EmptyClauses = red_SatUnit(cnf_SEARCHCOPY, IndexedClauses);
if (!list_Empty(EmptyClauses)) {
Result = TRUE;
clause_DeleteClauseList(EmptyClauses);
}
while (!list_Empty(prfs_UsableClauses(cnf_SEARCHCOPY))) {
prfs_MoveUsableWorkedOff(cnf_SEARCHCOPY, (CLAUSE) list_Car(prfs_UsableClauses(cnf_SEARCHCOPY)));
}
/* Works only if DOCPROOF is false. Otherwise we need labels */
Dummy = list_Nil();
if (flag_GetFlagIntValue(SubProofFlags, flag_DOCPROOF))
Formulae2Clause = TRUE;
else
Formulae2Clause = FALSE;
flag_SetFlagIntValue(SubProofFlags, flag_DOCPROOF, flag_DOCPROOFOFF);
ResultClauses = cnf_OptimizedSkolemization(cnf_SEARCHCOPY, term_Copy(Term),
NULL, &Dummy, Symblist, Result,
FALSE, NULL);
if (Formulae2Clause)
flag_SetFlagIntValue(SubProofFlags, flag_DOCPROOF, flag_DOCPROOFON);
term_Delete(Term);
list_Delete(SkolemPredicates);
list_Delete(SkolemFunctions);
prfs_Clean(cnf_SEARCHCOPY);
/* All result clauses of queries are conjecture clauses */
for (Scan=ResultClauses; !list_Empty(Scan); Scan=list_Cdr(Scan))
clause_SetFlag((CLAUSE) list_Car(Scan), CONCLAUSE);
return ResultClauses;
}
#ifdef CHECK
/* Currently unused */
/*static*/ void cnf_CheckClauseListsConsistency(SHARED_INDEX ShIndex)
/**************************************************************
INPUT: A shared index and a list of non-ConClauses.
EFFECT: When this function is called all clauses in the index must be
non-ConClauses, which must also be members of the list.
**************************************************************/
{
LIST AllClauses, scan;
AllClauses = clause_AllIndexedClauses(ShIndex);
for (scan = AllClauses; scan != list_Nil(); scan = list_Cdr(scan)) {
if (clause_GetFlag((CLAUSE) list_Car(scan), CONCLAUSE)) {
misc_StartErrorReport();
misc_ErrorReport("\n In cnf_CheckClauseListsConsistency: Clause is a CONCLAUSE.\n");
misc_FinishErrorReport();
}
if (clause_GetFlag((CLAUSE) list_Car(scan), BLOCKED)) {
misc_StartErrorReport();
misc_ErrorReport("\n In cnf_CheckClauseListsConsistency: Clause is BLOCKED.\n");
misc_FinishErrorReport();
}
}
list_Delete(AllClauses);
}
#endif
static LIST cnf_SatUnit(PROOFSEARCH Search, LIST ClauseList)
/*********************************************************
INPUT: A list of unshared clauses, proof search object
RETURNS: A possibly empty list of empty clauses.
**********************************************************/
{
CLAUSE Given;
LIST Scan, Derivables, EmptyClauses, BackReduced;
NAT n, Derived;
FLAGSTORE Flags;
PRECEDENCE Precedence;
Flags = prfs_Store(Search);
Precedence = prfs_Precedence(Search);
Derived = flag_GetFlagIntValue(Flags, flag_CNFPROOFSTEPS);
EmptyClauses = list_Nil();
ClauseList = clause_ListSortWeighed(ClauseList);
while (!list_Empty(ClauseList) && list_Empty(EmptyClauses)) {
Given = (CLAUSE)list_NCar(&ClauseList);
Given = red_CompleteReductionOnDerivedClause(Search, Given, red_ALL);
if (Given) {
if (clause_IsEmptyClause(Given))
EmptyClauses = list_List(Given);
else {
/*fputs("\n\nGiven: ",stdout);clause_Print(Given);*/
BackReduced = red_BackReduction(Search, Given, red_USABLE);
if (Derived != 0) {
Derivables =
inf_BoundedDepthUnitResolution(Given, prfs_UsableSharingIndex(Search),
FALSE, Flags, Precedence);
Derivables =
list_Nconc(Derivables,
inf_BoundedDepthUnitResolution(Given,prfs_WorkedOffSharingIndex(Search),
FALSE, Flags, Precedence));
n = list_Length(Derivables);
if (n > Derived)
Derived = 0;
else
Derived -= n;
}
else
Derivables = list_Nil();
Derivables = list_Nconc(BackReduced,Derivables);
Derivables = split_ExtractEmptyClauses(Derivables, &EmptyClauses);
prfs_InsertUsableClause(Search, Given);
for (Scan = Derivables; !list_Empty(Scan); Scan = list_Cdr(Scan))
ClauseList = clause_InsertWeighed(list_Car(Scan), ClauseList, Flags,
Precedence);
list_Delete(Derivables);
}
}
}
clause_DeleteClauseList(ClauseList);
return EmptyClauses;
}
TERM cnf_DefTargetConvert(TERM Target, TERM ToTopLevel, TERM ToProveDef,
LIST DefPredArgs, LIST TargetPredArgs,
LIST TargetPredVars, LIST VarsForTopLevel,
FLAGSTORE Flags, PRECEDENCE Precedence,
BOOL* LocallyTrue)
/**********************************************************
INPUT: A term Target which contains a predicate that might be replaced
by its definition.
A term ToTopLevel which is the highest level subterm in Target
that contains the predicate and can be moved to top level or().
A term ToProveDef which must hold if the definition is to be applied.
(IS DESTROYED AND FREED)
A list DefPredArgs of the arguments of the predicate in the
Definition.
A list TargetPredArgs of the arguments of the predicate in Target.
A list TargetPredVars of the variables occurring in the arguments
of the predicate in Target.
A list VarsForTopLevel containing the variables that should be
all-quantified at top level to make the proof easier.
A flag store.
A pointer to a boolean LocallyTrue which is set to TRUE iff
the definition can be applied.
RETURNS: The Target term which is brought into standard form.
**********************************************************/
{
TERM orterm, targettoprove;
SYMBOL maxvar; /* For normalizing terms */
LIST l1, l2;
LIST freevars, vars; /* Free variables in targettoprove */
if (flag_GetFlagIntValue(Flags, flag_PAPPLYDEFS)) {
puts("\nTarget :");
fol_PrettyPrint(Target);
}
#ifdef CHECK
fol_CheckFatherLinks(Target);
#endif
/* No proof found yet */
*LocallyTrue = FALSE;
/* Remove implications from path */
Target = cnf_RemoveImplFromFormulaPath(Target, ToTopLevel);
/* Move negations as far down as possible */
Target = cnf_NegationNormalFormulaPath(Target, ToTopLevel);
/* Move quantifiers as far down as possible */
Target = cnf_AntiPrenexPath(Target, ToTopLevel);
/* Move all-quantified variables from the predicates' arguments to top level */
Target = cnf_MovePredicateVariablesUp(Target, ToTopLevel, VarsForTopLevel);
/* Flatten top or() */
Target = cnf_FlattenPath(Target, ToTopLevel);
/* Now make sure that all variables in the top forall quantifier are in TargetPredVars */
/* Not necessary, according to CW */
if (symbol_Equal(term_TopSymbol(Target), fol_All())) {
targettoprove = term_Copy(term_SecondArgument(Target));
orterm = term_SecondArgument(Target);
}
else {
targettoprove = term_Copy(Target);
orterm = Target;
}
/* Find argument of targettoprove that contains the predicate and remove it */
if (symbol_Equal(term_TopSymbol(targettoprove), fol_Or())) {
/* Find subterm that contains the predicate */
LIST arglist;
arglist = term_ArgumentList(targettoprove);
for (l1=arglist, l2=term_ArgumentList(orterm); !list_Empty(l1);
l1 = list_Cdr(l1), l2 = list_Cdr(l2)) {
if (term_HasProperSuperterm(ToTopLevel, (TERM) list_Car(l2)) ||
(ToTopLevel == (TERM) list_Car(l2))) {
arglist = list_PointerDeleteElementFree(arglist, list_Car(l1),
(void (*)(POINTER))term_Delete);
break;
}
}
term_RplacArgumentList(targettoprove, arglist);
/* Nothing left for the proof ? */
if (list_Empty(term_ArgumentList(targettoprove))) {
term_Delete(targettoprove);
term_Delete(ToProveDef);
#ifdef CHECK
fol_CheckFatherLinks(Target);
#endif
return Target;
}
}
else {
/* Nothing left for the proof */
term_Delete(targettoprove);
term_Delete(ToProveDef);
#ifdef CHECK
fol_CheckFatherLinks(Target);
#endif
return Target;
}
/* Normalize variables in ToProveDef with respect to targettoprove */
maxvar = term_MaxVar(targettoprove);
symbol_SetStandardVarCounter(maxvar);
vars = fol_BoundVariables(ToProveDef);
vars = term_DeleteDuplicatesFromList(vars);
for (l1=vars; !list_Empty(l1); l1=list_Cdr(l1))
term_ExchangeVariable(ToProveDef, term_TopSymbol(list_Car(l1)), symbol_CreateStandardVariable());
list_Delete(vars);
/* Replace arguments of predicate in condition of definition by matching arguments
of predicate in target term */
for (l1=DefPredArgs, l2=TargetPredArgs; !list_Empty(l1); l1=list_Cdr(l1), l2=list_Cdr(l2))
term_ReplaceVariable(ToProveDef, term_TopSymbol((TERM) list_Car(l1)), (TERM) list_Car(l2));
targettoprove = term_Create(fol_Not(), list_List(targettoprove));
targettoprove = cnf_NegationNormalFormula(targettoprove);
targettoprove = term_Create(fol_Implies(),
list_Cons(targettoprove, list_List(ToProveDef)));
/* At this point ToProveDef must not be accessed again ! */
/* Add all--quantifier to targettoprove */
freevars = fol_FreeVariables(targettoprove);
term_CopyTermsInList(freevars);
targettoprove = fol_CreateQuantifier(fol_All(), freevars, list_List(targettoprove));
if (flag_GetFlagIntValue(Flags, flag_PAPPLYDEFS)) {
puts("\nConverted to :");
fol_PrettyPrint(Target);
}
targettoprove = cnf_NegationNormalFormula(targettoprove);
if (flag_GetFlagIntValue(Flags, flag_PAPPLYDEFS)) {
puts("\nToProve for this target :");
fol_PrettyPrint(targettoprove);
}
*LocallyTrue = cnf_HaveProof(list_Nil(), targettoprove, Flags, Precedence);
term_Delete(targettoprove);
#ifdef CHECK
fol_CheckFatherLinks(Target);
#endif
return Target;
}
static TERM cnf_RemoveQuantFromPathAndFlatten(TERM TopTerm, TERM SubTerm)
/**********************************************************
INPUT: Two terms, <SubTerm> must be a subterm of <TopTerm>.
Superterm of <SubTerm> must be an equivalence.
Along the path to SubTerm there are only quantifiers or disjunctions.
All free variables in the equivalence are free variables
in <SubTerm>.
All free variables in <SubTerm> are bound by a universal quantifier
(with polarity 1).
RETURN: The destructively changed <TopTerm>.
EFFECT: Removes all quantifiers not binding a variable in <SubTerm>
from <subTerm>'s path.
Moves all universal quantifiers binding free variable
in <SubTerm> up.
<TopTerm> is transformed into the form
forall([X1,...,Xn],or (equiv(<SubTerm>,psi),phi)).
**********************************************************/
{
TERM Term1, Term2, Flat, Variable;
LIST Scan1, Scan2, FreeVars;
#ifdef CHECK
if (!fol_CheckFormula(TopTerm) || !term_HasPointerSubterm(TopTerm, SubTerm)) {
misc_StartErrorReport();
misc_ErrorReport("\nIn cnf_RemoveQuantFromPathAndFlatten: Illegal input.");
misc_FinishErrorReport();
}
#endif
TopTerm = cnf_SimplifyQuantors(TopTerm);
term_AddFatherLinks(TopTerm);
Term1 = term_Superterm(SubTerm);
while (Term1 != TopTerm) {
while (symbol_Equal(fol_Or(), term_TopSymbol(Term1)) && (TopTerm != Term1)) {
Term1 = term_Superterm(Term1);
}
if (fol_IsQuantifier(term_TopSymbol(Term1))) {
Flat = term_SecondArgument(Term1);
Flat = cnf_Flatten(Flat, fol_Or());
Scan1 = fol_QuantifierVariables(Term1);
while (!list_Empty(Scan1)) {
Variable = (TERM)list_Car(Scan1);
if (fol_VarOccursFreely(Variable, SubTerm)) {
Scan2 = list_Cdr(Scan1);
fol_DeleteQuantifierVariable(Term1, term_TopSymbol(list_Car(Scan1)));
Scan1 = Scan2;
}
else {
Scan1 = list_Cdr(Scan1);
}
}
if (fol_IsQuantifier(term_TopSymbol(Term1))) {
/* still variables, but not binding a variable in the equivalence term */
LIST ArgList;
term_RplacArgumentList(Flat, list_PointerDeleteOneElement(term_ArgumentList(Flat), SubTerm));
ArgList = term_ArgumentList(Term1);
term_RplacArgumentList(Term1, list_Nil());
Term2 = term_Create(term_TopSymbol(Term1), ArgList);
term_RplacArgumentList(Term1, list_Cons(SubTerm, list_List(Term2)));
term_RplacTop(Term1, fol_Or());
Scan1 = term_ArgumentList(Term1);
while (!list_Empty(Scan1)) {
term_RplacSuperterm((TERM)list_Car(Scan1), Term1);
Scan1 = list_Cdr(Scan1);
}
}
}
else {
#ifdef CHECK
if (!symbol_Equal(term_TopSymbol(Term1), fol_Or())) {
misc_StartErrorReport();
misc_ErrorReport("\nIn cnf_RemoveQuantFromPathAndFlatten: Illegal term Term1");
misc_FinishErrorReport();
}
#endif
Term1 = cnf_Flatten(Term1, fol_Or());
}
}
FreeVars = fol_FreeVariables(Term1);
if (!list_Empty(FreeVars)) {
term_CopyTermsInList(FreeVars);
TopTerm = fol_CreateQuantifier(fol_All(), FreeVars, list_List(Term1));
}
return TopTerm;
}
TERM cnf_DefConvert(TERM Def, TERM FoundPredicate, TERM* ToProve)
/*********************************************************
INPUT: A term Def which is an equivalence (P(x1,..,xn) <=> Formula)
that can be converted to standard form.
The subterm that holds the defined predicate.
A pointer to a term ToProve into which a term is stored
that has to be proved before applying the definition.
RETURNS: The converted definition : forall([..], or(equiv(..,..), ..))
************************************************************/
{
TERM orterm;
#ifdef CHECK
fol_CheckFatherLinks(Def);
#endif
Def = cnf_RemoveImplFromFormulaPath(Def, FoundPredicate); /* Remove implications along the path */
Def = cnf_NegationNormalFormulaPath(Def, FoundPredicate); /* Move not's as far down as possible */
#ifdef CHECK
if (!fol_CheckFormula(Def)) {
misc_StartErrorReport();
misc_ErrorReport("\nIn cnf_DefConvert: Illegal input Formula.\n");
misc_FinishErrorReport();
}
if (!term_HasPointerSubterm(Def, FoundPredicate)) {
misc_StartErrorReport();
misc_ErrorReport("\nIn cnf_DefConvert: Illegal input SubTerm.\n");
misc_FinishErrorReport();
}
#endif
Def = cnf_RemoveQuantFromPathAndFlatten(Def, term_Superterm(FoundPredicate));
term_AddFatherLinks(Def);
#ifdef CHECK
if (!fol_CheckFormula(Def)) {
misc_StartErrorReport();
misc_ErrorReport("\nIn cnf_DefConvert: Illegal term Def.");
misc_FinishErrorReport();
}
if (!term_HasPointerSubterm(Def, FoundPredicate)) {
misc_StartErrorReport();
misc_ErrorReport("\nIn cnf_DefConvert: Illegal term FoundPredicate.");
misc_FinishErrorReport();
}
#endif
/* Find top level or() */
if (symbol_Equal(term_TopSymbol(Def), fol_All())) {
/* Make sure there are several arguments */
if (symbol_Equal(term_TopSymbol(term_SecondArgument(Def)), fol_Or()) &&
(list_Length(term_ArgumentList(term_SecondArgument(Def))) == 1)) {
TERM t;
t = term_SecondArgument(Def);
term_RplacSecondArgument(Def, term_FirstArgument(term_SecondArgument(Def)));
term_Free(t);
orterm = NULL;
term_RplacSuperterm(term_SecondArgument(Def), Def);
}
else
orterm = term_SecondArgument(Def);
}
else {
/* Make sure there are several arguments */
if (symbol_Equal(term_TopSymbol(Def), fol_Or()) &&
(list_Length(term_ArgumentList(Def)) == 1)) {
TERM t;
t = Def;
Def = term_FirstArgument(Def);
term_Free(t);
orterm = NULL;
term_RplacSuperterm(term_SecondArgument(Def), Def);
}
else
orterm = Def;
}
/* If there is something to prove */
if (orterm != (TERM) NULL) {
TERM equiv;
LIST args;
equiv = (TERM) NULL;
/* In pell 10 there are no conditions for the equivalence */
if (symbol_Equal(term_TopSymbol(orterm), fol_Equiv())) {
equiv = orterm;
*ToProve = NULL;
}
else {
TERM t;
/* First find equivalence term among arguments */
args = term_ArgumentList(orterm);
equiv = term_Superterm(FoundPredicate);
/* Delete equivalence from list */
args = list_PointerDeleteElement(args, equiv);
term_RplacArgumentList(orterm, args);
/* ToProve consists of all the definitions arguments except the equivalence */
*ToProve = term_Copy(orterm);
/* Now not(*ToProve) implies the equivalence */
/* Negate *ToProve */
*ToProve = term_Create(fol_Not(), list_List(*ToProve));
*ToProve = cnf_NegationNormalFormula(*ToProve);
term_AddFatherLinks(*ToProve);
/* Now convert definition to implication form */
term_RplacTop(orterm, fol_Implies());
t = term_Create(fol_Not(),
list_List(term_Create(fol_Or(),
term_ArgumentList(orterm))));
term_RplacArgumentList(orterm, list_Cons(t, list_List(equiv)));
Def = cnf_NegationNormalFormula(Def);
term_AddFatherLinks(Def);
}
}
#ifdef CHECK
fol_CheckFatherLinks(Def);
#endif
return Def;
}
LIST cnf_HandleDefinition(PROOFSEARCH Search, LIST Pair, LIST Axioms,
LIST Sorts, LIST Conjectures)
/*******************************************************************
INPUT: A PROOFSEARCH object, a pair (label, term) and 3 lists of pairs.
If the term in pair is a definition, the defined predicate
is expanded in all the lists
and added to the proofsearch object.
RETURNS: The pair with the converted definition:
forall([..], or(equiv(..,..), .......))
********************************************************************/
{
TERM definition, defpredicate, equivterm;
BOOL alwaysapplicable; /* Is set to TRUE iff the definition can always be applied */
FLAGSTORE Flags;
PRECEDENCE Precedence;
Flags = prfs_Store(Search);
Precedence = prfs_Precedence(Search);
/* The axiomlist consists of (label, formula) pairs */
definition = list_PairSecond(Pair);
/* Test if Definition contains a definition */
defpredicate = (TERM) NULL;
if (cnf_ContainsDefinition(definition, &defpredicate)) {
TERM toprove;
LIST allformulae, scan;
/* Create list of all formula pairs */
/* Check if definition may be applied to each formula */
allformulae = list_Copy(Axioms);
allformulae = list_Nconc(allformulae, list_Copy(Sorts));
allformulae = list_Nconc(allformulae, list_Copy(Conjectures));
#ifdef CHECK
for (scan=allformulae; !list_Empty(scan); scan=list_Cdr(scan)) {
if (!list_Empty((LIST) list_Car(scan))) {
if (!term_IsTerm((TERM) list_PairSecond((LIST) list_Car(scan))))
fol_CheckFatherLinks((TERM) list_PairSecond((LIST) list_Car(scan)));
}
}
#endif
/* Convert definition to standard form */
if (flag_GetFlagIntValue(Flags, flag_PAPPLYDEFS)) {
fputs("\nPredicate : ", stdout);
symbol_Print(term_TopSymbol(defpredicate));
}
definition = cnf_DefConvert(definition, defpredicate, &toprove);
if (toprove == NULL)
alwaysapplicable = TRUE;
else
alwaysapplicable = FALSE;
prfs_SetDefinitions(Search, list_Cons(term_Copy(definition),
prfs_Definitions(Search)));
if (flag_GetFlagIntValue(Flags, flag_PAPPLYDEFS)) {
if (alwaysapplicable) {
fputs("\nAlways Applicable : ", stdout);
fol_PrettyPrint(definition);
}
}
/* Definition is converted to a form where the equivalence is
the first argument of the disjunction */
equivterm = term_SecondArgument(term_Superterm(defpredicate));
scan = allformulae;
while (!list_Empty(scan)) {
BOOL localfound;
LIST pair, targettermvars;
/* Pair label / term */
pair = list_Car(scan);
/* Pair may be NULL if it is a definition that could be deleted */
if ((pair != NULL) && (definition != (TERM) list_PairSecond(pair))) {
TERM target, targetpredicate, totoplevel;
LIST varsfortoplevel;
target = (TERM) list_PairSecond(pair);
targettermvars = varsfortoplevel = list_Nil();
/* If definition is not always applicable, check if it is applicable
for this formula */
localfound = FALSE;
if (!alwaysapplicable) {
if (cnf_ContainsPredicate(target, term_TopSymbol(defpredicate),
&targetpredicate, &totoplevel,
&targettermvars, &varsfortoplevel)) {
TERM toprovecopy;
toprovecopy = term_Copy(toprove);
target = cnf_DefTargetConvert(target, totoplevel, toprovecopy,
term_ArgumentList(defpredicate),
term_ArgumentList(targetpredicate),
targettermvars, varsfortoplevel,
Flags, Precedence, &localfound);
list_Delete(targettermvars);
list_Delete(varsfortoplevel);
targettermvars = varsfortoplevel = list_Nil();
list_Rplacd(pair, (LIST) target);
if (localfound)
list_Rplacd(pair,
(LIST) cnf_ApplyDefinitionOnce(defpredicate,
equivterm,
list_PairSecond(pair),
targetpredicate,
Flags));
}
}
else {
if (cnf_ContainsPredicate(target, term_TopSymbol(defpredicate),
&targetpredicate, &totoplevel,
&targettermvars, &varsfortoplevel))
list_Rplacd(pair, (LIST) cnf_ApplyDefinitionOnce(defpredicate,
equivterm,
list_PairSecond(pair),
targetpredicate,
Flags));
else
scan = list_Cdr(scan);
list_Delete(targettermvars);
list_Delete(varsfortoplevel);
targettermvars = varsfortoplevel = list_Nil();
}
}
else
scan = list_Cdr(scan);
}
list_Delete(allformulae);
/* toprove can be NULL if the definition can always be applied */
if (toprove != (TERM) NULL)
term_Delete(toprove);
list_Rplacd(Pair, (LIST) definition);
}
return Pair;
}
LIST cnf_ApplyDefinitionToClause(CLAUSE Clause, TERM Predicate, TERM Expansion,
FLAGSTORE Flags, PRECEDENCE Precedence)
/**************************************************************
INPUT: A clause, two terms and a flag store and a precedence.
RETURNS: The list of clauses where each occurrence of Predicate is
replaced by Expansion.
***************************************************************/
{
NAT i;
BOOL changed;
LIST args, scan, symblist;
TERM clauseterm, argument;
changed = FALSE;
/* Build term from clause */
args = list_Nil();
for (i = 0; i < clause_Length(Clause); i++) {
argument = clause_GetLiteralTerm(Clause, i); /* with sign */
args = list_Cons(term_Copy(argument), args);
}
clauseterm = term_Create(fol_Or(), args);
for (scan=term_ArgumentList(clauseterm); !list_Empty(scan); scan=list_Cdr(scan)) {
BOOL isneg;
argument = (TERM) list_Car(scan);
if (symbol_Equal(term_TopSymbol(argument), fol_Not())) {
argument = term_FirstArgument(argument);
isneg = TRUE;
}
else
isneg = FALSE;
/* Try to match with predicate */
cont_StartBinding();
if (unify_Match(cont_LeftContext(), Predicate, argument)) {
SUBST subst;
TERM newargument;
subst = subst_ExtractMatcher();
newargument = subst_Apply(subst, term_Copy(Expansion));
subst_Free(subst);
if (isneg)
newargument = term_Create(fol_Not(), list_List(newargument));
term_Delete((TERM) list_Car(scan));
list_Rplaca(scan, newargument);
changed = TRUE;
}
cont_BackTrack();
}
if (changed) {
/* Build term and derive list of clauses */
LIST result;
if (flag_GetFlagIntValue(Flags, flag_PAPPLYDEFS)) {
puts("\nClause before applying def :");
clause_Print(Clause);
puts("\nPredicate :");
fol_PrettyPrint(Predicate);
puts("\nExpansion :");
fol_PrettyPrint(Expansion);
}
symblist = list_Nil();
clauseterm = cnf_Cnf(clauseterm, Flags, Precedence, &symblist);
result = cnf_MakeClauseList(clauseterm,FALSE,FALSE,Flags,Precedence);
list_Delete(symblist);
term_Delete(clauseterm);
if (flag_GetFlagIntValue(Flags, flag_PAPPLYDEFS)) {
LIST l;
puts("\nClauses derived by expanding definition :");
for (l = result; !list_Empty(l); l=list_Cdr(l)) {
clause_Print((CLAUSE) list_Car(l));
fputs("\n", stdout);
}
}
return result;
}
else {
term_Delete(clauseterm);
return list_Nil();
}
}
BOOL cnf_PropagateSubstEquations(TERM StartTerm)
/*************************************************************
INPUT: A term where we assume that father links are established and
that no variable is bound by more than one quantifier.
RETURNS: TRUE, if any substitutions were made, FALSE otherwise.
EFFECT: Function looks for equations of the form x=t where x does not
occur in t. If x=t occurs negatively and disjunctively below
a universal quantifier binding x or if x=t occurs positively and
conjunctively below an existential quantifier binding x,
all occurrences of x are replaced by t in <StartTerm>.
**************************************************************/
{
LIST Subequ;
TERM QuantorTerm, Equation, EquationTerm;
SYMBOL Variable;
BOOL Hit, Substituted;
#ifdef CHECK
if (fol_VarBoundTwice(StartTerm)) {
misc_StartErrorReport();
misc_ErrorReport("\n In cnf_PropagateSubstEquations: Variables of");
misc_ErrorReport("\n input term are not normalized.");
misc_FinishErrorReport();
}
#endif
Substituted = FALSE;
Subequ = fol_GetSubstEquations(StartTerm);
for ( ; !list_Empty(Subequ); Subequ = list_Pop(Subequ)) {
Hit = FALSE;
Equation = list_Car(Subequ);
Variable = symbol_Null();
QuantorTerm = term_Null();
EquationTerm = term_Null();
if (term_IsVariable(term_FirstArgument(Equation)) &&
!term_ContainsVariable(term_SecondArgument(Equation),
term_TopSymbol(term_FirstArgument(Equation)))) {
Variable = term_TopSymbol(term_FirstArgument(Equation));
QuantorTerm = fol_GetBindingQuantifier(Equation, Variable);
EquationTerm = term_SecondArgument(Equation);
Hit = fol_PolarCheck(Equation, QuantorTerm);
}
if (!Hit && term_IsVariable(term_SecondArgument(Equation)) &&
!term_ContainsVariable(term_FirstArgument(Equation),
term_TopSymbol(term_SecondArgument(Equation)))) {
Variable = term_TopSymbol(term_SecondArgument(Equation));
QuantorTerm = fol_GetBindingQuantifier(Equation, Variable);
EquationTerm = term_FirstArgument(Equation);
Hit = fol_PolarCheck(Equation, QuantorTerm);
}
if (Hit) {
fol_DeleteQuantifierVariable(QuantorTerm,Variable);
term_ReplaceVariable(StartTerm, Variable, EquationTerm); /* We replace everythere ! */
term_AddFatherLinks(StartTerm);
if (symbol_Equal(term_TopSymbol(QuantorTerm),fol_Equality())) /* Trivial Formula */
fol_SetTrue(QuantorTerm);
else
fol_SetTrue(Equation);
Substituted = TRUE;
}
}
/* <Subequ> was freed in the loop. */
return Substituted;
}
|