Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
parser.ml1 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 1865module MenhirBasics = struct exception Error let _eRR = fun _s -> raise Error type token = | TIMES | ST | SQ | PLUS | PLB | NUM of # 10 "src/lp/parser.mly" (float) # 20 "src/lp/parser.ml" | MLB | MINUS | MIN | MAX | LT | INF | ID of # 11 "src/lp/parser.mly" (string) # 31 "src/lp/parser.ml" | GT | GENERAL | FREE | EQ | END | COLON | BOUND | BINARY end include MenhirBasics # 1 "src/lp/parser.mly" open Lpfile module Cnstr = Constraint let rev_poly tl = Poly.of_term_list (List.rev tl) let rev_neg_head_poly tl = match List.rev tl with | hd :: rest -> Poly.of_term_list (Term.neg hd :: rest) | _-> failwith "empty polynomial expression" # 55 "src/lp/parser.ml" type ('s, 'r) _menhir_state = | MenhirState01 : ('s, _menhir_box_sections) _menhir_state (** State 01. Stack shape : <empty>. Start symbol: sections. *) | MenhirState02 : (('s, _menhir_box_sections) _menhir_cell1_PLUS, _menhir_box_sections) _menhir_state (** State 02. Stack shape : PLUS. Start symbol: sections. *) | MenhirState14 : (('s, _menhir_box_sections) _menhir_cell1_poly_rev, _menhir_box_sections) _menhir_state (** State 14. Stack shape : poly_rev. Start symbol: sections. *) | MenhirState16 : (('s, _menhir_box_sections) _menhir_cell1_poly_rev, _menhir_box_sections) _menhir_state (** State 16. Stack shape : poly_rev. Start symbol: sections. *) | MenhirState18 : (('s, _menhir_box_sections) _menhir_cell1_PLB, _menhir_box_sections) _menhir_state (** State 18. Stack shape : PLB. Start symbol: sections. *) | MenhirState19 : (('s, _menhir_box_sections) _menhir_cell1_MINUS, _menhir_box_sections) _menhir_state (** State 19. Stack shape : MINUS. Start symbol: sections. *) | MenhirState23 : (('s, _menhir_box_sections) _menhir_cell1_MLB, _menhir_box_sections) _menhir_state (** State 23. Stack shape : MLB. Start symbol: sections. *) | MenhirState26 : (('s, _menhir_box_sections) _menhir_cell1_poly_in, _menhir_box_sections) _menhir_state (** State 26. Stack shape : poly_in. Start symbol: sections. *) | MenhirState28 : (('s, _menhir_box_sections) _menhir_cell1_poly_in, _menhir_box_sections) _menhir_state (** State 28. Stack shape : poly_in. Start symbol: sections. *) | MenhirState31 : ('s, _menhir_box_sections) _menhir_state (** State 31. Stack shape : <empty>. Start symbol: sections. *) | MenhirState35 : ('s _menhir_cell0_objective, _menhir_box_sections) _menhir_state (** State 35. Stack shape : objective. Start symbol: sections. *) | MenhirState37 : (('s, _menhir_box_sections) _menhir_cell1_ID, _menhir_box_sections) _menhir_state (** State 37. Stack shape : ID. Start symbol: sections. *) | MenhirState39 : ((('s, _menhir_box_sections) _menhir_cell1_ID, _menhir_box_sections) _menhir_cell1_poly, _menhir_box_sections) _menhir_state (** State 39. Stack shape : ID poly. Start symbol: sections. *) | MenhirState47 : ((('s, _menhir_box_sections) _menhir_cell1_ID, _menhir_box_sections) _menhir_cell1_poly, _menhir_box_sections) _menhir_state (** State 47. Stack shape : ID poly. Start symbol: sections. *) | MenhirState49 : ((('s, _menhir_box_sections) _menhir_cell1_ID, _menhir_box_sections) _menhir_cell1_poly, _menhir_box_sections) _menhir_state (** State 49. Stack shape : ID poly. Start symbol: sections. *) | MenhirState52 : (('s, _menhir_box_sections) _menhir_cell1_poly, _menhir_box_sections) _menhir_state (** State 52. Stack shape : poly. Start symbol: sections. *) | MenhirState54 : (('s, _menhir_box_sections) _menhir_cell1_poly, _menhir_box_sections) _menhir_state (** State 54. Stack shape : poly. Start symbol: sections. *) | MenhirState56 : (('s, _menhir_box_sections) _menhir_cell1_poly, _menhir_box_sections) _menhir_state (** State 56. Stack shape : poly. Start symbol: sections. *) | MenhirState59 : (('s, _menhir_box_sections) _menhir_cell1_cnstr, _menhir_box_sections) _menhir_state (** State 59. Stack shape : cnstr. Start symbol: sections. *) | MenhirState62 : ('s _menhir_cell0_objective _menhir_cell0_cnstrs, _menhir_box_sections) _menhir_state (** State 62. Stack shape : objective cnstrs. Start symbol: sections. *) | MenhirState66 : (('s, _menhir_box_sections) _menhir_cell1_ID, _menhir_box_sections) _menhir_state (** State 66. Stack shape : ID. Start symbol: sections. *) | MenhirState78 : (('s, _menhir_box_sections) _menhir_cell1_lower _menhir_cell0_ID, _menhir_box_sections) _menhir_state (** State 78. Stack shape : lower ID. Start symbol: sections. *) | MenhirState80 : (('s, _menhir_box_sections) _menhir_cell1_bound, _menhir_box_sections) _menhir_state (** State 80. Stack shape : bound. Start symbol: sections. *) | MenhirState82 : ('s _menhir_cell0_objective _menhir_cell0_cnstrs _menhir_cell0_bounds, _menhir_box_sections) _menhir_state (** State 82. Stack shape : objective cnstrs bounds. Start symbol: sections. *) | MenhirState83 : (('s, _menhir_box_sections) _menhir_cell1_GENERAL, _menhir_box_sections) _menhir_state (** State 83. Stack shape : GENERAL. Start symbol: sections. *) | MenhirState84 : (('s, _menhir_box_sections) _menhir_cell1_ID, _menhir_box_sections) _menhir_state (** State 84. Stack shape : ID. Start symbol: sections. *) | MenhirState87 : (('s, _menhir_box_sections) _menhir_cell1_BINARY, _menhir_box_sections) _menhir_state (** State 87. Stack shape : BINARY. Start symbol: sections. *) | MenhirState91 : (('s, _menhir_box_sections) _menhir_cell1_vtype, _menhir_box_sections) _menhir_state (** State 91. Stack shape : vtype. Start symbol: sections. *) and ('s, 'r) _menhir_cell1_bound = | MenhirCell1_bound of 's * ('s, 'r) _menhir_state * (Lpfile.bound) and 's _menhir_cell0_bounds = | MenhirCell0_bounds of 's * (Lpfile.section list) and ('s, 'r) _menhir_cell1_cnstr = | MenhirCell1_cnstr of 's * ('s, 'r) _menhir_state * (Cnstr.t) and 's _menhir_cell0_cnstrs = | MenhirCell0_cnstrs of 's * (Lpfile.section list) and ('s, 'r) _menhir_cell1_lower = | MenhirCell1_lower of 's * ('s, 'r) _menhir_state * (float) and 's _menhir_cell0_objective = | MenhirCell0_objective of 's * (Lpfile.section list) and ('s, 'r) _menhir_cell1_poly = | MenhirCell1_poly of 's * ('s, 'r) _menhir_state * (Poly.t) and ('s, 'r) _menhir_cell1_poly_in = | MenhirCell1_poly_in of 's * ('s, 'r) _menhir_state * (Poly.t) and ('s, 'r) _menhir_cell1_poly_rev = | MenhirCell1_poly_rev of 's * ('s, 'r) _menhir_state * (Term.t list) and ('s, 'r) _menhir_cell1_vtype = | MenhirCell1_vtype of 's * ('s, 'r) _menhir_state * (Lpfile.section) and ('s, 'r) _menhir_cell1_BINARY = | MenhirCell1_BINARY of 's * ('s, 'r) _menhir_state and ('s, 'r) _menhir_cell1_GENERAL = | MenhirCell1_GENERAL of 's * ('s, 'r) _menhir_state and ('s, 'r) _menhir_cell1_ID = | MenhirCell1_ID of 's * ('s, 'r) _menhir_state * # 11 "src/lp/parser.mly" (string) # 239 "src/lp/parser.ml" and 's _menhir_cell0_ID = | MenhirCell0_ID of 's * # 11 "src/lp/parser.mly" (string) # 246 "src/lp/parser.ml" and ('s, 'r) _menhir_cell1_MINUS = | MenhirCell1_MINUS of 's * ('s, 'r) _menhir_state and ('s, 'r) _menhir_cell1_MLB = | MenhirCell1_MLB of 's * ('s, 'r) _menhir_state and ('s, 'r) _menhir_cell1_PLB = | MenhirCell1_PLB of 's * ('s, 'r) _menhir_state and ('s, 'r) _menhir_cell1_PLUS = | MenhirCell1_PLUS of 's * ('s, 'r) _menhir_state and _menhir_box_sections = | MenhirBox_sections of (Lpfile.t) [@@unboxed] let _menhir_action_01 = fun v -> ( # 74 "src/lp/parser.mly" ( {name=v; lb=Float.neg_infinity; ub=Float.infinity} ) # 269 "src/lp/parser.ml" : (Lpfile.bound)) let _menhir_action_02 = fun lb v -> ( # 75 "src/lp/parser.mly" ( {name=v; lb; ub=Float.infinity} ) # 277 "src/lp/parser.ml" : (Lpfile.bound)) let _menhir_action_03 = fun ub v -> ( # 76 "src/lp/parser.mly" ( {name=v; lb=Float.zero; ub} ) # 285 "src/lp/parser.ml" : (Lpfile.bound)) let _menhir_action_04 = fun lb ub v -> ( # 77 "src/lp/parser.mly" ( {name=v; lb; ub} ) # 293 "src/lp/parser.ml" : (Lpfile.bound)) let _menhir_action_05 = fun () -> ( # 70 "src/lp/parser.mly" ( [] ) # 301 "src/lp/parser.ml" : (Lpfile.section list)) let _menhir_action_06 = fun l -> ( # 71 "src/lp/parser.mly" ( [Sbound l] ) # 309 "src/lp/parser.ml" : (Lpfile.section list)) let _menhir_action_07 = fun l p rhs -> ( # 33 "src/lp/parser.mly" ( Cnstr.eq ~name:l p rhs ) # 317 "src/lp/parser.ml" : (Cnstr.t)) let _menhir_action_08 = fun l p rhs -> ( # 34 "src/lp/parser.mly" ( Cnstr.lt ~name:l p rhs ) # 325 "src/lp/parser.ml" : (Cnstr.t)) let _menhir_action_09 = fun l p rhs -> ( # 35 "src/lp/parser.mly" ( Cnstr.gt ~name:l p rhs ) # 333 "src/lp/parser.ml" : (Cnstr.t)) let _menhir_action_10 = fun p rhs -> ( # 36 "src/lp/parser.mly" ( Cnstr.eq p rhs ) # 341 "src/lp/parser.ml" : (Cnstr.t)) let _menhir_action_11 = fun p rhs -> ( # 37 "src/lp/parser.mly" ( Cnstr.lt p rhs ) # 349 "src/lp/parser.ml" : (Cnstr.t)) let _menhir_action_12 = fun p rhs -> ( # 38 "src/lp/parser.mly" ( Cnstr.gt p rhs ) # 357 "src/lp/parser.ml" : (Cnstr.t)) let _menhir_action_13 = fun l -> ( # 30 "src/lp/parser.mly" ( [Scnstr l] ) # 365 "src/lp/parser.ml" : (Lpfile.section list)) let _menhir_action_14 = fun n -> ( # 41 "src/lp/parser.mly" ( Poly.c n ) # 373 "src/lp/parser.ml" : (Poly.t)) let _menhir_action_15 = fun () -> ( # 216 "<standard.mly>" ( [] ) # 381 "src/lp/parser.ml" : (Lpfile.section list)) let _menhir_action_16 = fun x xs -> ( # 219 "<standard.mly>" ( x :: xs ) # 389 "src/lp/parser.ml" : (Lpfile.section list)) let _menhir_action_17 = fun s -> ( # 80 "src/lp/parser.mly" ( s ) # 397 "src/lp/parser.ml" : (float)) let _menhir_action_18 = fun () -> ( # 81 "src/lp/parser.mly" ( Float.neg_infinity ) # 405 "src/lp/parser.ml" : (float)) let _menhir_action_19 = fun x -> ( # 228 "<standard.mly>" ( [ x ] ) # 413 "src/lp/parser.ml" : (string list)) let _menhir_action_20 = fun x xs -> ( # 231 "<standard.mly>" ( x :: xs ) # 421 "src/lp/parser.ml" : (string list)) let _menhir_action_21 = fun x -> ( # 228 "<standard.mly>" ( [ x ] ) # 429 "src/lp/parser.ml" : (Lpfile.bound list)) let _menhir_action_22 = fun x xs -> ( # 231 "<standard.mly>" ( x :: xs ) # 437 "src/lp/parser.ml" : (Lpfile.bound list)) let _menhir_action_23 = fun x -> ( # 228 "<standard.mly>" ( [ x ] ) # 445 "src/lp/parser.ml" : (Cnstr.t list)) let _menhir_action_24 = fun x xs -> ( # 231 "<standard.mly>" ( x :: xs ) # 453 "src/lp/parser.ml" : (Cnstr.t list)) let _menhir_action_25 = fun p -> ( # 26 "src/lp/parser.mly" ( [Sobj (Objective.Min (Poly.half_quad p))] ) # 461 "src/lp/parser.ml" : (Lpfile.section list)) let _menhir_action_26 = fun p -> ( # 27 "src/lp/parser.mly" ( [Sobj (Objective.Max (Poly.half_quad p))] ) # 469 "src/lp/parser.ml" : (Lpfile.section list)) let _menhir_action_27 = fun p -> ( # 44 "src/lp/parser.mly" ( p ) # 477 "src/lp/parser.ml" : (Poly.t)) let _menhir_action_28 = fun p -> ( # 45 "src/lp/parser.mly" ( p ) # 485 "src/lp/parser.ml" : (Poly.t)) let _menhir_action_29 = fun p -> ( # 46 "src/lp/parser.mly" ( Poly.neg p ) # 493 "src/lp/parser.ml" : (Poly.t)) let _menhir_action_30 = fun p0 p1 -> ( # 47 "src/lp/parser.mly" ( Poly.(p0 ++ p1) ) # 501 "src/lp/parser.ml" : (Poly.t)) let _menhir_action_31 = fun p0 p1 -> ( # 48 "src/lp/parser.mly" ( Poly.(p0 -- p1) ) # 509 "src/lp/parser.ml" : (Poly.t)) let _menhir_action_32 = fun p -> ( # 51 "src/lp/parser.mly" ( rev_poly p ) # 517 "src/lp/parser.ml" : (Poly.t)) let _menhir_action_33 = fun p -> ( # 52 "src/lp/parser.mly" ( rev_poly p ) # 525 "src/lp/parser.ml" : (Poly.t)) let _menhir_action_34 = fun p -> ( # 53 "src/lp/parser.mly" ( rev_neg_head_poly p ) # 533 "src/lp/parser.ml" : (Poly.t)) let _menhir_action_35 = fun t -> ( # 56 "src/lp/parser.mly" ( [t] ) # 541 "src/lp/parser.ml" : (Term.t list)) let _menhir_action_36 = fun p t -> ( # 57 "src/lp/parser.mly" ( t :: p ) # 549 "src/lp/parser.ml" : (Term.t list)) let _menhir_action_37 = fun p t -> ( # 58 "src/lp/parser.mly" ( Term.neg t :: p ) # 557 "src/lp/parser.ml" : (Term.t list)) let _menhir_action_38 = fun b c o v -> ( # 22 "src/lp/parser.mly" ( o @ c @ b @ v ) # 565 "src/lp/parser.ml" : (Lpfile.t)) let _menhir_action_39 = fun n -> ( # 89 "src/lp/parser.mly" ( n ) # 573 "src/lp/parser.ml" : (float)) let _menhir_action_40 = fun n -> ( # 90 "src/lp/parser.mly" ( n ) # 581 "src/lp/parser.ml" : (float)) let _menhir_action_41 = fun n -> ( # 91 "src/lp/parser.mly" ( Float.neg n ) # 589 "src/lp/parser.ml" : (float)) let _menhir_action_42 = fun n -> ( # 61 "src/lp/parser.mly" ( Term.Const n ) # 597 "src/lp/parser.ml" : (Term.t)) let _menhir_action_43 = fun v -> ( # 62 "src/lp/parser.mly" ( Term.Linear (Float.one, Var.make v) ) # 605 "src/lp/parser.ml" : (Term.t)) let _menhir_action_44 = fun n v -> ( # 63 "src/lp/parser.mly" ( Term.Linear (n, Var.make v) ) # 613 "src/lp/parser.ml" : (Term.t)) let _menhir_action_45 = fun v0 v1 -> ( # 64 "src/lp/parser.mly" ( Term.Quad (Float.one, Var.make v0, Var.make v1) ) # 621 "src/lp/parser.ml" : (Term.t)) let _menhir_action_46 = fun n v0 v1 -> ( # 65 "src/lp/parser.mly" ( Term.Quad (n, Var.make v0, Var.make v1) ) # 629 "src/lp/parser.ml" : (Term.t)) let _menhir_action_47 = fun v -> ( # 66 "src/lp/parser.mly" ( Term.Quad (Float.one, Var.make v, Var.make v) ) # 637 "src/lp/parser.ml" : (Term.t)) let _menhir_action_48 = fun n v -> ( # 67 "src/lp/parser.mly" ( Term.Quad (n, Var.make v, Var.make v) ) # 645 "src/lp/parser.ml" : (Term.t)) let _menhir_action_49 = fun s -> ( # 84 "src/lp/parser.mly" ( s ) # 653 "src/lp/parser.ml" : (float)) let _menhir_action_50 = fun () -> ( # 85 "src/lp/parser.mly" ( Float.infinity ) # 661 "src/lp/parser.ml" : (float)) let _menhir_action_51 = fun () -> ( # 86 "src/lp/parser.mly" ( Float.infinity ) # 669 "src/lp/parser.ml" : (float)) let _menhir_action_52 = fun l -> ( # 97 "src/lp/parser.mly" ( Sgeneral l ) # 677 "src/lp/parser.ml" : (Lpfile.section)) let _menhir_action_53 = fun l -> ( # 98 "src/lp/parser.mly" ( Sbinary l ) # 685 "src/lp/parser.ml" : (Lpfile.section)) let _menhir_action_54 = fun l -> ( # 94 "src/lp/parser.mly" ( l ) # 693 "src/lp/parser.ml" : (Lpfile.section list)) let _menhir_print_token : token -> string = fun _tok -> match _tok with | TIMES -> "TIMES" | ST -> "ST" | SQ -> "SQ" | PLUS -> "PLUS" | PLB -> "PLB" | NUM _ -> "NUM" | MLB -> "MLB" | MINUS -> "MINUS" | MIN -> "MIN" | MAX -> "MAX" | LT -> "LT" | INF -> "INF" | ID _ -> "ID" | GT -> "GT" | GENERAL -> "GENERAL" | FREE -> "FREE" | EQ -> "EQ" | END -> "END" | COLON -> "COLON" | BOUND -> "BOUND" | BINARY -> "BINARY" let _menhir_fail : unit -> 'a = fun () -> Printf.eprintf "Internal failure -- please contact the parser generator's developers.\n%!"; assert false include struct [@@@ocaml.warning "-4-37"] let _menhir_run_93 : type ttv_stack. ttv_stack _menhir_cell0_objective _menhir_cell0_cnstrs _menhir_cell0_bounds -> _ -> _menhir_box_sections = fun _menhir_stack _v -> let l = _v in let _v = _menhir_action_54 l in let MenhirCell0_bounds (_menhir_stack, b) = _menhir_stack in let MenhirCell0_cnstrs (_menhir_stack, c) = _menhir_stack in let MenhirCell0_objective (_menhir_stack, o) = _menhir_stack in let v = _v in let _v = _menhir_action_38 b c o v in MenhirBox_sections _v let rec _menhir_run_92 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_vtype -> _ -> _menhir_box_sections = fun _menhir_stack _v -> let MenhirCell1_vtype (_menhir_stack, _menhir_s, x) = _menhir_stack in let xs = _v in let _v = _menhir_action_16 x xs in _menhir_goto_list_vtype_ _menhir_stack _v _menhir_s and _menhir_goto_list_vtype_ : type ttv_stack. ttv_stack -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _v _menhir_s -> match _menhir_s with | MenhirState91 -> _menhir_run_92 _menhir_stack _v | MenhirState82 -> _menhir_run_93 _menhir_stack _v | _ -> _menhir_fail () let rec _menhir_run_83 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _menhir_stack = MenhirCell1_GENERAL (_menhir_stack, _menhir_s) in let _menhir_s = MenhirState83 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | ID _v -> _menhir_run_84 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR () and _menhir_run_84 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | ID _v_0 -> let _menhir_stack = MenhirCell1_ID (_menhir_stack, _menhir_s, _v) in _menhir_run_84 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState84 | BINARY | END | GENERAL -> let x = _v in let _v = _menhir_action_19 x in _menhir_goto_nonempty_list_ID_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_goto_nonempty_list_ID_ : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState84 -> _menhir_run_85 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState83 -> _menhir_run_86 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState87 -> _menhir_run_88 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_85 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_ID -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_ID (_menhir_stack, _menhir_s, x) = _menhir_stack in let xs = _v in let _v = _menhir_action_20 x xs in _menhir_goto_nonempty_list_ID_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_86 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_GENERAL -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_GENERAL (_menhir_stack, _menhir_s) = _menhir_stack in let l = _v in let _v = _menhir_action_52 l in _menhir_goto_vtype _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_vtype : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_vtype (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | GENERAL -> _menhir_run_83 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState91 | BINARY -> _menhir_run_87 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState91 | END -> let _v_0 = _menhir_action_15 () in _menhir_run_92 _menhir_stack _v_0 | _ -> _menhir_fail () and _menhir_run_87 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _menhir_stack = MenhirCell1_BINARY (_menhir_stack, _menhir_s) in let _menhir_s = MenhirState87 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | ID _v -> _menhir_run_84 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR () and _menhir_run_88 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_BINARY -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_BINARY (_menhir_stack, _menhir_s) = _menhir_stack in let l = _v in let _v = _menhir_action_53 l in _menhir_goto_vtype _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok let _menhir_goto_bounds : type ttv_stack. ttv_stack _menhir_cell0_objective _menhir_cell0_cnstrs -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let _menhir_stack = MenhirCell0_bounds (_menhir_stack, _v) in match (_tok : MenhirBasics.token) with | GENERAL -> _menhir_run_83 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState82 | BINARY -> _menhir_run_87 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState82 | END -> let _v_0 = _menhir_action_15 () in _menhir_run_93 _menhir_stack _v_0 | _ -> _menhir_fail () let _menhir_run_74 : type ttv_stack. ttv_stack _menhir_cell0_objective _menhir_cell0_cnstrs -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let l = _v in let _v = _menhir_action_06 l in _menhir_goto_bounds _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok let rec _menhir_goto_nonempty_list_bound_ : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState62 -> _menhir_run_74 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState80 -> _menhir_run_81 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_81 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_bound -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_bound (_menhir_stack, _menhir_s, x) = _menhir_stack in let xs = _v in let _v = _menhir_action_22 x xs in _menhir_goto_nonempty_list_bound_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok let rec _menhir_run_02 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _menhir_stack = MenhirCell1_PLUS (_menhir_stack, _menhir_s) in let _menhir_s = MenhirState02 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR () and _menhir_run_03 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | ID _v_0 -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | TIMES -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | ID _v_1 -> let _tok = _menhir_lexer _menhir_lexbuf in let (n, v1, v0) = (_v, _v_1, _v_0) in let _v = _menhir_action_46 n v0 v1 in _menhir_goto_term _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR ()) | SQ -> let _tok = _menhir_lexer _menhir_lexbuf in let (n, v) = (_v, _v_0) in let _v = _menhir_action_48 n v in _menhir_goto_term _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | EQ | GT | LT | MINUS | MLB | PLB | PLUS | ST -> let (n, v) = (_v, _v_0) in let _v = _menhir_action_44 n v in _menhir_goto_term _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR ()) | EQ | GT | LT | MINUS | MLB | PLB | PLUS | ST -> let n = _v in let _v = _menhir_action_42 n in _menhir_goto_term _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_goto_term : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState01 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState02 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState18 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState19 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState23 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState26 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState28 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState31 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState35 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState37 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState59 -> _menhir_run_12 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState14 -> _menhir_run_15 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState16 -> _menhir_run_17 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_12 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let t = _v in let _v = _menhir_action_35 t in _menhir_goto_poly_rev _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_poly_rev : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState02 -> _menhir_run_13 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState19 -> _menhir_run_20 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState01 -> _menhir_run_21 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState18 -> _menhir_run_21 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState23 -> _menhir_run_21 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState26 -> _menhir_run_21 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState28 -> _menhir_run_21 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState31 -> _menhir_run_21 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState35 -> _menhir_run_21 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState37 -> _menhir_run_21 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState59 -> _menhir_run_21 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_13 : type ttv_stack. ((ttv_stack, _menhir_box_sections) _menhir_cell1_PLUS as 'stack) -> _ -> _ -> _ -> ('stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | PLUS -> let _menhir_stack = MenhirCell1_poly_rev (_menhir_stack, _menhir_s, _v) in _menhir_run_14 _menhir_stack _menhir_lexbuf _menhir_lexer | MINUS -> let _menhir_stack = MenhirCell1_poly_rev (_menhir_stack, _menhir_s, _v) in _menhir_run_16 _menhir_stack _menhir_lexbuf _menhir_lexer | EQ | GT | LT | MLB | PLB | ST -> let MenhirCell1_PLUS (_menhir_stack, _menhir_s) = _menhir_stack in let p = _v in let _v = _menhir_action_33 p in _menhir_goto_poly_in _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_14 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_poly_rev -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer -> let _menhir_s = MenhirState14 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR () and _menhir_run_08 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | TIMES -> let _menhir_stack = MenhirCell1_ID (_menhir_stack, _menhir_s, _v) in _menhir_run_09 _menhir_stack _menhir_lexbuf _menhir_lexer | SQ -> let _menhir_stack = MenhirCell1_ID (_menhir_stack, _menhir_s, _v) in _menhir_run_11 _menhir_stack _menhir_lexbuf _menhir_lexer | EQ | GT | LT | MINUS | MLB | PLB | PLUS | ST -> let v = _v in let _v = _menhir_action_43 v in _menhir_goto_term _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_09 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_ID -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | ID _v -> let _tok = _menhir_lexer _menhir_lexbuf in let MenhirCell1_ID (_menhir_stack, _menhir_s, v0) = _menhir_stack in let v1 = _v in let _v = _menhir_action_45 v0 v1 in _menhir_goto_term _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_11 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_ID -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer -> let _tok = _menhir_lexer _menhir_lexbuf in let MenhirCell1_ID (_menhir_stack, _menhir_s, v) = _menhir_stack in let _v = _menhir_action_47 v in _menhir_goto_term _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_16 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_poly_rev -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer -> let _menhir_s = MenhirState16 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR () and _menhir_goto_poly_in : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState18 -> _menhir_run_22 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState23 -> _menhir_run_24 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState01 -> _menhir_run_25 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState31 -> _menhir_run_25 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState35 -> _menhir_run_25 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState37 -> _menhir_run_25 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState59 -> _menhir_run_25 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState26 -> _menhir_run_27 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState28 -> _menhir_run_29 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_22 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_PLB -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_PLB (_menhir_stack, _menhir_s) = _menhir_stack in let p = _v in let _v = _menhir_action_28 p in _menhir_goto_poly _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_poly : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState01 -> _menhir_run_30 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState31 -> _menhir_run_32 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState37 -> _menhir_run_38 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState35 -> _menhir_run_51 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState59 -> _menhir_run_51 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_30 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let p = _v in let _v = _menhir_action_25 p in _menhir_goto_objective _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok and _menhir_goto_objective : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let _menhir_stack = MenhirCell0_objective (_menhir_stack, _v) in match (_tok : MenhirBasics.token) with | ST -> let _menhir_s = MenhirState35 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_02 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PLB -> _menhir_run_18 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MLB -> _menhir_run_23 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | MINUS -> _menhir_run_19 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ID _v -> _menhir_run_36 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR ()) | _ -> _eRR () and _menhir_run_18 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _menhir_stack = MenhirCell1_PLB (_menhir_stack, _menhir_s) in let _menhir_s = MenhirState18 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_02 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_19 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR () and _menhir_run_19 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _menhir_stack = MenhirCell1_MINUS (_menhir_stack, _menhir_s) in let _menhir_s = MenhirState19 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR () and _menhir_run_23 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _menhir_stack = MenhirCell1_MLB (_menhir_stack, _menhir_s) in let _menhir_s = MenhirState23 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_02 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_19 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR () and _menhir_run_36 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | TIMES -> let _menhir_stack = MenhirCell1_ID (_menhir_stack, _menhir_s, _v) in _menhir_run_09 _menhir_stack _menhir_lexbuf _menhir_lexer | SQ -> let _menhir_stack = MenhirCell1_ID (_menhir_stack, _menhir_s, _v) in _menhir_run_11 _menhir_stack _menhir_lexbuf _menhir_lexer | COLON -> let _menhir_stack = MenhirCell1_ID (_menhir_stack, _menhir_s, _v) in let _menhir_s = MenhirState37 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_02 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PLB -> _menhir_run_18 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MLB -> _menhir_run_23 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | MINUS -> _menhir_run_19 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR ()) | EQ | GT | LT | MINUS | MLB | PLB | PLUS -> let v = _v in let _v = _menhir_action_43 v in _menhir_goto_term _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_32 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let p = _v in let _v = _menhir_action_26 p in _menhir_goto_objective _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok and _menhir_run_38 : type ttv_stack. ((ttv_stack, _menhir_box_sections) _menhir_cell1_ID as 'stack) -> _ -> _ -> _ -> ('stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_poly (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | LT -> let _menhir_s = MenhirState39 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_40 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_42 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_43 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | GT -> let _menhir_s = MenhirState47 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_40 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_42 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_43 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | EQ -> let _menhir_s = MenhirState49 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_40 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_42 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_43 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | _ -> _eRR () and _menhir_run_40 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _menhir_stack = MenhirCell1_PLUS (_menhir_stack, _menhir_s) in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | NUM _v -> _menhir_run_41 _menhir_stack _menhir_lexbuf _menhir_lexer _v | _ -> _eRR () and _menhir_run_41 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_PLUS -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v -> let _tok = _menhir_lexer _menhir_lexbuf in let MenhirCell1_PLUS (_menhir_stack, _menhir_s) = _menhir_stack in let n = _v in let _v = _menhir_action_40 n in _menhir_goto_signed _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_signed : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState39 -> _menhir_run_45 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState47 -> _menhir_run_45 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState49 -> _menhir_run_45 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState52 -> _menhir_run_45 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState54 -> _menhir_run_45 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState56 -> _menhir_run_45 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState66 -> _menhir_run_71 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState78 -> _menhir_run_71 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState62 -> _menhir_run_73 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState80 -> _menhir_run_73 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_45 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let n = _v in let _v = _menhir_action_14 n in _menhir_goto_const _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_const : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState39 -> _menhir_run_46 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState47 -> _menhir_run_48 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState49 -> _menhir_run_50 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState52 -> _menhir_run_53 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState54 -> _menhir_run_55 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState56 -> _menhir_run_57 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_46 : type ttv_stack. ((ttv_stack, _menhir_box_sections) _menhir_cell1_ID, _menhir_box_sections) _menhir_cell1_poly -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_poly (_menhir_stack, _, p) = _menhir_stack in let MenhirCell1_ID (_menhir_stack, _menhir_s, l) = _menhir_stack in let rhs = _v in let _v = _menhir_action_08 l p rhs in _menhir_goto_cnstr _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_cnstr : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | PLUS -> let _menhir_stack = MenhirCell1_cnstr (_menhir_stack, _menhir_s, _v) in _menhir_run_02 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState59 | PLB -> let _menhir_stack = MenhirCell1_cnstr (_menhir_stack, _menhir_s, _v) in _menhir_run_18 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState59 | NUM _v_0 -> let _menhir_stack = MenhirCell1_cnstr (_menhir_stack, _menhir_s, _v) in _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState59 | MLB -> let _menhir_stack = MenhirCell1_cnstr (_menhir_stack, _menhir_s, _v) in _menhir_run_23 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState59 | MINUS -> let _menhir_stack = MenhirCell1_cnstr (_menhir_stack, _menhir_s, _v) in _menhir_run_19 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState59 | ID _v_1 -> let _menhir_stack = MenhirCell1_cnstr (_menhir_stack, _menhir_s, _v) in _menhir_run_36 _menhir_stack _menhir_lexbuf _menhir_lexer _v_1 MenhirState59 | BINARY | BOUND | END | GENERAL -> let x = _v in let _v = _menhir_action_23 x in _menhir_goto_nonempty_list_cnstr_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_goto_nonempty_list_cnstr_ : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState35 -> _menhir_run_58 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState59 -> _menhir_run_60 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_58 : type ttv_stack. ttv_stack _menhir_cell0_objective -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let l = _v in let _v = _menhir_action_13 l in let _menhir_stack = MenhirCell0_cnstrs (_menhir_stack, _v) in match (_tok : MenhirBasics.token) with | BOUND -> let _menhir_s = MenhirState62 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_40 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_42 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_63 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ID _v -> _menhir_run_65 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR ()) | BINARY | END | GENERAL -> let _v = _menhir_action_05 () in _menhir_goto_bounds _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_42 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in let n = _v in let _v = _menhir_action_39 n in _menhir_goto_signed _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_63 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | NUM _v -> let _menhir_stack = MenhirCell1_MINUS (_menhir_stack, _menhir_s) in _menhir_run_44 _menhir_stack _menhir_lexbuf _menhir_lexer _v | INF -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_18 () in _menhir_goto_lower _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_44 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_MINUS -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v -> let _tok = _menhir_lexer _menhir_lexbuf in let MenhirCell1_MINUS (_menhir_stack, _menhir_s) = _menhir_stack in let n = _v in let _v = _menhir_action_41 n in _menhir_goto_signed _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_lower : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | LT -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | ID _v_0 -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | LT -> let _menhir_stack = MenhirCell1_lower (_menhir_stack, _menhir_s, _v) in let _menhir_stack = MenhirCell0_ID (_menhir_stack, _v_0) in let _menhir_s = MenhirState78 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_67 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_42 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_43 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | INF -> _menhir_run_69 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | BINARY | END | GENERAL | ID _ | MINUS | NUM _ | PLUS -> let (v, lb) = (_v_0, _v) in let _v = _menhir_action_02 lb v in _menhir_goto_bound _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR ()) | _ -> _eRR ()) | _ -> _eRR () and _menhir_run_67 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | NUM _v -> let _menhir_stack = MenhirCell1_PLUS (_menhir_stack, _menhir_s) in _menhir_run_41 _menhir_stack _menhir_lexbuf _menhir_lexer _v | INF -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_51 () in _menhir_goto_upper _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_goto_upper : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState66 -> _menhir_run_70 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState78 -> _menhir_run_79 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_70 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_ID -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_ID (_menhir_stack, _menhir_s, v) = _menhir_stack in let ub = _v in let _v = _menhir_action_03 ub v in _menhir_goto_bound _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_bound : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | PLUS -> let _menhir_stack = MenhirCell1_bound (_menhir_stack, _menhir_s, _v) in _menhir_run_40 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState80 | NUM _v_0 -> let _menhir_stack = MenhirCell1_bound (_menhir_stack, _menhir_s, _v) in _menhir_run_42 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState80 | MINUS -> let _menhir_stack = MenhirCell1_bound (_menhir_stack, _menhir_s, _v) in _menhir_run_63 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState80 | ID _v_1 -> let _menhir_stack = MenhirCell1_bound (_menhir_stack, _menhir_s, _v) in _menhir_run_65 _menhir_stack _menhir_lexbuf _menhir_lexer _v_1 MenhirState80 | BINARY | END | GENERAL -> let x = _v in let _v = _menhir_action_21 x in _menhir_goto_nonempty_list_bound_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_65 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | LT -> let _menhir_stack = MenhirCell1_ID (_menhir_stack, _menhir_s, _v) in let _menhir_s = MenhirState66 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_67 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_42 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_43 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | INF -> _menhir_run_69 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | FREE -> let _tok = _menhir_lexer _menhir_lexbuf in let v = _v in let _v = _menhir_action_01 v in _menhir_goto_bound _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_43 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _menhir_stack = MenhirCell1_MINUS (_menhir_stack, _menhir_s) in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | NUM _v -> _menhir_run_44 _menhir_stack _menhir_lexbuf _menhir_lexer _v | _ -> _eRR () and _menhir_run_69 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in let _v = _menhir_action_50 () in _menhir_goto_upper _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_79 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_lower _menhir_cell0_ID -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell0_ID (_menhir_stack, v) = _menhir_stack in let MenhirCell1_lower (_menhir_stack, _menhir_s, lb) = _menhir_stack in let ub = _v in let _v = _menhir_action_04 lb ub v in _menhir_goto_bound _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_60 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_cnstr -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_cnstr (_menhir_stack, _menhir_s, x) = _menhir_stack in let xs = _v in let _v = _menhir_action_24 x xs in _menhir_goto_nonempty_list_cnstr_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_48 : type ttv_stack. ((ttv_stack, _menhir_box_sections) _menhir_cell1_ID, _menhir_box_sections) _menhir_cell1_poly -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_poly (_menhir_stack, _, p) = _menhir_stack in let MenhirCell1_ID (_menhir_stack, _menhir_s, l) = _menhir_stack in let rhs = _v in let _v = _menhir_action_09 l p rhs in _menhir_goto_cnstr _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_50 : type ttv_stack. ((ttv_stack, _menhir_box_sections) _menhir_cell1_ID, _menhir_box_sections) _menhir_cell1_poly -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_poly (_menhir_stack, _, p) = _menhir_stack in let MenhirCell1_ID (_menhir_stack, _menhir_s, l) = _menhir_stack in let rhs = _v in let _v = _menhir_action_07 l p rhs in _menhir_goto_cnstr _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_53 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_poly -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_poly (_menhir_stack, _menhir_s, p) = _menhir_stack in let rhs = _v in let _v = _menhir_action_11 p rhs in _menhir_goto_cnstr _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_55 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_poly -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_poly (_menhir_stack, _menhir_s, p) = _menhir_stack in let rhs = _v in let _v = _menhir_action_12 p rhs in _menhir_goto_cnstr _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_57 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_poly -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_poly (_menhir_stack, _menhir_s, p) = _menhir_stack in let rhs = _v in let _v = _menhir_action_10 p rhs in _menhir_goto_cnstr _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_71 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let s = _v in let _v = _menhir_action_49 s in _menhir_goto_upper _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_73 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let s = _v in let _v = _menhir_action_17 s in _menhir_goto_lower _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_51 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_poly (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | LT -> let _menhir_s = MenhirState52 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_40 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_42 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_43 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | GT -> let _menhir_s = MenhirState54 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_40 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_42 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_43 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | EQ -> let _menhir_s = MenhirState56 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_40 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_42 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_43 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | _ -> _eRR () and _menhir_run_24 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_MLB -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_MLB (_menhir_stack, _menhir_s) = _menhir_stack in let p = _v in let _v = _menhir_action_29 p in _menhir_goto_poly _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_25 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | PLB -> let _menhir_stack = MenhirCell1_poly_in (_menhir_stack, _menhir_s, _v) in let _menhir_s = MenhirState26 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_02 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_19 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR ()) | MLB -> let _menhir_stack = MenhirCell1_poly_in (_menhir_stack, _menhir_s, _v) in let _menhir_s = MenhirState28 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_02 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MINUS -> _menhir_run_19 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR ()) | EQ | GT | LT | ST -> let p = _v in let _v = _menhir_action_27 p in _menhir_goto_poly _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_27 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_poly_in -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_poly_in (_menhir_stack, _menhir_s, p0) = _menhir_stack in let p1 = _v in let _v = _menhir_action_30 p0 p1 in _menhir_goto_poly _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_29 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_poly_in -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_poly_in (_menhir_stack, _menhir_s, p0) = _menhir_stack in let p1 = _v in let _v = _menhir_action_31 p0 p1 in _menhir_goto_poly _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_20 : type ttv_stack. ((ttv_stack, _menhir_box_sections) _menhir_cell1_MINUS as 'stack) -> _ -> _ -> _ -> ('stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | PLUS -> let _menhir_stack = MenhirCell1_poly_rev (_menhir_stack, _menhir_s, _v) in _menhir_run_14 _menhir_stack _menhir_lexbuf _menhir_lexer | MINUS -> let _menhir_stack = MenhirCell1_poly_rev (_menhir_stack, _menhir_s, _v) in _menhir_run_16 _menhir_stack _menhir_lexbuf _menhir_lexer | EQ | GT | LT | MLB | PLB | ST -> let MenhirCell1_MINUS (_menhir_stack, _menhir_s) = _menhir_stack in let p = _v in let _v = _menhir_action_34 p in _menhir_goto_poly_in _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_21 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_sections) _menhir_state -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | PLUS -> let _menhir_stack = MenhirCell1_poly_rev (_menhir_stack, _menhir_s, _v) in _menhir_run_14 _menhir_stack _menhir_lexbuf _menhir_lexer | MINUS -> let _menhir_stack = MenhirCell1_poly_rev (_menhir_stack, _menhir_s, _v) in _menhir_run_16 _menhir_stack _menhir_lexbuf _menhir_lexer | EQ | GT | LT | MLB | PLB | ST -> let p = _v in let _v = _menhir_action_32 p in _menhir_goto_poly_in _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_15 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_poly_rev -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_poly_rev (_menhir_stack, _menhir_s, p) = _menhir_stack in let t = _v in let _v = _menhir_action_36 p t in _menhir_goto_poly_rev _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_17 : type ttv_stack. (ttv_stack, _menhir_box_sections) _menhir_cell1_poly_rev -> _ -> _ -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_poly_rev (_menhir_stack, _menhir_s, p) = _menhir_stack in let t = _v in let _v = _menhir_action_37 p t in _menhir_goto_poly_rev _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok let _menhir_run_00 : type ttv_stack. ttv_stack -> _ -> _ -> _menhir_box_sections = fun _menhir_stack _menhir_lexbuf _menhir_lexer -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | MIN -> let _menhir_s = MenhirState01 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_02 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PLB -> _menhir_run_18 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MLB -> _menhir_run_23 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | MINUS -> _menhir_run_19 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR ()) | MAX -> let _menhir_s = MenhirState31 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | PLUS -> _menhir_run_02 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PLB -> _menhir_run_18 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | NUM _v -> _menhir_run_03 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MLB -> _menhir_run_23 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | MINUS -> _menhir_run_19 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ID _v -> _menhir_run_08 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR ()) | _ -> _eRR () end let sections = fun _menhir_lexer _menhir_lexbuf -> let _menhir_stack = () in let MenhirBox_sections v = _menhir_run_00 _menhir_stack _menhir_lexbuf _menhir_lexer in v