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
|
/* lrslib.c library code for lrs */
/* last modified: 2012.6.1 */
/* truncate needs mod to supress last pivot */
/* need to add a test for non-degenerate pivot step in reverse I guess */
/* Copyright: David Avis 2003,2011 avis@cs.mcgill.ca */
/* This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
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
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include <string.h>
#include "lrslib.h"
/* Globals; these need to be here, rather than lrslib.h, so they are
not multiply defined. */
FILE *lrs_cfp; /* output file for checkpoint information */
FILE *lrs_ifp; /* input file pointer */
FILE *lrs_ofp; /* output file pointer */
static unsigned long dict_count, dict_limit, cache_tries, cache_misses;
/* Variables and functions global to this file only */
static long lrs_checkpoint_seconds = 0;
static long lrs_global_count = 0; /* Track how many lrs_dat records are
allocated */
static lrs_dat_p *lrs_global_list[MAX_LRS_GLOBALS + 1];
static lrs_dic *new_lrs_dic (long m, long d, long m_A);
static void cache_dict (lrs_dic ** D_p, lrs_dat * global, long i, long j);
static long check_cache (lrs_dic ** D_p, lrs_dat * global, long *i_p, long *j_p);
static void save_basis (lrs_dic * D, lrs_dat * Q);
static void lrs_dump_state ();
static void pushQ (lrs_dat * global, long m, long d, long m_A);
#ifdef TIMES
static void ptimes ();
static double get_time();
#endif
/*******************************/
/* signals handling */
/*******************************/
#ifdef SIGNALS
static void checkpoint ();
static void die_gracefully ();
static void setup_signals ();
static void timecheck ();
#endif
/*******************************/
/* functions for external use */
/*******************************/
/*******************************************************/
/* lrs_main is driver for lrs.c does H/V enumeration */
/* showing function calls intended for public use */
/*******************************************************/
long
lrs_main (int argc, char *argv[])
{
lrs_dic *P; /* structure for holding current dictionary and indices */
lrs_dat *Q; /* structure for holding static problem data */
lrs_mp_vector output; /* holds one line of output; ray,vertex,facet,linearity */
lrs_mp_matrix Lin; /* holds input linearities if any are found */
long col; /* output column index for dictionary */
long startcol = 0;
long prune = FALSE; /* if TRUE, getnextbasis will prune tree and backtrack */
/* global variables lrs_ifp and lrs_ofp are file pointers for input and output */
/* they default to stdin and stdout, but may be overidden by command line parms. */
/***************************************************
Step 0:
Do some global initialization that should only be done once,
no matter how many lrs_dat records are allocated. db
***************************************************/
if ( !lrs_init ("\n*lrs:"))
return 1;
printf(AUTHOR);
/*********************************************************************************/
/* Step 1: Allocate lrs_dat, lrs_dic and set up the problem */
/*********************************************************************************/
Q = lrs_alloc_dat ("LRS globals"); /* allocate and init structure for static problem data */
if (Q == NULL)
return 1;
if (!lrs_read_dat (Q, argc, argv)) /* read first part of problem data to get dimensions */
return 1; /* and problem type: H- or V- input representation */
P = lrs_alloc_dic (Q); /* allocate and initialize lrs_dic */
if (P == NULL)
return 1;
if (!lrs_read_dic (P, Q)) /* read remainder of input to setup P and Q */
return 1;
output = lrs_alloc_mp_vector (Q->n); /* output holds one line of output from dictionary */
/*********************************************************************************/
/* Step 2: Find a starting cobasis from default of specified order */
/* P is created to hold active dictionary data and may be cached */
/* Lin is created if necessary to hold linearity space */
/* Print linearity space if any, and retrieve output from first dict. */
/*********************************************************************************/
if (!lrs_getfirstbasis (&P, Q, &Lin, FALSE))
return 1;
/* Pivot to a starting dictionary */
/* There may have been column redundancy */
/* If so the linearity space is obtained and redundant */
/* columns are removed. User can access linearity space */
/* from lrs_mp_matrix Lin dimensions nredundcol x d+1 */
if (Q->homogeneous && Q->hull)
startcol++; /* col zero not treated as redundant */
for (col = startcol; col < Q->nredundcol; col++) /* print linearity space */
lrs_printoutput (Q, Lin[col]); /* Array Lin[][] holds the coeffs. */
/*********************************************************************************/
/* Step 3: Terminate if lponly option set, otherwise initiate a reverse */
/* search from the starting dictionary. Get output for each new dict. */
/*********************************************************************************/
/* We initiate reverse search from this dictionary */
/* getting new dictionaries until the search is complete */
/* User can access each output line from output which is */
/* vertex/ray/facet from the lrs_mp_vector output */
/* prune is TRUE if tree should be pruned at current node */
do
{
prune=lrs_checkbound(P,Q);
if (!prune)
for (col = 0; col <= P->d; col++)
if (lrs_getsolution (P, Q, output, col))
lrs_printoutput (Q, output);
}
while (!Q->lponly && lrs_getnextbasis (&P, Q, prune));
if (Q->lponly)
lrs_lpoutput(P,Q,output);
else
lrs_printtotals (P, Q); /* print final totals, including estimates */
lrs_clear_mp_vector(output, Q->n);
lrs_free_dic (P,Q); /* deallocate lrs_dic */
lrs_free_dat (Q); /* deallocate lrs_dat */
lrs_close ("lrs:");
return 0;
}
/*********************************************/
/* end of model test program for lrs library */
/*********************************************/
/*******************************************************/
/* redund_main is driver for redund.c, removes all */
/* redundant rows from an H or V-representation */
/* showing function calls intended for public use */
/*******************************************************/
long
redund_main (int argc, char *argv[])
{
lrs_mp_matrix Ain; /* holds a copy of the input matrix to output at the end */
long *redineq; /* redineq[i]=0 if ineq i non-red,1 if red,2 linearity */
long ineq; /* input inequality number of current index */
lrs_dic *P; /* structure for holding current dictionary and indices */
lrs_dat *Q; /* structure for holding static problem data */
lrs_mp_matrix Lin; /* holds input linearities if any are found */
long i, j, d, m;
long nlinearity; /* number of linearities in input file */
long nredund; /* number of redundant rows in input file */
long lastdv;
long debug;
long index; /* basic index for redundancy test */
/* global variables lrs_ifp and lrs_ofp are file pointers for input and output */
/* they default to stdin and stdout, but may be overidden by command line parms. */
/* Lin is global 2-d array for linearity space if it is found (redund columns) */
lrs_ifp = stdin;
lrs_ofp = stdout;
/***************************************************
Step 0:
Do some global initialization that should only be done once,
no matter how many lrs_dat records are allocated. db
***************************************************/
if ( !lrs_init ("\n*redund:"))
return 1;
printf (AUTHOR);
/*********************************************************************************/
/* Step 1: Allocate lrs_dat, lrs_dic and set up the problem */
/*********************************************************************************/
Q = lrs_alloc_dat ("LRS globals"); /* allocate and init structure for static problem data */
if (Q == NULL)
return 1;
if (!lrs_read_dat (Q, argc, argv)) /* read first part of problem data to get dimensions */
return 1; /* and problem type: H- or V- input representation */
P = lrs_alloc_dic (Q); /* allocate and initialize lrs_dic */
if (P == NULL)
return 1;
if (!lrs_read_dic (P, Q)) /* read remainder of input to setup P and Q */
return 1;
/* if non-negative flag is set, non-negative constraints are not input */
/* explicitly, and are not checked for redundancy */
m = P->m_A; /* number of rows of A matrix */
d = P->d;
debug = Q->debug;
redineq = calloc ((m + 1), sizeof (long));
Ain = lrs_alloc_mp_matrix (m, d); /* make a copy of A matrix for output later */
for (i = 1; i <= m; i++)
{
for (j = 0; j <= d; j++)
copy (Ain[i][j], P->A[i][j]);
if (debug)
lrs_printrow ("*", Q, Ain[i], d);
}
/*********************************************************************************/
/* Step 2: Find a starting cobasis from default of specified order */
/* Lin is created if necessary to hold linearity space */
/*********************************************************************************/
if (!lrs_getfirstbasis (&P, Q, &Lin, TRUE))
return 1;
/* Pivot to a starting dictionary */
/* There may have been column redundancy */
/* If so the linearity space is obtained and redundant */
/* columns are removed. User can access linearity space */
/* from lrs_mp_matrix Lin dimensions nredundcol x d+1 */
/*********************************************************************************/
/* Step 3: Test each row of the dictionary to see if it is redundant */
/*********************************************************************************/
/* note some of these may have been changed in getting initial dictionary */
m = P->m_A;
d = P->d;
nlinearity = Q->nlinearity;
lastdv = Q->lastdv;
if (debug)
fprintf (lrs_ofp, "\ncheckindex m=%ld, n=%ld, nlinearity=%ld lastdv=%ld", m,d,nlinearity,lastdv);
/* linearities are not considered for redundancy */
for (i = 0; i < nlinearity; i++)
redineq[Q->linearity[i]] = 2L;
/* rows 0..lastdv are cost, decision variables, or linearities */
/* other rows need to be tested */
for (index = lastdv + 1; index <= m + d; index++)
{
ineq = Q->inequality[index - lastdv]; /* the input inequality number corr. to this index */
redineq[ineq] = checkindex (P, Q, index);
if (debug)
fprintf (lrs_ofp, "\ncheck index=%ld, inequality=%ld, redineq=%ld", index, ineq, redineq[ineq]);
if (redineq[ineq] == ONE)
{
fprintf (lrs_ofp, "\n*row %ld was redundant and removed", ineq);
fflush (lrs_ofp);
}
} /* end for index ..... */
if (debug)
{
fprintf (lrs_ofp, "\n*redineq:");
for (i = 1; i <= m; i++)
fprintf (lrs_ofp, " %ld", redineq[i]);
}
if (!Q->hull)
fprintf (lrs_ofp, "\nH-representation");
else
fprintf (lrs_ofp, "\nV-representation");
/* linearities will be printed first in output */
if (nlinearity > 0)
{
fprintf (lrs_ofp, "\nlinearity %ld", nlinearity);
for (i = 1; i <= nlinearity; i++)
fprintf (lrs_ofp, " %ld", i);
}
nredund = nlinearity; /* count number of non-redundant inequalities */
for (i = 1; i <= m; i++)
if (redineq[i] == 0)
nredund++;
fprintf (lrs_ofp, "\nbegin");
fprintf (lrs_ofp, "\n%ld %ld rational", nredund, Q->n);
/* print the linearities first */
for (i = 0; i < nlinearity; i++)
lrs_printrow ("", Q, Ain[Q->linearity[i]], Q->inputd);
for (i = 1; i <= m; i++)
if (redineq[i] == 0)
lrs_printrow ("", Q, Ain[i], Q->inputd);
fprintf (lrs_ofp, "\nend");
fprintf (lrs_ofp, "\n*Input had %ld rows and %ld columns", m, Q->n);
fprintf (lrs_ofp, ": %ld row(s) redundant", m - nredund);
lrs_free_dic (P,Q); /* deallocate lrs_dic */
lrs_free_dat (Q); /* deallocate lrs_dat */
lrs_close ("redund:");
return 0;
}
/*********************************************/
/* end of redund.c */
/*********************************************/
/*******************/
/* lrs_printoutput */
/*******************/
void
lrs_printoutput (lrs_dat * Q, lrs_mp_vector output)
{
long i;
fprintf (lrs_ofp, "\n");
if (Q->hull || zero (output[0])) /*non vertex */
{
for (i = 0; i < Q->n; i++)
pmp ("", output[i]);
}
else
{ /* vertex */
fprintf (lrs_ofp, " 1 ");
for (i = 1; i < Q->n; i++)
prat ("", output[i], output[0]);
}
fflush(lrs_ofp);
}
/**************************/
/* end of lrs_printoutput */
/**************************/
/****************/
/* lrs_lpoutput */
/****************/
void lrs_lpoutput(lrs_dic * P,lrs_dat * Q, lrs_mp_vector output)
{
#ifndef LRS_QUIET
lrs_mp Temp1, Temp2;
long i;
lrs_alloc_mp (Temp1);
lrs_alloc_mp (Temp2);
fprintf (lrs_ofp, "\n*LP solution only requested");
prat ("\n\n*Objective function has value ", P->objnum, P->objden);
fprintf (lrs_ofp, "\n\n*Primal: ");
for (i = 1; i < Q->n; i++)
{
fprintf(lrs_ofp,"x_%ld=",i);
prat ("", output[i], output[0]);
}
if(Q->nlinearity > 0)
fprintf (lrs_ofp, "\n\n*Linearities in input file - partial dual solution only");
fprintf (lrs_ofp, "\n\n*Dual: ");
for (i = 0; i < P->d; i++)
{
fprintf(lrs_ofp,"y_%ld=",Q->inequality[P->C[i]-Q->lastdv]);
changesign(P->A[0][P->Col[i]]);
mulint(Q->Lcm[P->Col[i]],P->A[0][P->Col[i]],Temp1);
mulint(Q->Gcd[P->Col[i]],P->det,Temp2);
prat("",Temp1,Temp2);
changesign(P->A[0][P->Col[i]]);
}
fprintf (lrs_ofp, "\n");
lrs_clear_mp (Temp1);
lrs_clear_mp (Temp2);
#endif
}
/***********************/
/* end of lrs_lpoutput */
/***********************/
void
lrs_printrow (char name[], lrs_dat * Q, lrs_mp_vector output, long rowd)
/* print a row of A matrix in output in "original" form */
/* rowd+1 is the dimension of output vector */
/* if input is H-rep. output[0] contains the RHS */
/* if input is V-rep. vertices are scaled by 1/output[1] */
{
long i;
fprintf (lrs_ofp, "\n%s", name);
if (!Q->hull) /* input was inequalities, print directly */
{
for (i = 0; i <= rowd; i++)
pmp ("", output[i]);
return;
}
/* input was vertex/ray */
if (zero (output[1])) /*non-vertex */
{
for (i = 1; i <= rowd; i++)
pmp ("", output[i]);
}
else
{ /* vertex */
fprintf (lrs_ofp, " 1 ");
for (i = 2; i <= rowd; i++)
prat ("", output[i], output[1]);
}
return;
} /* end of lrs_printrow */
long
lrs_getsolution (lrs_dic * P, lrs_dat * Q, lrs_mp_vector output, long col)
/* check if column indexed by col in this dictionary */
/* contains output */
/* col=0 for vertex 1....d for ray/facet */
{
long j; /* cobasic index */
lrs_mp_matrix A = P->A;
long *Row = P->Row;
if (col == ZERO) /* check for lexmin vertex */
return lrs_getvertex (P, Q, output);
/* check for rays: negative in row 0 , positive if lponly */
if (Q->lponly)
{
if (!positive (A[0][col]))
return FALSE;
}
else if (!negative (A[0][col]))
return FALSE;
/* and non-negative for all basic non decision variables */
j = Q->lastdv + 1;
while (j <= P->m && !negative (A[Row[j]][col]))
j++;
if (j <= P->m)
return FALSE;
if (Q->geometric || Q->allbases || lexmin (P, Q, col) || Q->lponly)
return lrs_getray (P, Q, col, Q->n, output);
return FALSE; /* no more output in this dictionary */
} /* end of lrs_getsolution */
long
lrs_init (char *name) /* returns TRUE if successful, else FALSE */
{
printf ("%s", name);
printf (TITLE);
printf (VERSION);
printf ("(");
printf (BIT);
printf (",");
printf (ARITH);
if (!lrs_mp_init (ZERO, stdin, stdout)) /* initialize arithmetic */
return FALSE;
printf (")");
lrs_global_count = 0;
lrs_checkpoint_seconds = 0;
#ifdef SIGNALS
setup_signals ();
#endif
return TRUE;
}
void
lrs_close (char *name)
{
fprintf (lrs_ofp, "\n*%s", name);
fprintf (lrs_ofp, TITLE);
fprintf (lrs_ofp, VERSION);
fprintf (lrs_ofp, "(");
fprintf (lrs_ofp, BIT);
fprintf (lrs_ofp, ",");
fprintf (lrs_ofp, ARITH);
fprintf (lrs_ofp, ")");
#ifdef MP
fprintf (lrs_ofp, " max digits=%ld/%ld", DIG2DEC (lrs_record_digits), DIG2DEC (lrs_digits));
#endif
#ifdef TIMES
ptimes ();
#endif
fprintf (lrs_ofp, "\n");
fclose (lrs_ifp);
if (lrs_ofp != stdout)
fclose (lrs_ofp);
}
/***********************************/
/* allocate and initialize lrs_dat */
/***********************************/
lrs_dat *
lrs_alloc_dat (char *name)
{
lrs_dat *Q;
long i;
if (lrs_global_count >= MAX_LRS_GLOBALS)
{
fprintf (stderr,
"Fatal: Attempt to allocate more than %ld global data blocks\n", MAX_LRS_GLOBALS);
exit (1);
}
Q = (lrs_dat *) malloc (sizeof (lrs_dat));
if (Q == NULL)
return Q; /* failure to allocate */
lrs_global_list[lrs_global_count] = Q;
Q->id = lrs_global_count;
lrs_global_count++;
Q->name=(char *) CALLOC ((unsigned) strlen(name)+1, sizeof (char));
strcpy(Q->name,name);
/* initialize variables */
Q->m = 0L;
Q->n = 0L;
Q->inputd = 0L;
Q->deepest = 0L;
Q->nlinearity = 0L;
Q->nredundcol = 0L;
Q->runs = 0L;
Q->seed = 1234L;
Q->totalnodes = 0L;
for (i = 0; i < 10; i++)
{
Q->count[i] = 0L;
Q->cest[i] = 0.0;
}
Q->count[2] = 1L; /* basis counter */
/* initialize flags */
Q->allbases = FALSE;
Q->bound = FALSE; /* upper/lower bound on objective function given */
Q->debug = FALSE;
Q->frequency = 0L;
Q->dualdeg = FALSE; /* TRUE if dual degenerate starting dictionary */
Q->geometric = FALSE;
Q->getvolume = FALSE;
Q->homogeneous = TRUE;
Q->polytope = FALSE;
Q->hull = FALSE;
Q->incidence = FALSE;
Q->lponly = FALSE;
Q->maxdepth = MAXD;
Q->mindepth = -MAXD;
Q->maxoutput = 0L;
Q->nash = FALSE;
Q->nonnegative = FALSE;
Q->printcobasis = FALSE;
Q->printslack = FALSE;
Q->truncate = FALSE; /* truncate tree when moving from opt vertex */
Q->verbose=FALSE;
Q->voronoi = FALSE;
Q->maximize = FALSE; /*flag for LP maximization */
Q->minimize = FALSE; /*flag for LP minimization */
Q->restart = FALSE; /* TRUE if restarting from some cobasis */
Q->givenstart = FALSE; /* TRUE if a starting cobasis is given */
Q->strace = -1L; /* turn on debug at basis # strace */
Q->etrace = -1L; /* turn off debug at basis # etrace */
Q->saved_flag = 0; /* no cobasis saved initially, db */
lrs_alloc_mp (Q->Nvolume);
lrs_alloc_mp (Q->Dvolume);
lrs_alloc_mp (Q->sumdet);
lrs_alloc_mp (Q->saved_det);
lrs_alloc_mp (Q->boundn);
lrs_alloc_mp (Q->boundd);
itomp (ZERO, Q->Nvolume);
itomp (ONE, Q->Dvolume);
itomp (ZERO, Q->sumdet);
/* 2012.6.1 */
Q->unbounded = FALSE;
return Q;
} /* end of allocate and initialize lrs_dat */
/*******************************/
/* lrs_read_dat */
/*******************************/
long
lrs_read_dat (lrs_dat * Q, int argc, char *argv[])
{
char name[100];
long dec_digits = 0;
long infile=0; /*input file number to open if any */
long firstline = TRUE; /*flag for picking off name at line 1 */
int c; /* for fgetc */
if(argc > 1 )
infile=1;
if(Q->nash && argc == 2) /* open second nash input file */
infile=2;
if (infile > 0) /* command line argument overides stdin */
{
if ((lrs_ifp = fopen (argv[infile], "r")) == NULL)
{
printf ("\nBad input file name\n");
return (FALSE);
}
else
{ if (infile==1)
printf ("\n*Input taken from file %s", argv[infile]);
}
}
/* command line argument overides stdout */
if ((!Q->nash && argc == 3) || (Q->nash && argc == 4))
{
if ((lrs_ofp = fopen (argv[argc-1], "w")) == NULL)
{
printf ("\nBad output file name\n");
return (FALSE);
}
else
printf ("\n*Output sent to file %s\n", argv[argc-1]);
}
/* process input file */
if( fscanf (lrs_ifp, "%s", name) == EOF)
{
fprintf (lrs_ofp, "\nNo begin line");
return (FALSE);
}
while (strcmp (name, "begin") != 0) /*skip until "begin" found processing options */
{
if (strncmp (name, "*", 1) == 0) /* skip any line beginning with * */
{
c = name[0];
while (c != EOF && c != '\n')
c = fgetc (lrs_ifp);
}
else if (strcmp (name, "H-representation") == 0)
Q->hull = FALSE;
else if ((strcmp (name, "hull") == 0) || (strcmp (name, "V-representation") == 0))
{
Q->hull = TRUE;
Q->polytope = TRUE; /* will be updated as input read */
}
else if (strcmp (name, "digits") == 0)
{
if (fscanf (lrs_ifp, "%ld", &dec_digits) == EOF)
{
fprintf (lrs_ofp, "\nNo begin line");
return (FALSE);
}
if (!lrs_set_digits(dec_digits))
return (FALSE);
}
else if (strcmp (name, "linearity") == 0)
{
if (!readlinearity (Q))
return FALSE;
}
else if (strcmp (name, "nonnegative") == 0)
{
if(Q->nash)
fprintf (lrs_ofp, "\nNash incompatibile with nonnegative option - skipped");
else
Q->nonnegative = TRUE;
}
else if (firstline)
{
stringcpy (Q->fname, name);
fprintf (lrs_ofp, "\n%s", Q->fname);
firstline = FALSE;
}
if (fscanf (lrs_ifp, "%s", name) == EOF)
{
fprintf (lrs_ofp, "\nNo begin line");
return (FALSE);
}
} /* end of while */
if (fscanf (lrs_ifp, "%ld %ld %s", &Q->m, &Q->n, name) == EOF)
{
fprintf (lrs_ofp, "\nNo data in file");
return (FALSE);
}
if (strcmp (name, "integer") != 0 && strcmp (name, "rational") != 0)
{
fprintf (lrs_ofp, "\nData type must be integer of rational");
return (FALSE);
}
if (Q->m == 0)
{
fprintf (lrs_ofp, "\nNo input given"); /* program dies ungracefully */
return (FALSE);
}
/* inputd may be reduced in preprocessing of linearities and redund cols */
return TRUE;
} /* end of lrs_read_dat */
/****************************/
/* set up lrs_dic structure */
/****************************/
long
lrs_read_dic (lrs_dic * P, lrs_dat * Q)
/* read constraint matrix and set up problem and dictionary */
{
lrs_mp Temp,Tempn,Tempd, mpone, mpten;
lrs_mp_vector oD; /* Denom for objective function */
long i, j;
char name[100];
int c; /* fgetc actually returns an int. db */
/* assign local variables to structures */
lrs_mp_matrix A;
lrs_mp_vector Gcd, Lcm;
long hull = Q->hull;
long m, d;
long dualperturb=FALSE; /* dualperturb=TRUE: objective function perturbed */
lrs_alloc_mp(Temp); lrs_alloc_mp(mpone);
lrs_alloc_mp(Tempn); lrs_alloc_mp(Tempd); lrs_alloc_mp(mpten);
A = P->A;
m = Q->m;
d = Q->inputd;
Gcd = Q->Gcd;
Lcm = Q->Lcm;
oD = lrs_alloc_mp_vector (d);
itomp (ONE, mpone);
itomp (ONE, A[0][0]);
itomp (ONE, Lcm[0]);
itomp (ONE, Gcd[0]);
for (i = 1; i <= m; i++) /* read in input matrix row by row */
{
itomp (ONE, Lcm[i]); /* Lcm of denominators */
itomp (ZERO, Gcd[i]); /* Gcd of numerators */
for (j = hull; j <= d; j++) /* hull data copied to cols 1..d */
{
if (readrat (A[i][j], A[0][j]))
lcm (Lcm[i], A[0][j]); /* update lcm of denominators */
copy (Temp, A[i][j]);
gcd (Gcd[i], Temp); /* update gcd of numerators */
}
if (hull)
{
itomp (ZERO, A[i][0]); /*for hull, we have to append an extra column of zeroes */
if (!one (A[i][1]) || !one (A[0][1])) /* all rows must have a one in column one */
Q->polytope = FALSE;
}
if (!zero (A[i][hull])) /* for H-rep, are zero in column 0 */
Q->homogeneous = FALSE; /* for V-rep, all zero in column 1 */
storesign (Gcd[i], POS);
storesign (Lcm[i], POS);
if (greater (Gcd[i], mpone) || greater (Lcm[i], mpone))
for (j = 0; j <= d; j++)
{
exactdivint (A[i][j], Gcd[i], Temp); /*reduce numerators by Gcd */
mulint (Lcm[i], Temp, Temp); /*remove denominators */
exactdivint (Temp, A[0][j], A[i][j]); /*reduce by former denominator */
}
} /* end of for i= */
/* 2010.4.26 patch */
if(Q->nonnegative) /* set up Gcd and Lcm for nonexistent nongative inequalities */
for (i=m+1;i<=m+d;i++)
{ itomp (ONE, Lcm[i]);
itomp (ONE, Gcd[i]);
}
if (Q->homogeneous && Q->verbose)
{
fprintf (lrs_ofp, "\n*Input is homogeneous, column 1 not treated as redundant");
}
/* read in flags */
while (fscanf (lrs_ifp, "%s", name) != EOF)
{
if (strncmp (name, "*", 1) == 0) /* skip any line beginning with * */
{
c = name[0];
while (c != EOF && c != '\n')
c = fgetc (lrs_ifp);
}
if (strcmp (name, "checkpoint") == 0)
{
long seconds;
if(fscanf (lrs_ifp, "%ld", &seconds) == EOF)
{
fprintf (lrs_ofp, "\nInvalid checkpoint option");
return (FALSE);
}
#ifdef SIGNALS
if (seconds > 0)
{
lrs_checkpoint_seconds = seconds;
errcheck ("signal", signal (SIGALRM, timecheck));
alarm (lrs_checkpoint_seconds);
}
#endif
}
if (strcmp (name, "debug") == 0)
{
Q->etrace =0;
if(fscanf (lrs_ifp, "%ld %ld", &Q->strace, &Q->etrace)==EOF)
Q->strace =0;
fprintf (lrs_ofp, "\n*%s from B#%ld to B#%ld", name, Q->strace, Q->etrace);
Q->verbose=TRUE;
if (Q->strace <= 1)
Q->debug = TRUE;
}
if (strcmp (name, "startingcobasis") == 0)
{
if(Q->nonnegative)
fprintf (lrs_ofp, "\n*startingcobasis incompatible with nonnegative option:skipped");
else
{
fprintf (lrs_ofp, "\n*startingcobasis");
Q->givenstart = TRUE;
if (!readfacets (Q, Q->inequality))
return FALSE;
}
}
if (strcmp (name, "restart") == 0)
{
Q->restart = TRUE;
if(Q->voronoi)
{
if(fscanf (lrs_ifp, "%ld %ld %ld %ld", &Q->count[1], &Q->count[0], &Q->count[2], &P->depth)==EOF)
return FALSE;
fprintf (lrs_ofp, "\n*%s V#%ld R#%ld B#%ld h=%ld data points", name, Q->count[1], Q->count[0], Q->count[2], P->depth);
}
else if(hull)
{
if( fscanf (lrs_ifp, "%ld %ld %ld", &Q->count[0], &Q->count[2], &P->depth)==EOF)
fprintf (lrs_ofp, "\n*%s F#%ld B#%ld h=%ld vertices/rays", name, Q->count[0], Q->count[2], P->depth);
}
else
{
if(fscanf (lrs_ifp, "%ld %ld %ld %ld", &Q->count[1], &Q->count[0], &Q->count[2], &P->depth)==EOF)
return FALSE;
fprintf (lrs_ofp, "\n*%s V#%ld R#%ld B#%ld h=%ld facets", name, Q->count[1], Q->count[0], Q->count[2], P->depth);
}
if (!readfacets (Q, Q->facet))
return FALSE;
} /* end of restart */
/* The next flag request a LP solution only */
if (strcmp (name, "lponly") == 0)
{
if (Q->hull)
fprintf (lrs_ofp, "\n*lponly option not valid for V-representation-skipped");
else
Q->lponly = TRUE;
}
/* The LP will be solved after initialization to get starting vertex */
/* Used also with lponly flag */
if (strcmp (name, "maximize") == 0 || strcmp (name, "minimize") == 0)
{
if (Q->hull)
fprintf (lrs_ofp, "\n*%s option not valid for V-representation-skipped", name);
else
{
{
if (strcmp (name, "maximize") == 0)
Q->maximize = TRUE;
else
Q->minimize = TRUE;
}
fprintf (lrs_ofp,"\n*%s", name);
if(dualperturb) /* apply a perturbation to objective function */
{
fprintf (lrs_ofp, " - Objective function perturbed");
itomp(10L,mpten);
copy(Temp,mpten);
for (j = 0; j <= 10; j++)
mulint(mpten,Temp,Temp);
}
fprintf (lrs_ofp, ": ");
for (j = 0; j <= d; j++)
{
if (readrat (A[0][j], oD[j]) || dualperturb )
{
if(dualperturb && j > 0 && j < d )
{
if (Q->maximize)
linrat(A[0][j], oD[j],ONE,mpone,Temp,ONE,Tempn,Tempd);
else
linrat(A[0][j], oD[j],ONE,mpone,Temp,-1L,Tempn,Tempd);
copy(A[0][j],Tempn);
copy(oD[j],Tempd);
mulint(mpten,Temp,Temp);
}
reduce (A[0][j], oD[j]);
lcm (Q->Lcm[0], oD[j]); /* update lcm of denominators */
}
prat ("", A[0][j], oD[j]);
if (!Q->maximize)
changesign (A[0][j]);
}
storesign (Q->Lcm[0], POS);
if (greater (Q->Lcm[0], mpone))
for (j = 0; j <= d; j++)
{
mulint (Q->Lcm[0], A[0][j], A[0][j]); /*remove denominators */
copy (Temp, A[0][j]);
exactdivint (Temp, oD[j], A[0][j]);
}
if (Q->debug)
printA (P, Q);
}
} /* end of LP setup */
if (strcmp (name, "volume") == 0)
{
fprintf (lrs_ofp, "\n*%s", name);
Q->getvolume = TRUE;
}
if (strcmp (name, "geometric") == 0)
{
fprintf (lrs_ofp, "\n*%s", name);
if (hull & !Q->voronoi)
fprintf (lrs_ofp, " - option for H-representation or voronoi only, skipped");
else
Q->geometric = TRUE;
}
if (strcmp (name, "allbases") == 0)
{
fprintf (lrs_ofp, "\n*%s", name);
Q->allbases = TRUE;
}
if (strcmp (name, "dualperturb") == 0)
{
dualperturb = TRUE;
}
if (strcmp (name, "incidence") == 0)
{
fprintf (lrs_ofp, "\n*%s", name);
Q->incidence = TRUE;
}
if (strcmp (name, "#incidence") == 0) /* number of incident inequalities only */
{
Q->printcobasis = TRUE;
}
if (strcmp (name, "printcobasis") == 0)
{
if(fscanf (lrs_ifp, "%ld", &Q->frequency)==EOF)
/*2010.7.7 set default to zero = print only when outputting vertex/ray/facet */
Q->frequency=0;
fprintf (lrs_ofp, "\n*%s", name);
if (Q->frequency > 0)
fprintf(lrs_ofp," %ld", Q->frequency);
Q->printcobasis = TRUE;
}
if (strcmp (name, "printslack") == 0)
{
Q->printslack = TRUE;
}
if (strcmp (name, "cache") == 0)
{
if(fscanf (lrs_ifp, "%ld", &dict_limit)==EOF)
dict_limit=1;
fprintf (lrs_ofp, "\n*cache %ld", dict_limit);
if (dict_limit < 1)
dict_limit = 1;
}
if (strcmp (name, "linearity") == 0)
{
if (!readlinearity (Q))
return FALSE;
}
if (strcmp (name, "maxdepth") == 0)
{
if(fscanf (lrs_ifp, "%ld", &Q->maxdepth)==EOF)
Q->maxdepth=1;
fprintf (lrs_ofp, "\n*%s %ld", name, Q->maxdepth);
}
if (strcmp (name, "maxoutput") == 0)
{
if(fscanf (lrs_ifp, "%ld", &Q->maxoutput)==EOF)
Q->maxoutput = 100;
fprintf (lrs_ofp, "\n*%s %ld", name, Q->maxoutput);
}
if (strcmp (name, "mindepth") == 0)
{
if( fscanf (lrs_ifp, "%ld", &Q->mindepth)==EOF)
Q->mindepth = 0;
fprintf (lrs_ofp, "\n*%s %ld", name, Q->mindepth);
}
if (strcmp (name, "truncate") == 0)
{
fprintf (lrs_ofp, "\n*%s", name);
if (!hull)
Q->truncate = TRUE;
else
fprintf (lrs_ofp, " - option for H-representation only, skipped");
}
if (strcmp (name, "verbose") == 0)
Q->verbose = TRUE;
if (strcmp (name, "bound") == 0)
{
readrat(Q->boundn,Q->boundd);
Q->bound = TRUE;
}
if (strcmp (name, "nonnegative") == 0)
{
fprintf (lrs_ofp, "\n*%s", name);
fprintf (lrs_ofp, " - option must come before begin line - skipped");
}
if (strcmp (name, "seed") == 0)
{
if(fscanf (lrs_ifp, "%ld", &Q->seed)==EOF)
Q->seed = 3142;
fprintf (lrs_ofp, "\n*seed= %ld ", Q->seed);
}
if (strcmp (name, "estimates") == 0)
{
if(fscanf (lrs_ifp, "%ld", &Q->runs)==EOF)
Q->runs=1;
fprintf (lrs_ofp, "\n*%ld %s", Q->runs, name);
}
if ((strcmp (name, "voronoi") == 0) || (strcmp (name, "Voronoi") == 0))
{
if (!hull)
fprintf (lrs_ofp, "\n*voronoi requires V-representation - option skipped");
else
{
Q->voronoi = TRUE;
Q->polytope = FALSE;
}
}
} /* end of while for reading flags */
if (Q->polytope)
Q->getvolume = TRUE; /* might as well get volume, it doesn't cost much */
if (Q->bound && Q->maximize)
prat("\n*Lower bound on objective function:",Q->boundn,Q->boundd);
if (Q->bound && Q->minimize)
prat("\n*Upper bound on objective function:",Q->boundn,Q->boundd);
/* Certain options are incompatible, this is fixed here */
if (Q->restart)
Q->getvolume = FALSE; /* otherwise incorrect volume reported */
if (Q->incidence)
{
Q->printcobasis = TRUE;
/* 2010.5.7 No need to reset this, as it may have been set by printcobasis */
/* Q->frequency = ZERO; */
}
if (Q->debug)
{
printA (P, Q);
fprintf (lrs_ofp, "\nexiting lrs_read_dic");
}
lrs_clear_mp(Temp); lrs_clear_mp(mpone);
lrs_clear_mp(Tempn); lrs_clear_mp(Tempd); lrs_clear_mp(mpten);
lrs_clear_mp_vector (oD,d);
return TRUE;
}
/********* end of lrs_read_dic ***************/
/* In lrs_getfirstbasis and lrs_getnextbasis we use D instead of P */
/* since the dictionary P may change, ie. &P in calling routine */
#define D (*D_p)
long
lrs_getfirstbasis (lrs_dic ** D_p, lrs_dat * Q, lrs_mp_matrix * Lin, long no_output)
/* gets first basis, FALSE if none */
/* P may get changed if lin. space Lin found */
/* no_output is TRUE supresses output headers */
{
lrs_mp scale, Temp;
long i, j, k;
/* assign local variables to structures */
lrs_mp_matrix A;
long *B, *C, *Row, *Col;
long *inequality;
long *linearity;
long hull = Q->hull;
long m, d, lastdv, nlinearity, nredundcol;
static long ocount=0;
lrs_alloc_mp(Temp); lrs_alloc_mp(scale);
if (Q->lponly)
no_output = TRUE;
m = D->m;
d = D->d;
lastdv = Q->lastdv;
nredundcol = 0L; /* will be set after getabasis */
nlinearity = Q->nlinearity; /* may be reset if new linearity read or in getabasis*/
linearity = Q->linearity;
A = D->A;
B = D->B;
C = D->C;
Row = D->Row;
Col = D->Col;
inequality = Q->inequality;
if (Q->nlinearity > 0 && Q->nonnegative)
{
fprintf (lrs_ofp, "\n*linearity and nonnegative options incompatible");
fprintf (lrs_ofp, " - all linearities are skipped");
fprintf (lrs_ofp, "\n*add nonnegative constraints explicitly and ");
fprintf (lrs_ofp, " remove nonnegative option");
}
if (Q->nlinearity && Q->voronoi)
fprintf (lrs_ofp, "\n*linearity and Voronoi options set - results unpredictable");
if (Q->lponly && !Q->maximize && !Q->minimize)
fprintf (lrs_ofp, "\n*LP has no objective function given - assuming all zero");
if (Q->runs > 0) /* arrays for estimator */
{
Q->isave = (long *) CALLOC ((unsigned) (m * d), sizeof (long));
Q->jsave = (long *) CALLOC ((unsigned) (m * d), sizeof (long));
}
/* default is to look for starting cobasis using linearies first, then */
/* filling in from last rows of input as necessary */
/* linearity array is assumed sorted here */
/* note if restart/given start inequality indices already in place */
/* from nlinearity..d-1 */
for (i = 0; i < nlinearity; i++) /* put linearities first in the order */
inequality[i] = linearity[i];
k = 0; /* index for linearity array */
if (Q->givenstart)
k = d;
else
k = nlinearity;
for (i = m; i >= 1; i--)
{
j = 0;
while (j < k && inequality[j] != i)
j++; /* see if i is in inequality */
if (j == k)
inequality[k++] = i;
}
if (Q->debug)
{
fprintf (lrs_ofp, "\n*Starting cobasis uses input row order");
for (i = 0; i < m; i++)
fprintf (lrs_ofp, " %ld", inequality[i]);
}
/* for voronoi convert to h-description using the transform */
/* a_0 .. a_d-1 -> (a_0^2 + ... a_d-1 ^2)-2a_0x_0-...-2a_d-1x_d-1 + x_d >= 0 */
/* note constant term is stored in column d, and column d-1 is all ones */
/* the other coefficients are multiplied by -2 and shifted one to the right */
if (Q->debug)
printA (D, Q);
if (Q->voronoi)
{
Q->hull = FALSE;
hull = FALSE;
for (i = 1; i <= m; i++)
{
if (zero (A[i][1]))
{
fprintf (lrs_ofp, "\nWith voronoi option column one must be all one");
return (FALSE);
}
copy (scale, A[i][1]); /*adjust for scaling to integers of rationals */
itomp (ZERO, A[i][0]);
for (j = 2; j <= d; j++) /* transform each input row */
{
copy (Temp, A[i][j]);
mulint (A[i][j], Temp, Temp);
linint (A[i][0], ONE, Temp, ONE);
linint (A[i][j - 1], ZERO, A[i][j], -TWO);
mulint (scale, A[i][j - 1], A[i][j - 1]);
} /* end of for (j=1;..) */
copy (A[i][d], scale);
mulint (scale, A[i][d], A[i][d]);
} /* end of for (i=1;..) */
if (Q->debug)
printA (D, Q);
} /* end of if(voronoi) */
if (!Q->maximize && !Q->minimize)
for (j = 0; j <= d; j++)
itomp (ZERO, A[0][j]);
/* Now we pivot to standard form, and then find a primal feasible basis */
/* Note these steps MUST be done, even if restarting, in order to get */
/* the same index/inequality correspondance we had for the original prob. */
/* The inequality array is used to give the insertion order */
/* and is defaulted to the last d rows when givenstart=FALSE */
if(Q->nonnegative)
{
/* no need for initial pivots here, labelling already done */
Q->lastdv = d;
Q->nredundcol = 0;
}
else
{
if (!getabasis (D, Q, inequality))
return FALSE;
/* bug fix 2009.12.2 */
nlinearity=Q->nlinearity; /*may have been reset if some lins are redundant*/
}
if(Q->debug)
{
fprintf(lrs_ofp,"\nafter getabasis");
printA(D, Q);
}
nredundcol = Q->nredundcol;
lastdv = Q->lastdv;
d = D->d;
/********************************************************************/
/* now we start printing the output file unless no output requested */
/********************************************************************/
if (!no_output || Q->debug)
{
if (Q->voronoi)
fprintf (lrs_ofp, "\n*Voronoi Diagram: Voronoi vertices and rays are output");
if (hull)
fprintf (lrs_ofp, "\nH-representation");
else
fprintf (lrs_ofp, "\nV-representation");
/* Print linearity space */
/* Don't print linearity if first column zero in hull computation */
if (hull && Q->homogeneous)
k = 1; /* 0 normally, 1 for homogeneous case */
else
k = 0;
if (nredundcol > k)
{
fprintf (lrs_ofp, "\nlinearity %ld ", nredundcol - k); /*adjust nredundcol for homog. */
for (i = 1; i <= nredundcol - k; i++)
fprintf (lrs_ofp, " %ld", i);
} /* end print of linearity space */
fprintf (lrs_ofp, "\nbegin");
fprintf (lrs_ofp, "\n***** %ld rational", Q->n);
} /* end of if !no_output ....... */
/* Reset up the inequality array to remember which index is which input inequality */
/* inequality[B[i]-lastdv] is row number of the inequality with index B[i] */
/* inequality[C[i]-lastdv] is row number of the inequality with index C[i] */
for (i = 1; i <= m; i++)
inequality[i] = i;
if (nlinearity > 0) /* some cobasic indices will be removed */
{
for (i = 0; i < nlinearity; i++) /* remove input linearity indices */
inequality[linearity[i]] = 0;
k = 1; /* counter for linearities */
for (i = 1; i <= m - nlinearity; i++)
{
while (k <= m && inequality[k] == 0)
k++; /* skip zeroes in corr. to linearity */
inequality[i] = inequality[k++];
}
} /* end if linearity */
if (Q->debug)
{
fprintf (lrs_ofp, "\ninequality array initialization:");
for (i = 1; i <= m - nlinearity; i++)
fprintf (lrs_ofp, " %ld", inequality[i]);
}
if (nredundcol > 0)
{
*Lin = lrs_alloc_mp_matrix (nredundcol, Q->n);
for (i = 0; i < nredundcol; i++)
{
if (!(Q->homogeneous && Q->hull && i == 0)) /* skip redund col 1 for homog. hull */
{
lrs_getray (D, Q, Col[0], D->C[0] + i - hull, (*Lin)[i]); /* adjust index for deletions */
}
if (!removecobasicindex (D, Q, 0L))
return FALSE;
}
} /* end if nredundcol > 0 */
if (Q->lponly || Q->nash )
if (Q->verbose)
{
fprintf (lrs_ofp, "\nNumber of pivots for starting dictionary: %ld",Q->count[3]);
ocount=Q->count[3];
if(Q->lponly)
printA (D, Q);
}
/* Do dual pivots to get primal feasibility */
if (!primalfeasible (D, Q))
{
#ifndef LRS_QUIET
fprintf (lrs_ofp, "\nNo feasible solution");
#endif
if (Q->nash && Q->verbose )
{
fprintf (lrs_ofp, "\nNumber of pivots for feasible solution: %ld",Q->count[3]);
fprintf (lrs_ofp, " - No feasible solution");
ocount=Q->count[3];
}
return FALSE;
}
if (Q->lponly || Q->nash )
if (Q->verbose)
{
fprintf (lrs_ofp, "\nNumber of pivots for feasible solution: %ld",Q->count[3]);
ocount=Q->count[3];
if(Q->lponly)
printA (D, Q);
}
/* Now solve LP if objective function was given */
if (Q->maximize || Q->minimize)
{
Q->unbounded = !lrs_solvelp (D, Q, Q->maximize);
if (Q->lponly)
{
if (Q->verbose)
{
fprintf (lrs_ofp, "\nNumber of pivots for optimum solution: %ld",Q->count[3]);
printA (D, Q);
ocount=Q->count[3];
}
lrs_clear_mp(Temp); lrs_clear_mp(scale);
return TRUE;
}
else /* check to see if objective is dual degenerate */
{
j = 1;
while (j <= d && !zero (A[0][j]))
j++;
if (j <= d)
Q->dualdeg = TRUE;
}
}
else
/* re-initialize cost row to -det */
{
for (j = 1; j <= d; j++)
{
copy (A[0][j], D->det);
storesign (A[0][j], NEG);
}
itomp (ZERO, A[0][0]); /* zero optimum objective value */
}
/* reindex basis to 0..m if necessary */
/* we use the fact that cobases are sorted by index value */
if (Q->debug)
printA (D, Q);
while (C[0] <= m)
{
i = C[0];
j = inequality[B[i] - lastdv];
inequality[B[i] - lastdv] = inequality[C[0] - lastdv];
inequality[C[0] - lastdv] = j;
C[0] = B[i];
B[i] = i;
reorder1 (C, Col, ZERO, d);
}
if (Q->debug)
{
fprintf (lrs_ofp, "\n*Inequality numbers for indices %ld .. %ld : ", lastdv + 1, m + d);
for (i = 1; i <= m - nlinearity; i++)
fprintf (lrs_ofp, " %ld ", inequality[i]);
printA (D, Q);
}
if (Q->restart)
{
if (Q->debug)
fprintf (lrs_ofp, "\nPivoting to restart co-basis");
if (!restartpivots (D, Q))
return FALSE;
D->lexflag = lexmin (D, Q, ZERO); /* see if lexmin basis */
if (Q->debug)
printA (D, Q);
}
/* Check to see if necessary to resize */
if (Q->inputd > D->d)
*D_p = resize (D, Q);
lrs_clear_mp(Temp); lrs_clear_mp(scale);
return TRUE;
}
/********* end of lrs_getfirstbasis ***************/
/*****************************************/
/* getnextbasis in reverse search order */
/*****************************************/
long
lrs_getnextbasis (lrs_dic ** D_p, lrs_dat * Q, long backtrack)
/* gets next reverse search tree basis, FALSE if none */
/* switches to estimator if maxdepth set */
/* backtrack TRUE means backtrack from here */
{
/* assign local variables to structures */
long i = 0L, j = 0L;
long m = D->m;
long d = D->d;
if (backtrack && D->depth == 0)
return FALSE; /* cannot backtrack from root */
if (Q->maxoutput > 0 && Q->count[0]+Q->count[1]-Q->hull >= Q->maxoutput)
return FALSE; /* output limit reached */
while ((j < d) || (D->B[m] != m)) /*main while loop for getnextbasis */
{
if (D->depth >= Q->maxdepth)
{
backtrack = TRUE;
if (Q->runs > 0) /*get an estimate of remaining tree */
lrs_estimate (D, Q);
if (Q->maxdepth == 0) /* estimate only */
return FALSE; /* no nextbasis */
}
/* if ( Q->truncate && negative(D->A[0][0]))*/ /* truncate when moving from opt. vertex */
/* backtrack = TRUE; 2011.7.14 */
if (backtrack) /* go back to prev. dictionary, restore i,j */
{
backtrack = FALSE;
if (check_cache (D_p, Q, &i, &j))
{
if (Q->debug)
fprintf (lrs_ofp, "\n Cached Dict. restored to depth %ld\n", D->depth);
}
else
{
D->depth--;
selectpivot (D, Q, &i, &j);
pivot (D, Q, i, j);
update (D, Q, &i, &j); /*Update B,C,i,j */
}
if (Q->debug)
{
fprintf (lrs_ofp, "\n Backtrack Pivot: indices i=%ld j=%ld depth=%ld", i, j, D->depth);
printA (D, Q);
};
j++; /* go to next column */
} /* end of if backtrack */
if (D->depth < Q->mindepth)
break;
/* try to go down tree */
/* 2011.7.14 patch */
while ((j < d) && (!reverse (D, Q, &i, j) || (Q->truncate && Q->minratio[D->m]==1)))
j++;
if (j == d )
backtrack = TRUE;
else
/*reverse pivot found */
{
cache_dict (D_p, Q, i, j);
/* Note that the next two lines must come _after_ the
call to cache_dict */
D->depth++;
if (D->depth > Q->deepest)
Q->deepest++;
pivot (D, Q, i, j);
update (D, Q, &i, &j); /*Update B,C,i,j */
D->lexflag = lexmin (D, Q, ZERO); /* see if lexmin basis */
Q->count[2]++;
Q->totalnodes++;
save_basis (*D_p, Q);
if (Q->strace == Q->count[2])
Q->debug = TRUE;
if (Q->etrace == Q->count[2])
Q->debug = FALSE;
return TRUE; /*return new dictionary */
}
} /* end of main while loop for getnextbasis */
return FALSE; /* done, no more bases */
} /*end of lrs_getnextbasis */
/*************************************/
/* print out one line of output file */
/*************************************/
long
lrs_getvertex (lrs_dic * P, lrs_dat * Q, lrs_mp_vector output)
/*Print out current vertex if it is lexmin and return it in output */
/* return FALSE if no output generated */
{
lrs_mp_matrix A = P->A;
long i;
long ind; /* output index */
long ired; /* counts number of redundant columns */
/* assign local variables to structures */
long *redundcol = Q->redundcol;
long *count = Q->count;
long *B = P->B;
long *Row = P->Row;
long lastdv = Q->lastdv;
long hull;
long m, d;
long lexflag;
hull = Q->hull;
m = P->m;
d = P->d;
lexflag = P->lexflag;
if (lexflag || Q->allbases)
++(Q->count[1]);
if (Q->debug)
printA (P, Q);
linint (Q->sumdet, 1, P->det, 1);
if (Q->getvolume)
{
updatevolume (P, Q);
if(Q->verbose) /* this will print out a triangulation */
lrs_printcobasis(P,Q,ZERO);
}
/*print cobasis if printcobasis=TRUE and count[2] a multiple of frequency */
/* or for lexmin basis, except origin for hull computation - ugly! */
if (Q->printcobasis)
if ((lexflag && !hull) || ((Q->frequency > 0) && (count[2] == (count[2] / Q->frequency) * Q->frequency)))
lrs_printcobasis (P, Q, ZERO);
if (hull)
return FALSE; /* skip printing the origin */
if (!lexflag && !Q->allbases && !Q->lponly) /* not lexmin, and not printing forced */
return FALSE;
/* copy column 0 to output */
i = 1;
ired = 0;
copy (output[0], P->det);
for (ind = 1; ind < Q->n; ind++) /* extract solution */
if ((ired < Q->nredundcol) && (redundcol[ired] == ind))
/* column was deleted as redundant */
{
itomp (ZERO, output[ind]);
ired++;
}
else
/* column not deleted as redundant */
{
getnextoutput (P, Q, i, ZERO, output[ind]);
i++;
}
reducearray (output, Q->n);
if (lexflag && one(output[0]))
++Q->count[4]; /* integer vertex */
/* uncomment to print nonzero basic variables
printf("\n nonzero basis: vars");
for(i=1;i<=lastdv; i++)
{
if ( !zero(A[Row[i]][0]) )
printf(" %ld ",B[i]);
}
*/
/* printslack inequality indices */
if (Q->printslack)
{
fprintf(lrs_ofp,"\nslack ineq:");
for(i=lastdv+1;i<=P->m; i++)
{
if (!zero(A[Row[i]][0]))
fprintf(lrs_ofp," %ld ", Q->inequality[B[i]-lastdv]);
}
}
return TRUE;
} /* end of lrs_getvertex */
long
lrs_getray (lrs_dic * P, lrs_dat * Q, long col, long redcol, lrs_mp_vector output)
/*Print out solution in col and return it in output */
/*redcol =n for ray/facet 0..n-1 for linearity column */
/*hull=1 implies facets will be recovered */
/* return FALSE if no output generated in column col */
{
long i;
long ind; /* output index */
long ired; /* counts number of redundant columns */
/* assign local variables to structures */
long *redundcol = Q->redundcol;
long *count = Q->count;
long hull = Q->hull;
long n = Q->n;
long *B = P->B;
long *Row = P->Row;
long lastdv = Q->lastdv;
if (Q->debug)
{
printA (P, Q);
for (i = 0; i < Q->nredundcol; i++)
fprintf (lrs_ofp, " %ld", redundcol[i]);
fflush(lrs_ofp);
}
if (redcol == n)
{
++count[0];
if (Q->printcobasis)
lrs_printcobasis (P, Q, col);
}
i = 1;
ired = 0;
for (ind = 0; ind < n; ind++) /* print solution */
{
if (ind == 0 && !hull) /* must have a ray, set first column to zero */
itomp (ZERO, output[0]);
else if ((ired < Q->nredundcol) && (redundcol[ired] == ind))
/* column was deleted as redundant */
{
if (redcol == ind) /* true for linearity on this cobasic index */
/* we print reduced determinant instead of zero */
copy (output[ind], P->det);
else
itomp (ZERO, output[ind]);
ired++;
}
else
/* column not deleted as redundant */
{
getnextoutput (P, Q, i, col, output[ind]);
i++;
}
}
reducearray (output, n);
/* printslack for rays: 2006.10.10 */
/* printslack inequality indices */
if (Q->printslack)
{
fprintf(lrs_ofp,"\nslack ineq:");
for(i=lastdv+1;i<=P->m; i++)
{
if (!zero(P->A[Row[i]][col]))
fprintf(lrs_ofp," %ld ", Q->inequality[B[i]-lastdv]);
}
}
return TRUE;
} /* end of lrs_getray */
void
getnextoutput (lrs_dic * P, lrs_dat * Q, long i, long col, lrs_mp out)
/* get A[B[i][col] and copy to out */
{
long row;
long m = P->m;
long d = P->d;
long lastdv = Q->lastdv;
lrs_mp_matrix A = P->A;
long *B = P->B;
long *Row = P->Row;
long j;
if (i == d && Q->voronoi)
return; /* skip last column if voronoi set */
row = Row[i];
if (Q->nonnegative) /* if m+i basic get correct value from dictionary */
/* the slack for the inequality m-d+i contains decision */
/* variable x_i. We first see if this is in the basis */
/* otherwise the value of x_i is zero, except for a ray */
/* when it is one (det/det) for the actual column it is in */
{
for (j = lastdv+ 1; j <= m; j++)
{
if ( Q->inequality[B[j]-lastdv] == m-d+i )
{
copy (out, A[Row[j]][col]);
return;
}
}
/* did not find inequality m-d+i in basis */
if ( i == col )
copy(out,P->det);
else
itomp(ZERO,out);
}
else
copy (out, A[row][col]);
} /* end of getnextoutput */
void
lrs_printcobasis (lrs_dic * P, lrs_dat * Q, long col)
/* col is output column being printed */
{
long i;
long rflag; /* used to find inequality number for ray column */
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
lrs_mp Nvol, Dvol; /* hold rescaled det of current basis */
long *B = P->B;
long *C = P->C;
long *Col = P->Col;
long *Row = P->Row;
long *inequality = Q->inequality;
long *temparray = Q->temparray;
long *count = Q->count;
long hull = Q->hull;
long d = P->d;
long lastdv = Q->lastdv;
long m=P->m;
long firstime=TRUE;
long nincidence; /* count number of tight inequalities */
lrs_alloc_mp(Nvol); lrs_alloc_mp(Dvol);
if (hull)
fprintf (lrs_ofp, "\nF#%ld B#%ld h=%ld vertices/rays ", count[0], count[2], P->depth);
else if (Q->voronoi)
fprintf (lrs_ofp, "\nV#%ld R#%ld B#%ld h=%ld data points ", count[1], count[0], count[2], P->depth);
else
fprintf (lrs_ofp, "\nV#%ld R#%ld B#%ld h=%ld facets ", count[1], count[0], count[2], P->depth);
rflag = (-1);
for (i = 0; i < d; i++)
{
temparray[i] = inequality[C[i] - lastdv];
if (Col[i] == col)
rflag = temparray[i]; /* look for ray index */
}
for (i = 0; i < d; i++)
reorder (temparray, d);
for (i = 0; i < d; i++)
{
fprintf (lrs_ofp, " %ld", temparray[i]);
if (!(col == ZERO) && (rflag == temparray[i])) /* missing cobasis element for ray */
fprintf (lrs_ofp, "*");
}
/* get and print incidence information */
if ( col == 0 )
nincidence = d;
else
nincidence = d-1;
for(i=lastdv+1;i<=m;i++)
if ( zero (A[Row[i]][0] ))
if( ( col == ZERO ) || zero (A[Row[i]] [col]) )
{
nincidence++;
if( Q->incidence )
{
if (firstime)
{
fprintf (lrs_ofp," :");
firstime = FALSE;
}
fprintf(lrs_ofp," %ld",inequality[B[i] - lastdv ] );
}
}
fprintf(lrs_ofp," I#%ld",nincidence);
pmp (" det=", P->det);
fflush (lrs_ofp);
rescaledet (P, Q, Nvol, Dvol); /* scales determinant in case input rational */
prat(" in_det=",Nvol,Dvol);
lrs_clear_mp(Nvol); lrs_clear_mp(Dvol);
} /* end of lrs_printcobasis */
/*********************/
/* print final totals */
/*********************/
void
lrs_printtotals (lrs_dic * P, lrs_dat * Q)
{
long i;
double x;
/* local assignments */
double *cest = Q->cest;
long *count = Q->count;
long *inequality = Q->inequality;
long *linearity = Q->linearity;
long *temparray = Q->temparray;
long *C = P->C;
long hull = Q->hull;
long homogeneous = Q->homogeneous;
long nlinearity = Q->nlinearity;
long nredundcol = Q->nredundcol;
long m, d, lastdv;
m = P->m;
d = P->d;
lastdv = Q->lastdv;
fprintf (lrs_ofp, "\nend");
if (Q->dualdeg)
{
fprintf (lrs_ofp, "\n*Warning: Starting dictionary is dual degenerate");
fprintf (lrs_ofp, "\n*Complete enumeration may not have been produced");
if (Q->maximize)
fprintf(lrs_ofp,"\n*Recommendation: Add dualperturb option before maximize in input file\n");
else
fprintf(lrs_ofp,"\n*Recommendation: Add dualperturb option before minimize in input file\n");
}
if (Q->unbounded)
{
fprintf (lrs_ofp, "\n*Warning: Starting dictionary contains rays");
fprintf (lrs_ofp, "\n*Complete enumeration may not have been produced");
if (Q->maximize)
fprintf(lrs_ofp,"\n*Recommendation: Change or remove maximize option or add bounds\n");
else
fprintf(lrs_ofp,"\n*Recommendation: Change or remove minimize option or add bounds\n");
}
if (Q->truncate)
fprintf(lrs_ofp,"\n*Tree truncated at each new vertex");
if (Q->maxdepth < MAXD)
fprintf (lrs_ofp, "\n*Tree truncated at depth %ld", Q->maxdepth);
if (Q->maxoutput > 0L)
fprintf (lrs_ofp, "\n*Maximum number of output lines = %ld", Q->maxoutput);
#ifdef LONG
fprintf (lrs_ofp, "\n*Caution: no overflow checking with long integer arithemtic");
#else
if( Q->verbose)
{
fprintf (lrs_ofp, "\n*Sum of det(B)=");
pmp ("", Q->sumdet);
}
#endif
/* next block with volume rescaling must come before estimates are printed */
if (Q->getvolume)
{
rescalevolume (P, Q, Q->Nvolume, Q->Dvolume);
if (Q->polytope)
prat ("\n*Volume=", Q->Nvolume, Q->Dvolume);
else
prat ("\n*Pseudovolume=", Q->Nvolume, Q->Dvolume);
}
if (hull) /* output things that are specific to hull computation */
{
fprintf (lrs_ofp, "\n*Totals: facets=%ld bases=%ld", count[0], count[2]);
if (nredundcol > homogeneous) /* don't count column 1 as redundant if homogeneous */
{
fprintf (lrs_ofp, " linearities=%ld", nredundcol - homogeneous);
fprintf (lrs_ofp, " facets+linearities=%ld",nredundcol-homogeneous+count[0]);
}
if ((cest[2] > 0) || (cest[0] > 0))
{
fprintf (lrs_ofp, "\n*Estimates: facets=%.0f bases=%.0f", count[0] + cest[0], count[2] + cest[2]);
if (Q->getvolume)
{
rattodouble (Q->Nvolume, Q->Dvolume, &x);
for (i = 2; i < d; i++)
cest[3] = cest[3] / i; /*adjust for dimension */
fprintf (lrs_ofp, " volume=%g", cest[3] + x);
}
fprintf (lrs_ofp, "\n*Total number of tree nodes evaluated: %ld", Q->totalnodes);
#ifdef TIMES
fprintf (lrs_ofp, "\n*Estimated total running time=%.1f secs ",(count[2]+cest[2])/Q->totalnodes*get_time () );
#endif
}
/* Should not happen since we homogenize */
/*
if ( Q-> restart || Q->allbases || (count[0] > 1 && !Q->homogeneous && !Q->polytope))
fprintf (lrs_ofp, "\n*Note! Duplicate facets may be present");
*/
}
else /* output things specific to vertex/ray computation */
{
fprintf (lrs_ofp, "\n*Totals: vertices=%ld rays=%ld bases=%ld", count[1], count[0], count[2]);
fprintf (lrs_ofp, " integer_vertices=%ld ",count[4]);
if (nredundcol > 0)
fprintf (lrs_ofp, " linearities=%ld", nredundcol);
if ( count[0] + nredundcol > 0 )
{
fprintf (lrs_ofp, " vertices+rays");
if ( nredundcol > 0 )
fprintf (lrs_ofp, "+linearities");
fprintf (lrs_ofp, "=%ld",nredundcol+count[0]+count[1]);
}
if ((cest[2] > 0) || (cest[0] > 0))
{
fprintf (lrs_ofp, "\n*Estimates: vertices=%.0f rays=%.0f", count[1]+cest[1], count[0]+cest[0]);
fprintf (lrs_ofp, " bases=%.0f integer_vertices=%.0f ",count[2]+cest[2], count[4]+cest[4]);
if (Q->getvolume)
{
rattodouble (Q->Nvolume, Q->Dvolume, &x);
for (i = 2; i <= d-homogeneous; i++)
cest[3] = cest[3] / i; /*adjust for dimension */
fprintf (lrs_ofp, " pseudovolume=%g", cest[3] + x);
}
fprintf (lrs_ofp, "\n*Total number of tree nodes evaluated: %ld", Q->totalnodes);
#ifdef TIMES
fprintf (lrs_ofp, "\n*Estimated total running time=%.1f secs ",(count[2]+cest[2])/Q->totalnodes*get_time () );
#endif
}
if (Q->restart || Q->allbases) /* print warning */
fprintf (lrs_ofp, "\n*Note! Duplicate vertices/rays may be present");
else if ( (count[0] > 1 && !Q->homogeneous))
fprintf (lrs_ofp, "\n*Note! Duplicate rays may be present");
} /* end of output for vertices/rays */
if(!Q->verbose)
return;
fprintf (lrs_ofp, "\n*Input size m=%ld rows n=%ld columns", P->m, Q->n);
if (hull)
fprintf (lrs_ofp, " working dimension=%ld", d - 1 + homogeneous);
else
fprintf (lrs_ofp, " working dimension=%ld", d);
fprintf (lrs_ofp, "\n*Starting cobasis defined by input rows");
for (i = 0; i < nlinearity; i++)
temparray[i] = linearity[i];
for (i = nlinearity; i < lastdv; i++)
temparray[i] = inequality[C[i - nlinearity] - lastdv];
for (i = 0; i < lastdv; i++)
reorder (temparray, lastdv);
for (i = 0; i < lastdv; i++)
fprintf (lrs_ofp, " %ld", temparray[i]);
fprintf (lrs_ofp, "\n*Dictionary Cache: max size= %ld misses= %ld/%ld Tree Depth= %ld", dict_count, cache_misses, cache_tries, Q->deepest);
} /* end of lrs_printtotals */
/************************/
/* Estimation function */
/************************/
void
lrs_estimate (lrs_dic * P, lrs_dat * Q)
/*get estimate of tree size from current node */
/*current node is not counted. */
/*cest[0]rays [1]vertices [2]bases [3]volume */
/* [4] integer vertices */
{
lrs_mp_vector output; /* holds one line of output; ray,vertex,facet,linearity */
lrs_mp Nvol, Dvol; /* hold volume of current basis */
long estdepth = 0; /* depth of basis/vertex in subtree for estimate */
long i = 0, j = 0, k, nchild, runcount, col;
double prod = 0.0;
double cave[] =
{0.0, 0.0, 0.0, 0.0, 0.0};
double nvertices, nbases, nrays, nvol, nivertices;
long rays = 0;
double newvol = 0.0;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *isave = Q->isave;
long *jsave = Q->jsave;
double *cest = Q->cest;
long d = P->d;
lrs_alloc_mp(Nvol); lrs_alloc_mp(Dvol);
/* Main Loop of Estimator */
output = lrs_alloc_mp_vector (Q->n); /* output holds one line of output from dictionary */
for (runcount = 1; runcount <= Q->runs; runcount++)
{ /* runcount counts number of random probes */
j = 0;
nchild = 1;
prod = 1;
nvertices = 0.0;
nbases = 0.0;
nrays = 0.0;
nvol = 0.0;
nivertices =0.0;
while (nchild != 0) /* while not finished yet */
{
nchild = 0;
while (j < d)
{
if (reverse (P, Q, &i, j))
{
isave[nchild] = i;
jsave[nchild] = j;
nchild++;
}
j++;
}
if (estdepth == 0 && nchild == 0)
{
cest[0] = cest[0] + rays; /* may be some rays here */
lrs_clear_mp(Nvol); lrs_clear_mp(Dvol);
return; /*subtree is a leaf */
}
prod = prod * nchild;
nbases = nbases + prod;
if (Q->debug)
{
fprintf (lrs_ofp, " degree= %ld ", nchild);
fprintf (lrs_ofp, "\nPossible reverse pivots: i,j=");
for (k = 0; k < nchild; k++)
fprintf (lrs_ofp, "%ld,%ld ", isave[k], jsave[k]);
}
if (nchild > 0) /*reverse pivot found choose random child */
{
k = myrandom (Q->seed, nchild);
Q->seed = myrandom (Q->seed, 977L);
i = isave[k];
j = jsave[k];
if (Q->debug)
fprintf (lrs_ofp, " selected pivot k=%ld seed=%ld ", k, Q->seed);
estdepth++;
Q->totalnodes++; /* calculate total number of nodes evaluated */
pivot (P, Q, i, j);
update (P, Q, &i, &j); /*Update B,C,i,j */
if (lexmin (P, Q, ZERO)) /* see if lexmin basis for vertex */
{
nvertices = nvertices + prod;
/* integer vertex estimate */
if( lrs_getvertex(P,Q,output))
{ --Q->count[1];
if (one(output[0] ))
{ --Q->count[4];
nivertices = nivertices + prod;
}
}
}
rays = 0;
for (col = 1; col <= d; col++)
if (negative (A[0][col]) && (ratio (P, Q, col) == 0) && lexmin (P, Q, col))
rays++;
nrays = nrays + prod * rays; /* update ray info */
if (Q->getvolume)
{
rescaledet (P, Q, Nvol, Dvol); /* scales determinant in case input rational */
rattodouble (Nvol, Dvol, &newvol);
nvol = nvol + newvol * prod; /* adjusts volume for degree */
}
j = 0;
}
}
cave[0] = cave[0] + nrays;
cave[1] = cave[1] + nvertices;
cave[2] = cave[2] + nbases;
cave[3] = cave[3] + nvol;
cave[4] = cave[4] + nivertices;
/* backtrack to root and do it again */
while (estdepth > 0)
{
estdepth = estdepth - 1;
selectpivot (P, Q, &i, &j);
pivot (P, Q, i, j);
update (P, Q, &i, &j); /*Update B,C,i,j */
/*fprintf(lrs_ofp,"\n0 +++"); */
if (Q->debug)
{
fprintf (lrs_ofp, "\n Backtrack Pivot: indices i,j %ld %ld ", i, j);
printA (P, Q);
}
j++;
}
} /* end of for loop on runcount */
for (i = 0; i < 5; i++)
cest[i] = cave[i] / Q->runs + cest[i];
lrs_clear_mp(Nvol); lrs_clear_mp(Dvol);
lrs_clear_mp_vector(output, Q->n);
} /* end of lrs_estimate */
/*********************************/
/* Internal functions */
/*********************************/
/* Basic Dictionary functions */
/******************************* */
long
reverse (lrs_dic * P, lrs_dat * Q, long *r, long s)
/* find reverse indices */
/* TRUE if B[*r] C[s] is a reverse lexicographic pivot */
{
long i, j, enter, row, col;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *B = P->B;
long *C = P->C;
long *Row = P->Row;
long *Col = P->Col;
long d = P->d;
enter = C[s];
col = Col[s];
if (Q->debug)
{
fprintf (lrs_ofp, "\n+reverse: col index %ld C %ld Col %ld ", s, enter, col);
fflush (lrs_ofp);
}
if (!negative (A[0][col]))
{
if (Q->debug)
fprintf (lrs_ofp, " Pos/Zero Cost Coeff");
Q->minratio[P->m]=0; /* 2011.7.14 */
return (FALSE);
}
*r = ratio (P, Q, col);
if (*r == 0) /* we have a ray */
{
if (Q->debug)
fprintf (lrs_ofp, " Pivot col non-negative: ray found");
Q->minratio[P->m]=0; /* 2011.7.14 */
return (FALSE);
}
row = Row[*r];
/* check cost row after "pivot" for smaller leaving index */
/* ie. j s.t. A[0][j]*A[row][col] < A[0][col]*A[row][j] */
/* note both A[row][col] and A[0][col] are negative */
for (i = 0; i < d && C[i] < B[*r]; i++)
if (i != s)
{
j = Col[i];
if (positive (A[0][j]) || negative (A[row][j])) /*or else sign test fails trivially */
if ((!negative (A[0][j]) && !positive (A[row][j])) ||
comprod (A[0][j], A[row][col], A[0][col], A[row][j]) == -1)
{ /*+ve cost found */
if (Q->debug)
{
fprintf (lrs_ofp, "\nPositive cost found: index %ld C %ld Col %ld", i, C[i], j);
fflush(lrs_ofp);
}
Q->minratio[P->m]=0; /* 2011.7.14 */
return (FALSE);
}
}
if (Q->debug)
{
fprintf (lrs_ofp, "\n+end of reverse : indices r %ld s %ld \n", *r, s);
fflush (stdout);
}
return (TRUE);
} /* end of reverse */
long
selectpivot (lrs_dic * P, lrs_dat * Q, long *r, long *s)
/* select pivot indices using lexicographic rule */
/* returns TRUE if pivot found else FALSE */
/* pivot variables are B[*r] C[*s] in locations Row[*r] Col[*s] */
{
long j, col;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *Col = P->Col;
long d = P->d;
*r = 0;
*s = d;
j = 0;
/*find positive cost coef */
while ((j < d) && (!positive (A[0][Col[j]])))
j++;
if (j < d) /* pivot column found! */
{
*s = j;
col = Col[j];
/*find min index ratio */
*r = ratio (P, Q, col);
if (*r != 0)
return (TRUE); /* unbounded */
}
return (FALSE);
} /* end of selectpivot */
/******************************************************* */
void
pivot (lrs_dic * P, lrs_dat * Q, long bas, long cob)
/* Qpivot routine for array A */
/* indices bas, cob are for Basis B and CoBasis C */
/* corresponding to row Row[bas] and column */
/* Col[cob] respectively */
{
long r, s;
long i, j;
lrs_mp Ns, Nt, Ars;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *B = P->B;
long *C = P->C;
long *Row = P->Row;
long *Col = P->Col;
long m, d, m_A;
lrs_alloc_mp(Ns); lrs_alloc_mp(Nt); lrs_alloc_mp(Ars);
m = P->m;
d = P->d;
m_A = P->m_A;
Q->count[3]++; /* count the pivot */
r = Row[bas];
s = Col[cob];
/* Ars=A[r][s] */
if (Q->debug)
{
fprintf (lrs_ofp, "\n pivot B[%ld]=%ld C[%ld]=%ld ", bas, B[bas], cob, C[cob]);
printA(P,Q);
fflush (stdout);
}
copy (Ars, A[r][s]);
storesign (P->det, sign (Ars)); /*adjust determinant to new sign */
for (i = 0; i <= m_A; i++)
if (i != r)
for (j = 0; j <= d; j++)
if (j != s)
{
/* A[i][j]=(A[i][j]*Ars-A[i][s]*A[r][j])/P->det; */
mulint (A[i][j], Ars, Nt);
mulint (A[i][s], A[r][j], Ns);
decint (Nt, Ns);
exactdivint (Nt, P->det, A[i][j]);
} /* end if j .... */
if (sign (Ars) == POS)
{
for (j = 0; j <= d; j++) /* no need to change sign if Ars neg */
/* A[r][j]=-A[r][j]; */
if (!zero (A[r][j]))
changesign (A[r][j]);
} /* watch out for above "if" when removing this "}" ! */
else
for (i = 0; i <= m_A; i++)
if (!zero (A[i][s]))
changesign (A[i][s]);
/* A[r][s]=P->det; */
copy (A[r][s], P->det); /* restore old determinant */
copy (P->det, Ars);
storesign (P->det, POS); /* always keep positive determinant */
if (Q->debug)
{
fprintf (lrs_ofp, " depth=%ld ", P->depth);
pmp ("det=", P->det);
fflush(stdout);
}
/* set the new rescaled objective function value */
mulint (P->det, Q->Lcm[0], P->objden);
mulint (Q->Gcd[0], A[0][0], P->objnum);
if (!Q->maximize)
changesign (P->objnum);
if (zero (P->objnum))
storesign (P->objnum, POS);
else
reduce (P->objnum,P->objden);
lrs_clear_mp(Ns); lrs_clear_mp(Nt); lrs_clear_mp(Ars);
} /* end of pivot */
long
primalfeasible (lrs_dic * P, lrs_dat * Q)
/* Do dual pivots to get primal feasibility */
/* Note that cost row is all zero, so no ratio test needed for Dual Bland's rule */
{
long primalinfeasible = TRUE;
long i, j;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *Row = P->Row;
long *Col = P->Col;
long m, d, lastdv;
m = P->m;
d = P->d;
lastdv = Q->lastdv;
/*temporary: try to get new start after linearity */
while (primalinfeasible)
{
i=lastdv+1;
while (i <= m && !negative (A[Row[i]][0]) )
i++;
if (i <= m )
{
j = 0; /*find a positive entry for in row */
while (j < d && !positive (A[Row[i]][Col[j]]))
j++;
if (j >= d)
return (FALSE); /* no positive entry */
pivot (P, Q, i, j);
update (P, Q, &i, &j);
}
else
primalinfeasible = FALSE;
} /* end of while primalinfeasibile */
return (TRUE);
} /* end of primalfeasible */
long
lrs_solvelp (lrs_dic * P, lrs_dat * Q, long maximize)
/* Solve primal feasible lp by Dantzig`s rule and lexicographic ratio test */
/* return TRUE if bounded, FALSE if unbounded */
{
long i, j;
/* assign local variables to structures */
long d = P->d;
while (dan_selectpivot (P, Q, &i, &j))
{
Q->count[3]++;
pivot (P, Q, i, j);
update (P, Q, &i, &j); /*Update B,C,i,j */
}
if (Q->debug)
printA (P, Q);
if (j < d && i == 0) /* selectpivot gives information on unbounded solution */
{
#ifndef LRS_QUIET
if (Q->lponly)
fprintf (lrs_ofp, "\n*Unbounded solution");
#endif
return FALSE;
}
return TRUE;
} /* end of lrs_solvelp */
long
getabasis (lrs_dic * P, lrs_dat * Q, long order[])
/* Pivot Ax<=b to standard form */
/*Try to find a starting basis by pivoting in the variables x[1]..x[d] */
/*If there are any input linearities, these appear first in order[] */
/* Steps: (a) Try to pivot out basic variables using order */
/* Stop if some linearity cannot be made to leave basis */
/* (b) Permanently remove the cobasic indices of linearities */
/* (c) If some decision variable cobasic, it is a linearity, */
/* and will be removed. */
{
long i, j, k;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *B = P->B;
long *C = P->C;
long *Row = P->Row;
long *Col = P->Col;
long *linearity = Q->linearity;
long *redundcol = Q->redundcol;
long m, d, nlinearity;
long nredundcol = 0L; /* will be calculated here */
m = P->m;
d = P->d;
nlinearity = Q->nlinearity;
if (Q->debug)
{
fprintf (lrs_ofp, "\ngetabasis from inequalities given in order");
for (i = 0; i < m; i++)
fprintf (lrs_ofp, " %ld", order[i]);
}
for (j = 0; j < m; j++)
{
i = 0;
while (i <= m && B[i] != d + order[j])
i++; /* find leaving basis index i */
if (j < nlinearity && i > m) /* cannot pivot linearity to cobasis */
{
if (Q->debug)
printA (P, Q);
#ifndef LRS_QUIET
fprintf (lrs_ofp, "\nCannot find linearity in the basis");
#endif
return FALSE;
}
if (i <= m)
{ /* try to do a pivot */
k = 0;
while (C[k] <= d && zero (A[Row[i]][Col[k]]))
k++;
if (C[k] <= d)
{
pivot (P, Q, i, k);
update (P, Q, &i, &k);
}
else if (j < nlinearity)
{ /* cannot pivot linearity to cobasis */
if (zero (A[Row[i]][0]))
{
#ifndef LRS_QUIET
fprintf (lrs_ofp, "\n*Input linearity in row %ld is redundant--converted to inequality", order[j]);
#endif
linearity[j]=0;
}
else
{
if (Q->debug)
printA (P, Q);
#ifndef LRS_QUIET
fprintf (lrs_ofp, "\n*Input linearity in row %ld is inconsistent with earlier linearities", order[j]);
fprintf (lrs_ofp, "\n*No feasible solution");
#endif
return FALSE;
}
} /* end if j < nlinearity */
} /* end of if i <= m .... */
} /* end of for */
/* update linearity array to get rid of redundancies */
i = 0;
k = 0; /* counters for linearities */
while (k < nlinearity)
{
while (k < nlinearity && linearity[k] == 0)
k++;
if (k < nlinearity)
linearity[i++] = linearity[k++];
}
nlinearity = i;
/* bug fix, 2009.6.27 */ Q->nlinearity = i;
/* column dependencies now can be recorded */
/* redundcol contains input column number 0..n-1 where redundancy is */
k = 0;
while (k < d && C[k] <= d)
{
if (C[k] <= d) /* decision variable still in cobasis */
redundcol[nredundcol++] = C[k] - Q->hull; /* adjust for hull indices */
k++;
}
/* now we know how many decision variables remain in problem */
Q->nredundcol = nredundcol;
Q->lastdv = d - nredundcol;
if (Q->debug)
{
fprintf (lrs_ofp, "\nend of first phase of getabasis: ");
fprintf (lrs_ofp, "lastdv=%ld nredundcol=%ld", Q->lastdv, Q->nredundcol);
fprintf (lrs_ofp, "\nredundant cobases:");
for (i = 0; i < nredundcol; i++)
fprintf (lrs_ofp, " %ld", redundcol[i]);
printA (P, Q);
}
/* Remove linearities from cobasis for rest of computation */
/* This is done in order so indexing is not screwed up */
for (i = 0; i < nlinearity; i++)
{ /* find cobasic index */
k = 0;
while (k < d && C[k] != linearity[i] + d)
k++;
if (k >= d)
{
fprintf (lrs_ofp, "\nError removing linearity");
return FALSE;
}
if (!removecobasicindex (P, Q, k))
return FALSE;
d = P->d;
}
if (Q->debug && nlinearity > 0)
printA (P, Q);
/* set index value for first slack variable */
/* Check feasability */
if (Q->givenstart)
{
i = Q->lastdv + 1;
while (i <= m && !negative (A[Row[i]][0]))
i++;
if (i <= m)
fprintf (lrs_ofp, "\n*Infeasible startingcobasis - will be modified");
}
return TRUE;
} /* end of getabasis */
long
removecobasicindex (lrs_dic * P, lrs_dat * Q, long k)
/* remove the variable C[k] from the problem */
/* used after detecting column dependency */
{
long i, j, cindex, deloc;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *B = P->B;
long *C = P->C;
long *Col = P->Col;
long m, d;
m = P->m;
d = P->d;
if (Q->debug)
fprintf (lrs_ofp, "\nremoving cobasic index k=%ld C[k]=%ld", k, C[k]);
cindex = C[k]; /* cobasic index to remove */
deloc = Col[k]; /* matrix column location to remove */
for (i = 1; i <= m; i++) /* reduce basic indices by 1 after index */
if (B[i] > cindex)
B[i]--;
for (j = k; j < d; j++) /* move down other cobasic variables */
{
C[j] = C[j + 1] - 1; /* cobasic index reduced by 1 */
Col[j] = Col[j + 1];
}
if (deloc != d)
{
/* copy col d to deloc */
for (i = 0; i <= m; i++)
copy (A[i][deloc], A[i][d]);
/* reassign location for moved column */
j = 0;
while (Col[j] != d)
j++;
Col[j] = deloc;
}
P->d--;
if (Q->debug)
printA (P, Q);
return TRUE;
} /* end of removecobasicindex */
lrs_dic *
resize (lrs_dic * P, lrs_dat * Q)
/* resize the dictionary after some columns are deleted, ie. inputd>d */
/* a new lrs_dic record is created with reduced size, and items copied over */
{
lrs_dic *P1; /* to hold new dictionary in case of resizing */
long i, j;
long m, d, m_A;
m = P->m;
d = P->d;
m_A = P->m_A;
/* get new dictionary record */
P1 = new_lrs_dic (m, d, m_A);
/* copy data from P to P1 */
P1->i = P->i;
P1->j = P->j;
P1->depth = P->depth;
P1->m = P->m;
P1->d = P1->d_orig = d;
P1->lexflag = P->lexflag;
P1->m_A = P->m_A;
copy (P1->det, P->det);
copy (P1->objnum, P->objnum);
copy (P1->objden, P->objden);
for (i = 0; i <= m; i++)
{
P1->B[i] = P->B[i];
P1->Row[i] = P->Row[i];
}
for (i = 0; i <= m_A; i++)
{
for (j = 0; j <= d; j++)
copy (P1->A[i][j], P->A[i][j]);
}
for (j = 0; j <= d; j++)
{
P1->Col[j] = P->Col[j];
P1->C[j] = P->C[j];
}
if (Q->debug)
{
fprintf (lrs_ofp, "\nDictionary resized from d=%ld to d=%ld", Q->inputd, P->d);
printA (P1, Q);
}
lrs_free_dic (P,Q);
/* Reassign cache pointers */
Q->Qhead = P1;
Q->Qtail = P1;
P1->next = P1;
P1->prev = P1;
return P1;
}
/********* resize ***************/
long
restartpivots (lrs_dic * P, lrs_dat * Q)
/* facet contains a list of the inequalities in the cobasis for the restart */
/* inequality contains the relabelled inequalities after initialization */
{
long i, j, k;
long *Cobasic; /* when restarting, Cobasic[j]=1 if j is in cobasis */
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *B = P->B;
long *C = P->C;
long *Row = P->Row;
long *Col = P->Col;
long *inequality = Q->inequality;
long *facet = Q->facet;
long nlinearity = Q->nlinearity;
long m, d, lastdv;
m = P->m;
d = P->d;
lastdv = Q->lastdv;
Cobasic = (long *) CALLOC ((unsigned) m + d + 2, sizeof (long));
if (Q->debug)
fprintf(lrs_ofp,"\nCobasic flags in restartpivots");
/* set Cobasic flags */
for (i = 0; i < m + d + 1; i++)
Cobasic[i] = 0;
for (i = 0; i < d; i++) /* find index corresponding to facet[i] */
{
j = 1;
while (facet[i + nlinearity] != inequality[j])
j++;
Cobasic[j + lastdv] = 1;
if (Q->debug)
fprintf(lrs_ofp," %ld %ld;",facet[i+nlinearity],j+lastdv);
}
/* Note that the order of doing the pivots is important, as */
/* the B and C vectors are reordered after each pivot */
/* code below replaced 2006.10.30 */
/*
for (i = m; i >= d + 1; i--)
if (Cobasic[B[i]])
{
k = d - 1;
while ((k >= 0) &&
(zero (A[Row[i]][Col[k]]) || Cobasic[C[k]]))
k--;
if (k >= 0)
{
pivot (P, Q, i, k);
update (P, Q, &i, &k);
}
else
{
fprintf (lrs_ofp, "\nInvalid Co-basis - does not have correct rank");
free(Cobasic);
return FALSE;
}
}
*/
/*end of code that was replaced */
/* Suggested new code from db starts */
i=m;
while (i>d){
while(Cobasic[B[i]]){
k = d - 1;
while ((k >= 0) && (zero (A[Row[i]][Col[k]]) || Cobasic[C[k]])){
k--;
}
if (k >= 0) {
/*db asks: should i really be modified here? (see old code) */
/*da replies: modifying i only makes is larger, and so */
/*the second while loop will put it back where it was */
/*faster (and safer) as done below */
long ii=i;
pivot (P, Q, ii, k);
update (P, Q, &ii, &k);
} else {
fprintf (lrs_ofp, "\nInvalid Co-basis - does not have correct rank");
free(Cobasic);
return FALSE;
}
}
i--;
}
/* Suggested new code from db ends */
if (lexmin (P, Q, ZERO))
--Q->count[1]; /* decrement vertex count if lexmin */
/* check restarting from a primal feasible dictionary */
for (i = lastdv + 1; i <= m; i++)
if (negative (A[Row[i]][0]))
{
fprintf (lrs_ofp, "\nTrying to restart from infeasible dictionary");
free(Cobasic);
return FALSE;
}
free(Cobasic);
return TRUE;
} /* end of restartpivots */
long
ratio (lrs_dic * P, lrs_dat * Q, long col) /*find lex min. ratio */
/* find min index ratio -aig/ais, ais<0 */
/* if multiple, checks successive basis columns */
/* recoded Dec 1997 */
{
long i, j, comp, ratiocol, basicindex, start, nstart, cindex, bindex;
long firstime; /*For ratio test, true on first pass,else false */
lrs_mp Nmin, Dmin;
long degencount, ndegencount;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *B = P->B;
long *Row = P->Row;
long *Col = P->Col;
long *minratio = Q->minratio;
long m, d, lastdv;
m = P->m;
d = P->d;
lastdv = Q->lastdv;
nstart=0;
ndegencount=0;
degencount = 0;
minratio[P->m]=1; /*2011.7.14 non-degenerate pivot flag */
for (j = lastdv + 1; j <= m; j++)
{
/* search rows with negative coefficient in dictionary */
/* minratio contains indices of min ratio cols */
if (negative (A[Row[j]][col]))
{
minratio[degencount++] = j;
if(zero (A[Row[j]][0]))
minratio[P->m]=0; /*2011.7.14 degenerate pivot flag */
}
} /* end of for loop */
if (Q->debug)
{
fprintf (lrs_ofp, " Min ratios: ");
for (i = 0; i < degencount; i++)
fprintf (lrs_ofp, " %ld ", B[minratio[i]]);
}
if (degencount == 0)
return (degencount); /* non-negative pivot column */
lrs_alloc_mp(Nmin); lrs_alloc_mp(Dmin);
ratiocol = 0; /* column being checked, initially rhs */
start = 0; /* starting location in minratio array */
bindex = d + 1; /* index of next basic variable to consider */
cindex = 0; /* index of next cobasic variable to consider */
basicindex = d; /* index of basis inverse for current ratio test, except d=rhs test */
while (degencount > 1) /*keep going until unique min ratio found */
{
if (B[bindex] == basicindex) /* identity col in basis inverse */
{
if (minratio[start] == bindex)
/* remove this index, all others stay */
{
start++;
degencount--;
}
bindex++;
}
else
/* perform ratio test on rhs or column of basis inverse */
{
firstime = TRUE;
/*get next ratio column and increment cindex */
if (basicindex != d)
ratiocol = Col[cindex++];
for (j = start; j < start + degencount; j++)
{
i = Row[minratio[j]]; /* i is the row location of the next basic variable */
comp = 1; /* 1: lhs>rhs; 0:lhs=rhs; -1: lhs<rhs */
if (firstime)
firstime = FALSE; /*force new min ratio on first time */
else
{
if (positive (Nmin) || negative (A[i][ratiocol]))
{
if (negative (Nmin) || positive (A[i][ratiocol]))
comp = comprod (Nmin, A[i][col], A[i][ratiocol], Dmin);
else
comp = -1;
}
else if (zero (Nmin) && zero (A[i][ratiocol]))
comp = 0;
if (ratiocol == ZERO)
comp = -comp; /* all signs reversed for rhs */
}
if (comp == 1)
{ /*new minimum ratio */
nstart = j;
copy (Nmin, A[i][ratiocol]);
copy (Dmin, A[i][col]);
ndegencount = 1;
}
else if (comp == 0) /* repeated minimum */
minratio[nstart + ndegencount++] = minratio[j];
} /* end of for (j=start.... */
degencount = ndegencount;
start = nstart;
} /* end of else perform ratio test statement */
basicindex++; /* increment column of basis inverse to check next */
if (Q->debug)
{
fprintf (lrs_ofp, " ratiocol=%ld degencount=%ld ", ratiocol, degencount);
fprintf (lrs_ofp, " Min ratios: ");
for (i = start; i < start + degencount; i++)
fprintf (lrs_ofp, " %ld ", B[minratio[i]]);
}
} /*end of while loop */
lrs_clear_mp(Nmin); lrs_clear_mp(Dmin);
return (minratio[start]);
} /* end of ratio */
long
lexmin (lrs_dic * P, lrs_dat * Q, long col)
/*test if basis is lex-min for vertex or ray, if so TRUE */
/* FALSE if a_r,g=0, a_rs !=0, r > s */
{
/*do lexmin test for vertex if col=0, otherwise for ray */
long r, s, i, j;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *B = P->B;
long *C = P->C;
long *Row = P->Row;
long *Col = P->Col;
long m = P->m;
long d = P->d;
for (i = Q->lastdv + 1; i <= m; i++)
{
r = Row[i];
if (zero (A[r][col])) /* necessary for lexmin to fail */
for (j = 0; j < d; j++)
{
s = Col[j];
if (B[i] > C[j]) /* possible pivot to reduce basis */
{
if (zero (A[r][0])) /* no need for ratio test, any pivot feasible */
{
if (!zero (A[r][s]))
return (FALSE);
}
else if (negative (A[r][s]) && ismin (P, Q, r, s))
{
return (FALSE);
}
} /* end of if B[i] ... */
}
}
if ((col != ZERO) && Q->debug)
{
fprintf (lrs_ofp, "\n lexmin ray in col=%ld ", col);
printA (P, Q);
}
return (TRUE);
} /* end of lexmin */
long
ismin (lrs_dic * P, lrs_dat * Q, long r, long s)
/*test if A[r][s] is a min ratio for col s */
{
long i;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long m_A = P->m_A;
for (i = 1; i <= m_A; i++)
if ((i != r) &&
negative (A[i][s]) && comprod (A[i][0], A[r][s], A[i][s], A[r][0]))
{
return (FALSE);
}
return (TRUE);
}
void
update (lrs_dic * P, lrs_dat * Q, long *i, long *j)
/*update the B,C arrays after a pivot */
/* involving B[bas] and C[cob] */
{
long leave, enter;
/* assign local variables to structures */
long *B = P->B;
long *C = P->C;
long *Row = P->Row;
long *Col = P->Col;
long m = P->m;
long d = P->d;
leave = B[*i];
enter = C[*j];
B[*i] = enter;
reorder1 (B, Row, *i, m + 1);
C[*j] = leave;
reorder1 (C, Col, *j, d);
/* restore i and j to new positions in basis */
for (*i = 1; B[*i] != enter; (*i)++); /*Find basis index */
for (*j = 0; C[*j] != leave; (*j)++); /*Find co-basis index */
} /* end of update */
long
lrs_degenerate (lrs_dic * P, lrs_dat * Q)
/* TRUE if the current dictionary is primal degenerate */
/* not thoroughly tested 2000/02/15 */
{
long i;
long *B, *Row;
lrs_mp_matrix A = P->A;
long d = P->d;
long m = P->m;
B = P->B;
Row = P->Row;
for (i = d + 1; i <= m; i++)
if (zero (A[Row[i]][0]))
return TRUE;
return FALSE;
}
/*********************************************************/
/* Miscellaneous */
/******************************************************* */
void
reorder (long a[], long range)
/*reorder array in increasing order with one misplaced element */
{
long i, temp;
for (i = 0; i < range - 1; i++)
if (a[i] > a[i + 1])
{
temp = a[i];
a[i] = a[i + 1];
a[i + 1] = temp;
}
for (i = range - 2; i >= 0; i--)
if (a[i] > a[i + 1])
{
temp = a[i];
a[i] = a[i + 1];
a[i + 1] = temp;
}
} /* end of reorder */
void
reorder1 (long a[], long b[], long newone, long range)
/*reorder array a in increasing order with one misplaced element at index newone */
/*elements of array b are updated to stay aligned with a */
{
long temp;
while (newone > 0 && a[newone] < a[newone - 1])
{
temp = a[newone];
a[newone] = a[newone - 1];
a[newone - 1] = temp;
temp = b[newone];
b[newone] = b[newone - 1];
b[--newone] = temp;
}
while (newone < range - 1 && a[newone] > a[newone + 1])
{
temp = a[newone];
a[newone] = a[newone + 1];
a[newone + 1] = temp;
temp = b[newone];
b[newone] = b[newone + 1];
b[++newone] = temp;
}
} /* end of reorder1 */
void
rescaledet (lrs_dic * P, lrs_dat * Q, lrs_mp Vnum, lrs_mp Vden)
/* rescale determinant to get its volume */
/* Vnum/Vden is volume of current basis */
{
lrs_mp gcdprod; /* to hold scale factors */
long i;
/* assign local variables to structures */
long *B = P->B;
long *C = P->C;
long m, d, lastdv;
lrs_alloc_mp(gcdprod);
m = P->m;
d = P->d;
lastdv = Q->lastdv;
itomp (ONE, gcdprod);
itomp (ONE, Vden);
for (i = 0; i < d; i++)
if (B[i] <= m)
{
mulint (Q->Gcd[Q->inequality[C[i] - lastdv]], gcdprod, gcdprod);
mulint (Q->Lcm[Q->inequality[C[i] - lastdv]], Vden, Vden);
}
mulint (P->det, gcdprod, Vnum);
reduce (Vnum, Vden);
lrs_clear_mp(gcdprod);
} /* end rescaledet */
void
rescalevolume (lrs_dic * P, lrs_dat * Q, lrs_mp Vnum, lrs_mp Vden)
/* adjust volume for dimension */
{
lrs_mp temp, dfactorial;
/* assign local variables to structures */
long lastdv = Q->lastdv;
lrs_alloc_mp(temp); lrs_alloc_mp(dfactorial);
/*reduce Vnum by d factorial */
getfactorial (dfactorial, lastdv);
mulint (dfactorial, Vden, Vden);
if (Q->hull && !Q->homogeneous)
{ /* For hull option multiply by d to correct for lifting */
itomp (lastdv, temp);
mulint (temp, Vnum, Vnum);
}
reduce (Vnum, Vden);
lrs_clear_mp(temp); lrs_clear_mp(dfactorial);
}
void
updatevolume (lrs_dic * P, lrs_dat * Q) /* rescale determinant and update the volume */
{
lrs_mp tN, tD, Vnum, Vden;
lrs_alloc_mp(tN); lrs_alloc_mp(tD); lrs_alloc_mp(Vnum); lrs_alloc_mp(Vden);
rescaledet (P, Q, Vnum, Vden);
copy (tN, Q->Nvolume);
copy (tD, Q->Dvolume);
linrat (tN, tD, ONE, Vnum, Vden, ONE, Q->Nvolume, Q->Dvolume);
if (Q->debug)
{
prat ("\n*Volume=", Q->Nvolume, Q->Dvolume);
pmp (" Vnum=", Vnum);
pmp (" Vden=", Vden);
}
lrs_clear_mp(tN); lrs_clear_mp(tD); lrs_clear_mp(Vnum); lrs_clear_mp(Vden);
} /* end of updatevolume */
/***************************************************/
/* Routines for redundancy checking */
/***************************************************/
long
checkredund (lrs_dic * P, lrs_dat * Q)
/* Solve primal feasible lp by least subscript and lex min basis method */
/* to check redundancy of a row in objective function */
/* returns TRUE if redundant, else FALSE */
{
lrs_mp Ns, Nt;
long i, j;
long r, s;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *B, *C, *Row, *Col;
long d = P->d;
lrs_alloc_mp(Ns); lrs_alloc_mp(Nt);
B = P->B;
C = P->C;
Row = P->Row;
Col = P->Col;
while (selectpivot (P, Q, &i, &j))
{
Q->count[2]++;
/* sign of new value of A[0][0] */
/* is A[0][s]*A[r][0]-A[0][0]*A[r][s] */
r = Row[i];
s = Col[j];
mulint (A[0][s], A[r][0], Ns);
mulint (A[0][0], A[r][s], Nt);
if (greater (Ns, Nt))
{
lrs_clear_mp(Ns); lrs_clear_mp(Nt);
return FALSE; /* non-redundant */
}
pivot (P, Q, i, j);
update (P, Q, &i, &j); /*Update B,C,i,j */
}
lrs_clear_mp(Ns); lrs_clear_mp(Nt);
return !(j < d && i == 0); /* unbounded is also non-redundant */
} /* end of checkredund */
long
checkcobasic (lrs_dic * P, lrs_dat * Q, long index)
/* TRUE if index is cobasic and nonredundant */
/* FALSE if basic, or degen. cobasic, where it will get pivoted out */
{
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *B, *C, *Row, *Col;
long d = P->d;
long m = P->m;
long debug = Q->debug;
long i = 0;
long j = 0;
long s;
B = P->B;
C = P->C;
Row = P->Row;
Col = P->Col;
while ((j < d) && C[j] != index)
j++;
if (j == d)
return FALSE; /* not cobasic index */
/* index is cobasic */
if (debug)
fprintf (lrs_ofp, "\nindex=%ld cobasic", index);
/* not debugged for new LOC
s=LOC[index];
*/
s = Col[j];
i = Q->lastdv + 1;
while ((i <= m) &&
(zero (A[Row[i]][s]) || !zero (A[Row[i]][0])))
i++;
if (i > m)
{
if (debug)
fprintf (lrs_ofp, " is non-redundant");
return TRUE;
}
if (debug)
fprintf (lrs_ofp, " is degenerate B[i]=%ld", B[i]);
pivot (P, Q, i, j);
update (P, Q, &i, &j); /*Update B,C,i,j */
return FALSE; /*index is no longer cobasic */
} /* end of checkcobasic */
long
checkindex (lrs_dic * P, lrs_dat * Q, long index)
/* 0 if index is non-redundant inequality */
/* 1 if index is redundant inequality */
/* 2 if index is input linearity */
/*NOTE: row is returned all zero if redundant!! */
{
long i, j;
lrs_mp_matrix A = P->A;
long *Row = P->Row;
long *B = P->B;
long d = P->d;
long m = P->m;
if (Q->debug)
printA (P, Q);
/* each slack index must be checked for redundancy */
/* if in cobasis, it is pivoted out if degenerate */
/* else it is non-redundant */
if (checkcobasic (P, Q, index))
return ZERO;
/* index is basic */
/* not debugged for new LOC
i=LOC[index];
*/
j = 1;
while ((j <= m) && (B[j] != index))
j++;
i = Row[j];
/* copy row i to cost row, and set it to zero */
for (j = 0; j <= d; j++)
{
copy (A[0][j], A[i][j]);
changesign (A[0][j]);
itomp (ZERO, A[i][j]);
}
if (checkredund (P, Q))
return ONE;
/* non-redundant, copy back and change sign */
for (j = 0; j <= d; j++)
{
copy (A[i][j], A[0][j]);
changesign (A[i][j]);
}
return ZERO;
} /* end of checkindex */
/***************************************************************/
/* */
/* Package of I/O routines */
/* */
/***************************************************************/
void
lprat (const char *name, long Nt, long Dt)
/*print the long precision rational Nt/Dt without reducing */
{
if ( Nt > 0 )
fprintf (lrs_ofp, " ");
fprintf (lrs_ofp, "%s%ld", name, Nt);
if (Dt != 1)
fprintf (lrs_ofp, "/%ld", Dt);
fprintf (lrs_ofp, " ");
} /* lprat */
long
lreadrat (long *Num, long *Den)
/* read a rational string and convert to long */
/* returns true if denominator is not one */
{
char in[MAXINPUT], num[MAXINPUT], den[MAXINPUT];
if(fscanf (lrs_ifp, "%s", in) == EOF)
return(FALSE);
atoaa (in, num, den); /*convert rational to num/dem strings */
*Num = atol (num);
if (den[0] == '\0')
{
*Den = 1L;
return (FALSE);
}
*Den = atol (den);
return (TRUE);
}
void
lrs_getinput(lrs_dic *P,lrs_dat *Q,long *num,long *den, long m, long d)
/* code for reading data matrix in lrs/cdd format */
{
long j,row;
printf("\nEnter each row: b_i a_ij j=1..%ld",d);
for (row=1;row<=m;row++)
{
printf("\nEnter row %ld: ",row );
for(j=0;j<=d;j++)
{
lreadrat(&num[j],&den[j]);
lprat(" ",num[j],den[j]);
}
lrs_set_row(P,Q,row,num,den,GE);
}
printf("\nEnter objective row c_j j=1..%ld: ",d);
num[0]=0; den[0]=1;
for(j=1;j<=d;j++)
{
lreadrat(&num[j],&den[j]);
lprat(" ",num[j],den[j]);
}
lrs_set_obj(P,Q,num,den,MAXIMIZE);
}
long
readlinearity (lrs_dat * Q) /* read in and check linearity list */
{
long i, j;
long nlinearity;
if(fscanf (lrs_ifp, "%ld", &nlinearity)==EOF )
{
fprintf (lrs_ofp, "\nLinearity option invalid, no indices ");
return (FALSE);
}
if (nlinearity < 1)
{
fprintf (lrs_ofp, "\nLinearity option invalid, indices must be positive");
return (FALSE);
}
Q->linearity = CALLOC ((nlinearity + 1), sizeof (long));
for (i = 0; i < nlinearity; i++)
{
if(fscanf (lrs_ifp, "%ld", &j)==EOF)
{
fprintf (lrs_ofp, "\nLinearity option invalid, missing indices");
return (FALSE);
}
Q->linearity[i] = j;
}
for (i = 1; i < nlinearity; i++) /*sort in order */
reorder (Q->linearity, nlinearity);
Q->nlinearity = nlinearity;
Q->polytope = FALSE;
return TRUE;
} /* end readlinearity */
long
readfacets (lrs_dat * Q, long facet[])
/* read and check facet list for obvious errors during start/restart */
/* this must be done after linearity option is processed!! */
{
long i, j;
/* assign local variables to structures */
long m, d;
long *linearity = Q->linearity;
m = Q->m;
d = Q->inputd;
for (j = Q->nlinearity; j < d; j++) /* note we place these after the linearity indices */
{
if(fscanf (lrs_ifp, "%ld", &facet[j])==EOF)
{
fprintf (lrs_ofp, "\nrestart: facet list missing indices");
return (FALSE);
}
fprintf (lrs_ofp, " %ld", facet[j]);
/* 2010.4.26 nonnegative option needs larger range of indices */
if(Q->nonnegative)
if (facet[j] < 1 || facet[j] > m+d)
{
fprintf (lrs_ofp, "\n Start/Restart cobasic indices must be in range 1 .. %ld ", m+d);
return FALSE;
}
if(!Q->nonnegative)
if (facet[j] < 1 || facet[j] > m)
{
fprintf (lrs_ofp, "\n Start/Restart cobasic indices must be in range 1 .. %ld ", m);
return FALSE;
}
for (i = 0; i < Q->nlinearity; i++)
if (linearity[i] == facet[j])
{
fprintf (lrs_ofp, "\n Start/Restart cobasic indices should not include linearities");
return FALSE;
}
/* bug fix 2011.8.1 reported by Steven Wu*/
for (i = Q->nlinearity; i < j; i++)
/* end bug fix 2011.8.1 */
if (facet[i] == facet[j])
{
fprintf (lrs_ofp, "\n Start/Restart cobasic indices must be distinct");
return FALSE;
}
}
return TRUE;
} /* end of readfacets */
void
printA (lrs_dic * P, lrs_dat * Q) /* print the integer m by n array A
with B,C,Row,Col vectors */
{
long i, j;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *B = P->B;
long *C = P->C;
long *Row = P->Row;
long *Col = P->Col;
long m, d, lastdv;
m = P->m;
d = P->d;
lastdv = Q->lastdv;
fprintf (lrs_ofp, "\n Basis ");
for (i = 0; i <= m; i++)
fprintf (lrs_ofp, "%ld ", B[i]);
fprintf (lrs_ofp, " Row ");
for (i = 0; i <= m; i++)
fprintf (lrs_ofp, "%ld ", Row[i]);
fprintf (lrs_ofp, "\n Co-Basis ");
for (i = 0; i <= d; i++)
fprintf (lrs_ofp, "%ld ", C[i]);
fprintf (lrs_ofp, " Column ");
for (i = 0; i <= d; i++)
fprintf (lrs_ofp, "%ld ", Col[i]);
pmp (" det=", P->det);
fprintf (lrs_ofp, "\n");
i=0;
while ( i<= m )
{
for (j = 0; j <= d; j++)
pimat (P, i, j, A[Row[i]][Col[j]], "A");
fprintf (lrs_ofp, "\n");
if (i==0 && Q->nonnegative) /* skip basic rows - don't exist! */
i=d;
i++;
fflush (stdout);
}
fflush (stdout);
}
void
pimat (lrs_dic * P, long r, long s, lrs_mp Nt, char name[])
/*print the long precision integer in row r col s of matrix A */
{
long *B = P->B;
long *C = P->C;
if (s == 0)
fprintf (lrs_ofp, "%s[%ld][%ld]=", name, B[r], C[s]);
else
fprintf (lrs_ofp, "[%ld]=", C[s]);
pmp ("", Nt);
}
/***************************************************************/
/* */
/* Routines for caching, allocating etc. */
/* */
/***************************************************************/
/* From here mostly Bremner's handiwork */
static void
cache_dict (lrs_dic ** D_p, lrs_dat * global, long i, long j)
{
if (dict_limit > 1)
{
/* save row, column indicies */
(*D_p)->i = i;
(*D_p)->j = j;
/* Make a new, blank spot at the end of the queue to copy into */
pushQ (global, (*D_p)->m, (*D_p)->d, (*D_p)->m_A);
copy_dict (global, global->Qtail, *D_p); /* Copy current dictionary */
}
*D_p = global->Qtail;
}
void
copy_dict (lrs_dat * global, lrs_dic * dest, lrs_dic * src)
{
long m = src->m;
long m_A = src->m_A; /* number of rows in A */
long d = src->d;
long r,s;
#ifdef GMP
for ( r=0;r<=m_A;r++)
for( s=0;s<=d;s++)
copy(dest->A[r][s],src->A[r][s]);
#else /* fast copy for MP and LONG arithmetic */
/* Note that the "A" pointer trees need not be copied, since they
always point to the same places within the corresponding space
*/
/* I wish I understood the above remark. For the time being, do it the easy way for Nash */
if(global->nash)
{
for ( r=0;r<=m_A;r++)
for( s=0;s<=d;s++)
copy(dest->A[r][s],src->A[r][s]);
}
else
memcpy (dest->A[0][0], (global->Qtail->prev)->A[0][0],
(d + 1) * (lrs_digits + 1) * (m_A + 1) * sizeof (long));
#endif
dest->i = src->i;
dest->j = src->j;
dest->m = m;
dest->d = d;
dest->m_A = src->m_A;
dest->depth = src->depth;
dest->lexflag = src->lexflag;
copy (dest->det, src->det);
copy (dest->objnum, src->objnum);
copy (dest->objden, src->objden);
if (global->debug)
fprintf (lrs_ofp, "\nSaving dict at depth %ld\n", src->depth);
memcpy (dest->B, src->B, (m + 1) * sizeof (long));
memcpy (dest->C, src->C, (d + 1) * sizeof (long));
memcpy (dest->Row, src->Row, (m + 1) * sizeof (long));
memcpy (dest->Col, src->Col, (d + 1) * sizeof (long));
}
/*
* pushQ(lrs_dat *globals,m,d):
* this routine ensures that Qtail points to a record that
* may be copied into.
*
* It may create a new record, or it may just move the head pointer
* forward so that know that the old record has been overwritten.
*/
#if 0
#define TRACE(s) fprintf(stderr,"\n%s %p %p\n",s,global->Qhead,global->Qtail);
#else
#define TRACE(s)
#endif
static void
pushQ (lrs_dat * global, long m, long d ,long m_A)
{
if ((global->Qtail->next) == global->Qhead)
{
/* the Queue is full */
if (dict_count < dict_limit)
{
/* but we are allowed to create more */
lrs_dic *p;
p = new_lrs_dic (m, d, m_A);
if (p)
{
/* we successfully created another record */
p->next = global->Qtail->next;
(global->Qtail->next)->prev = p;
(global->Qtail->next) = p;
p->prev = global->Qtail;
dict_count++;
global->Qtail = p;
TRACE ("Added new record to Q");
}
else
{
/* virtual memory exhausted. bummer */
global->Qhead = global->Qhead->next;
global->Qtail = global->Qtail->next;
TRACE ("VM exhausted");
}
}
else
{
/*
* user defined limit reached. start overwriting the
* beginning of Q
*/
global->Qhead = global->Qhead->next;
global->Qtail = global->Qtail->next;
TRACE ("User limit");
}
}
else
{
global->Qtail = global->Qtail->next;
TRACE ("Reusing");
}
}
lrs_dic *
lrs_getdic(lrs_dat *Q)
/* create another dictionary for Q without copying any values */
/* derived from lrs_alloc_dic, used by nash.c */
{
lrs_dic *p;
long m;
m = Q->m;
/* nonnegative flag set means that problem is d rows "bigger" */
/* since nonnegative constraints are not kept explicitly */
if(Q->nonnegative)
m = m+Q->inputd;
p = new_lrs_dic (m, Q->inputd, Q->m);
if (!p)
return NULL;
p->next = p;
p->prev = p;
Q->Qhead = p;
Q->Qtail = p;
return p;
}
#define NULLRETURN(e) if (!(e)) return NULL;
static lrs_dic *
new_lrs_dic (long m, long d, long m_A)
{
lrs_dic *p;
NULLRETURN (p = (lrs_dic *) malloc (sizeof (lrs_dic)));
NULLRETURN (p->B = calloc ((m + 1), sizeof (long)));
NULLRETURN (p->Row = calloc ((m + 1), sizeof (long)));
NULLRETURN (p->C = calloc ((d + 1), sizeof (long)));
NULLRETURN (p->Col = calloc ((d + 1), sizeof (long)));
#ifdef GMP
lrs_alloc_mp(p->det);
lrs_alloc_mp(p->objnum);
lrs_alloc_mp(p->objden);
#endif
p->d_orig=d;
p->A=lrs_alloc_mp_matrix(m_A,d);
return p;
}
void
lrs_free_dic (lrs_dic * P, lrs_dat *Q)
{
/* do the same steps as for allocation, but backwards */
/* gmp variables cannot be cleared using free: use lrs_clear_mp* */
lrs_dic *P1;
/* repeat until cache is empty */
do
{
/* I moved these here because I'm not certain the cached dictionaries
need to be the same size. Well, it doesn't cost anything to be safe. db */
long d = P->d_orig;
long m_A = P->m_A;
lrs_clear_mp_matrix (P->A,m_A,d);
/* "it is a ghastly error to free something not assigned my malloc" KR167 */
/* so don't try: free (P->det); */
lrs_clear_mp (P->det);
lrs_clear_mp (P->objnum);
lrs_clear_mp (P->objden);
free (P->Row);
free (P->Col);
free (P->C);
free (P->B);
/* go to next record in cache if any */
P1 =P->next;
free (P);
P=P1;
} while (Q->Qhead != P );
}
void
lrs_free_dat ( lrs_dat *Q )
{
long m=Q->m;
/* most of these items were allocated in lrs_alloc_dic */
lrs_clear_mp_vector (Q->Gcd,m);
lrs_clear_mp_vector (Q->Lcm,m);
lrs_clear_mp (Q->sumdet);
lrs_clear_mp (Q->Nvolume);
lrs_clear_mp (Q->Dvolume);
lrs_clear_mp (Q->saved_det);
lrs_clear_mp (Q->boundd);
lrs_clear_mp (Q->boundn);
free (Q->inequality);
free (Q->facet);
free (Q->redundcol);
free (Q->linearity);
free (Q->minratio);
free (Q->temparray);
free (Q->name);
free (Q->saved_C);
lrs_global_count--;
free(Q);
}
static long
check_cache (lrs_dic ** D_p, lrs_dat * global, long *i_p, long *j_p)
{
/* assign local variables to structures */
cache_tries++;
if (global->Qtail == global->Qhead)
{
TRACE ("cache miss");
/* Q has only one element */
cache_misses++;
return 0;
}
else
{
global->Qtail = global->Qtail->prev;
*D_p = global->Qtail;
*i_p = global->Qtail->i;
*j_p = global->Qtail->j;
TRACE ("restoring dict");
return 1;
}
}
lrs_dic *
lrs_alloc_dic (lrs_dat * Q)
/* allocate and initialize lrs_dic */
{
lrs_dic *p;
long i, j;
long m, d, m_A;
if (Q->hull) /* d=col dimension of A */
Q->inputd = Q->n; /* extra column for hull */
else
Q->inputd = Q->n - 1;
m = Q->m;
d = Q->inputd;
m_A = m; /* number of rows in A */
/* nonnegative flag set means that problem is d rows "bigger" */
/* since nonnegative constraints are not kept explicitly */
if(Q->nonnegative)
m = m+d;
p = new_lrs_dic (m, d, m_A);
if (!p)
return NULL;
p->next = p;
p->prev = p;
Q->Qhead = p;
Q->Qtail = p;
dict_count = 1;
dict_limit = 10;
cache_tries = 0;
cache_misses = 0;
/* Initializations */
p->d = p->d_orig = d;
p->m = m;
p->m_A = m_A;
p->depth = 0L;
p->lexflag = TRUE;
itomp (ONE, p->det);
itomp (ZERO, p->objnum);
itomp (ONE, p->objden);
/*m+d+1 is the number of variables, labelled 0,1,2,...,m+d */
/* initialize array to zero */
for (i = 0; i <= m_A; i++)
for (j = 0; j <= d; j++)
itomp (ZERO, p->A[i][j]);
Q->inequality = CALLOC ((m + 1), sizeof (long));
if (Q->nlinearity == ZERO) /* linearity may already be allocated */
Q->linearity = CALLOC ((m + 1), sizeof (long));
Q->facet = (long *) CALLOC ((unsigned) d + 1, sizeof (long));
Q->redundcol = CALLOC ((d + 1), sizeof (long));
Q->minratio = CALLOC ((m + 1), sizeof (long));
/* 2011.7.14 minratio[m]=0 for degen =1 for nondegen pivot*/
Q->temparray = CALLOC ((unsigned) d + 1, sizeof (long));
Q->inequality[0] = 2L;
Q->Gcd = lrs_alloc_mp_vector(m);
Q->Lcm = lrs_alloc_mp_vector(m);
Q->saved_C = CALLOC (d + 1, sizeof (long));
Q->lastdv = d; /* last decision variable may be decreased */
/* if there are redundant columns */
/*initialize basis and co-basis indices, and row col locations */
/*if nonnegative, we label differently to avoid initial pivots */
/* set basic indices and rows */
if(Q->nonnegative)
for (i = 0; i <= m; i++)
{
p->B[i] = i;
if (i <= d )
p->Row[i]=0; /* no row for decision variables */
else
p->Row[i]=i-d;
}
else
for (i = 0; i <= m; i++)
{
if (i == 0 )
p->B[0]=0;
else
p->B[i] = d + i;
p->Row[i] = i;
}
for (j = 0; j < d; j++)
{
if(Q->nonnegative)
p->C[j] = m+j+1;
else
p->C[j] = j + 1;
p->Col[j] = j + 1;
}
p->C[d] = m + d + 1;
p->Col[d] = 0;
return p;
} /* end of lrs_alloc_dic */
/*
this routine makes a copy of the information needed to restart,
so that we can guarantee that if a signal is received, we
can guarantee that nobody is messing with it.
This as opposed to adding all kinds of critical regions in
the main line code.
It is also used to make sure that in case of overflow, we
have a valid cobasis to restart from.
*/
static void
save_basis (lrs_dic * P, lrs_dat * Q)
{
int i;
/* assign local variables to structures */
long *C = P->C;
long d;
#ifdef SIGNALS
sigset_t oset, blockset;
sigemptyset (&blockset);
sigaddset (&blockset, SIGTERM);
sigaddset (&blockset, SIGHUP);
sigaddset (&blockset, SIGUSR1);
errcheck ("sigprocmask", sigprocmask (SIG_BLOCK, &blockset, &oset));
#endif
d = P->d;
Q->saved_flag = 1;
for (i = 0; i < 3; i++)
Q->saved_count[i] = Q->count[i];
for (i = 0; i < d + 1; i++)
Q->saved_C[i] = C[i];
copy (Q->saved_det, P->det);
Q->saved_d = P->d;
Q->saved_depth = P->depth;
#ifdef SIGNALS
errcheck ("sigprocmask", sigprocmask (SIG_SETMASK, &oset, 0));
#endif
}
/* digits overflow is a call from lrs_mp package */
void
digits_overflow ()
{
fprintf (lrs_ofp, "\nOverflow at digits=%ld", DIG2DEC (lrs_digits));
fprintf (lrs_ofp, "\nRerun with option: digits n, where n > %ld\n", DIG2DEC (lrs_digits));
lrs_dump_state ();
notimpl("");
}
static void
lrs_dump_state ()
{
long i;
fprintf (stderr, "\n\nlrs_lib: checkpointing:\n");
fprintf (stderr, "lrs_lib: Current digits at %ld out of %ld\n",
DIG2DEC (lrs_record_digits),
DIG2DEC (lrs_digits));
for (i = 0; i < lrs_global_count; i++)
{
print_basis (stderr, lrs_global_list[i]);
}
fprintf (stderr, "lrs_lib: checkpoint finished\n");
}
/* print out the saved copy of the basis */
void
print_basis (FILE * fp, lrs_dat * global)
{
int i;
/* assign local variables to structures */
fprintf (fp, "lrs_lib: State #%ld: (%s)\t", global->id, global->name);
if (global->saved_flag)
{
fprintf (fp, "V#%ld R#%ld B#%ld h=%ld facets ",
global->saved_count[1],
global->saved_count[0],
global->saved_count[2],
global->saved_depth);
for (i = 0; i < global->saved_d; i++)
fprintf (fp, "%ld ",
global->inequality[global->saved_C[i] - global->lastdv]);
pmp (" det=", global->saved_det);
fprintf (fp, "\n");
}
else
{
fprintf (fp, "lrs_lib: Computing initial basis\n");
}
fflush (fp);
}
#ifdef SIGNALS
/*
If given a signal
USR1 print current cobasis and continue
TERM print current cobasis and terminate
INT (ctrl-C) ditto
HUP ditto
*/
static void
setup_signals ()
{
errcheck ("signal", signal (SIGTERM, die_gracefully));
errcheck ("signal", signal (SIGALRM, timecheck));
errcheck ("signal", signal (SIGHUP, die_gracefully));
errcheck ("signal", signal (SIGINT, die_gracefully));
errcheck ("signal", signal (SIGUSR1, checkpoint));
}
static void
timecheck ()
{
lrs_dump_state ();
errcheck ("signal", signal (SIGALRM, timecheck));
alarm (lrs_checkpoint_seconds);
}
static void
checkpoint ()
{
lrs_dump_state ();
errcheck ("signal", signal (SIGUSR1, checkpoint));
}
static void
die_gracefully ()
{
lrs_dump_state ();
exit (1);
}
#endif
#ifdef TIMES
/*
* Not sure about the portability of this yet,
* - db
*/
#include <sys/resource.h>
#define double_time(t) ((double)(t.tv_sec)+(double)(t.tv_usec)/1000000)
static void
ptimes ()
{
struct rusage rusage;
getrusage (RUSAGE_SELF, &rusage);
fprintf (lrs_ofp, "\n*%0.3fu %0.3fs %ldKb %ld flts %ld swaps %ld blks-in %ld blks-out \n",
double_time (rusage.ru_utime),
double_time (rusage.ru_stime),
rusage.ru_maxrss, rusage.ru_majflt, rusage.ru_nswap,
rusage.ru_inblock, rusage.ru_oublock);
}
static double get_time()
{
struct rusage rusage;
getrusage (RUSAGE_SELF, &rusage);
return ( double_time (rusage.ru_utime));
}
#endif
/* Routines based on lp_solve */
void
lrs_set_row(lrs_dic *P, lrs_dat *Q, long row, long num[], long den[], long ineq)
/* convert to lrs_mp then call lrs_set_row */
{
lrs_mp_vector Num, Den;
long m,d;
long j;
m = P->m;
d = P->d;
Num=lrs_alloc_mp_vector(d+1);
Den=lrs_alloc_mp_vector(d+1);
for (j=0;j<=d;j++)
{
itomp(num[j],Num[j]);
itomp(den[j],Den[j]);
}
lrs_set_row_mp(P,Q,row,Num,Den,ineq);
lrs_clear_mp_vector(Num,d+1);
lrs_clear_mp_vector(Den,d+1);
}
void
lrs_set_row_mp(lrs_dic *P, lrs_dat *Q, long row, lrs_mp_vector num, lrs_mp_vector den, long ineq)
/* set row of dictionary using num and den arrays for rational input */
/* ineq = 1 (GE) - ordinary row */
/* = 0 (EQ) - linearity */
{
lrs_mp Temp, mpone;
lrs_mp_vector oD; /* denominator for row */
long i, j;
/* assign local variables to structures */
lrs_mp_matrix A;
lrs_mp_vector Gcd, Lcm;
long hull;
long m, d;
lrs_alloc_mp(Temp); lrs_alloc_mp(mpone);
hull = Q->hull;
A = P->A;
m = P->m;
d = P->d;
Gcd = Q->Gcd;
Lcm = Q->Lcm;
oD = lrs_alloc_mp_vector (d);
itomp (ONE, mpone);
itomp (ONE, oD[0]);
i=row;
itomp (ONE, Lcm[i]); /* Lcm of denominators */
itomp (ZERO, Gcd[i]); /* Gcd of numerators */
for (j = hull; j <= d; j++) /* hull data copied to cols 1..d */
{
copy( A[i][j],num[j-hull]);
copy(oD[j],den[j-hull]);
if (!one(oD[j]))
lcm (Lcm[i], oD[j]); /* update lcm of denominators */
copy (Temp, A[i][j]);
gcd (Gcd[i], Temp); /* update gcd of numerators */
}
if (hull)
{
itomp (ZERO, A[i][0]); /*for hull, we have to append an extra column of zeroes */
if (!one (A[i][1]) || !one (oD[1])) /* all rows must have a one in column one */
Q->polytope = FALSE;
}
if (!zero (A[i][hull])) /* for H-rep, are zero in column 0 */
Q->homogeneous = FALSE; /* for V-rep, all zero in column 1 */
storesign (Gcd[i], POS);
storesign (Lcm[i], POS);
if (greater (Gcd[i], mpone) || greater (Lcm[i], mpone))
for (j = 0; j <= d; j++)
{
exactdivint (A[i][j], Gcd[i], Temp); /*reduce numerators by Gcd */
mulint (Lcm[i], Temp, Temp); /*remove denominators */
exactdivint (Temp, oD[j], A[i][j]); /*reduce by former denominator */
}
if ( ineq == EQ ) /* input is linearity */
{
Q->linearity[Q->nlinearity]=row;
Q->nlinearity++;
}
/* 2010.4.26 Set Gcd and Lcm for the non-existant rows when nonnegative set */
if(Q->nonnegative && row==m)
for(j=1;j<=d;j++)
{ itomp (ONE, Lcm[m+j]);
itomp (ONE, Gcd[m+j]);
}
lrs_clear_mp_vector (oD,d);
lrs_clear_mp(Temp); lrs_clear_mp(mpone);
} /* end of lrs_set_row_mp */
void
lrs_set_obj(lrs_dic *P, lrs_dat *Q, long num[], long den[], long max)
{
long i;
if (max == MAXIMIZE)
Q->maximize=TRUE;
else
{
Q->minimize=TRUE;
for(i=0;i<=P->d;i++)
num[i]=-num[i];
}
lrs_set_row(P,Q,0L,num,den,GE);
}
void
lrs_set_obj_mp(lrs_dic *P, lrs_dat *Q, lrs_mp_vector num, lrs_mp_vector den, long max)
{
long i;
if (max == MAXIMIZE)
Q->maximize=TRUE;
else
{
Q->minimize=TRUE;
for(i=0;i<=P->d;i++)
changesign(num[i]);
}
lrs_set_row_mp(P,Q,0L,num,den,GE);
}
long
lrs_solve_lp(lrs_dic *P, lrs_dat *Q)
/* user callable function to solve lp only */
{
lrs_mp_matrix Lin; /* holds input linearities if any are found */
long col;
Q->lponly = TRUE;
if (!lrs_getfirstbasis (&P, Q, &Lin, FALSE))
return FALSE;
/* There may have been column redundancy */
/* If so the linearity space is obtained and redundant */
/* columns are removed. User can access linearity space */
/* from lrs_mp_matrix Lin dimensions nredundcol x d+1 */
for (col = 0; col < Q->nredundcol; col++) /* print linearity space */
lrs_printoutput (Q, Lin[col]); /* Array Lin[][] holds the coeffs. */
return TRUE;
} /* end of lrs_solve_lp */
long
dan_selectpivot (lrs_dic * P, lrs_dat * Q, long *r, long *s)
/* select pivot indices using dantzig simplex method */
/* largest coefficient with lexicographic rule to avoid cycling */
/* Bohdan Kaluzny's handiwork */
/* returns TRUE if pivot found else FALSE */
/* pivot variables are B[*r] C[*s] in locations Row[*r] Col[*s] */
{
long j,k,col;
lrs_mp coeff;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *Col = P->Col;
long d = P->d;
lrs_alloc_mp (coeff);
*r = 0;
*s = d;
j = 0;
k = 0;
itomp(0,coeff);
/*find positive cost coef */
while (k < d)
{
if(greater(A[0][Col[k]],coeff))
{
j = k;
copy(coeff,A[0][Col[j]]);
}
k++;
}
if (positive(coeff)) /* pivot column found! */
{
*s = j;
col = Col[j];
/*find min index ratio */
*r = ratio (P, Q, col);
if (*r != 0)
{
lrs_clear_mp(coeff);
return (TRUE); /* unbounded */
}
}
lrs_clear_mp(coeff);
return (FALSE);
} /* end of dan_selectpivot */
long
phaseone (lrs_dic * P, lrs_dat * Q)
/* Do a dual pivot to get primal feasibility (pivot in X_0)*/
/* Bohdan Kaluzny's handiwork */
{
long i, j, k;
/* assign local variables to structures */
lrs_mp_matrix A = P->A;
long *Row = P->Row;
long *Col = P->Col;
long m, d;
lrs_mp b_vector;
lrs_alloc_mp (b_vector);
m = P->m;
d = P->d;
i = 0;
k = d+1;
itomp(0,b_vector);
fprintf (lrs_ofp, "\nLP: Phase One: Dual pivot on artificial variable");
/*find most negative b vector */
while (k <= m)
{
if(greater(b_vector,A[Row[k]][0]))
{
i = k;
copy(b_vector,A[Row[i]][0]);
}
k++;
}
if (negative(b_vector)) /* pivot row found! */
{
j = 0; /*find a positive entry for in row */
while (j < d && !positive (A[Row[i]][Col[j]]))
j++;
if (j >= d)
{
lrs_clear_mp (b_vector);
return (FALSE); /* no positive entry */
}
pivot (P, Q, i, j);
update (P, Q, &i, &j);
}
lrs_clear_mp (b_vector);
return (TRUE);
}
long
lrs_set_digits(long dec_digits)
{
/* convert user specified decimal digits to mp digits */
fprintf (lrs_ofp, "\n*digits %ld", dec_digits);
if (dec_digits > 0)
lrs_digits = DEC2DIG (dec_digits);
if (lrs_digits > MAX_DIGITS)
{
fprintf (lrs_ofp, "\nDigits must be at most %ld\nChange MAX_DIGITS and recompile",
DIG2DEC (MAX_DIGITS));
fflush(stdout);
return (FALSE);
}
return (TRUE);
}
long
lrs_checkbound(lrs_dic *P, lrs_dat *Q)
{
/* check bound on objective and return TRUE if exceeded */
if(!Q->bound)
return FALSE;
if( Q->maximize && comprod(Q->boundn,P->objden,P->objnum,Q->boundd) == 1 )
{
if(Q->verbose)
{
prat(" \nObj value: ",P->objnum,P->objden);
fprintf(lrs_ofp," Pruning ");
}
return TRUE;
}
if( Q->minimize && comprod(Q->boundn,P->objden,P->objnum,Q->boundd) == -1 )
{
if(Q->verbose)
{
prat(" \nObj value: ",P->objnum,P->objden);
fprintf(lrs_ofp," Pruning ");
}
return TRUE;
}
return FALSE;
}
|