File size: 68,471 Bytes
6fa4bc9 | 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 | {
"paper_id": "P89-1017",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:14:35.541582Z"
},
"title": "How to cover a grammar",
"authors": [
{
"first": "Ren6",
"middle": [],
"last": "Leermakers",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Philips Research Laboratories",
"location": {
"postBox": "P.O. Box 80.000",
"postCode": "5600 JA",
"settlement": "Eindhoven",
"country": "The Netherlands"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "A novel formalism is presented for Earley-like parsers. It accommodates the simulation of non-deterministic pushdown automata. In particular, the theory is applied to non-deterministlc LRoparsers for RTN grammars.",
"pdf_parse": {
"paper_id": "P89-1017",
"_pdf_hash": "",
"abstract": [
{
"text": "A novel formalism is presented for Earley-like parsers. It accommodates the simulation of non-deterministic pushdown automata. In particular, the theory is applied to non-deterministlc LRoparsers for RTN grammars.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "A major problem of computational linguistics is the inefficiency of parsing natural language. The most popular parsing method for context-free natural language grammars, is the genera/ context-free parsing method of Earley [1] . It was noted by Lang [2] , that Earley-like methods can be used for simulating a class of non-determlnistic pushdown antomata(NPDA). Recently, Tondta [3] presented an algorithm that simulates non-determlnistic LRoparsers, and claimed it to be a fast Mgorithm for practical natural language processing systems. The purpose of the present paper is threefold:",
"cite_spans": [
{
"start": 223,
"end": 226,
"text": "[1]",
"ref_id": "BIBREF0"
},
{
"start": 250,
"end": 253,
"text": "[2]",
"ref_id": "BIBREF1"
},
{
"start": 379,
"end": 382,
"text": "[3]",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "1 A novel formalism is presented for Earley-like parsers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "A key rSle herein is played by the concept of bilinear grammaxs. These are defined as context-free grammars, that satisfy the constraint that the right hand side of each grammar rule have at most two non-terminals. The construction of parse matrices \u2022 for bilinear grammars can be accomplished in cubic time, by an algorithm called C-paxser. It includes an elegant way to represent the (possibly infinite) set of parse trees. A case in point is the use of predict functions, which impose restrictions on the parse matrix, if part of it is known. The exact form and effectiveness of predict functions depend on the bilineax grammar at hand. In order to parse a genera] context-free grammar G, a possible strategy is to define a cover for G that satisfies the bilinear grammar constraint, and subsequently parse it with C-parser using appropriate predict functions. The resulting parsers axe named Earley-like, and differ only in the precise description for deriving covers, and predict functions. 2 We present the Lang algorithm by giving a bilinear grammar corresponding to an NPDA. Employing the correct predict functions, the parser for this grammar is equivalent to Lang's algorithm, although it works for a slightly different class of NPDA's. We show that simulation of nondeterministic LR-parsers can be performed in our version of the Lang framework. It follows that Earley-like Tomita parsers can handle all contextfree grammars, including cyclic ones, although Tomita suggested differently [3] .",
"cite_spans": [
{
"start": 996,
"end": 997,
"text": "2",
"ref_id": "BIBREF1"
},
{
"start": 1498,
"end": 1501,
"text": "[3]",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "3 The formalism is illustrated by applying it to Recursire Transition Networka(RTN)[S]: Applying the techniques of deterministic LR-parsing to grammars written as RTN's has been the subject of recent studies [9, 10] . Using this research, we show how to construct efficient non-deterministic LRparsers for RTN's.",
"cite_spans": [
{
"start": 208,
"end": 211,
"text": "[9,",
"ref_id": "BIBREF8"
},
{
"start": 212,
"end": 215,
"text": "10]",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The simplest parser that is applicable to all context-free languages, is the well-known Cocke-Younger-Kasa~i (CYK) parser. It requires the grammar to be cast in Chomsky normal form. The CYK parser constructs, for the sentence zl ..zn, a parse matrix T. To each part zi+1 ..zj of the input corresponds the matrix element T.j, the value of which is a set of non-terminals from which one can derive zi+1..zj. The algorithm can easily be generalized to work for any grammar, but its complexity then increases with the number of non-terminals at the right hand side of grammar rules. Bilinear grammars have the lowest complexity, disregarding linear grammars which do not have the generative power of general context-free grammars. Below we list the recursion relation T must satisfy for general bilinear grammars. We write the grammar as as a four-tuple (N, E, P, S), where N is the set of non-terminals, E the set of terminals, P the set of production rules, and S 6 N the start symbol. We use variables I,J,K,L E N, ~1,~2,~z E E*, and i,j, kl..k4 as indices of the matrix T 1 . The relation can be solved for the diagonal elements T,, independently of the input sentence. They are equal to the set of non-terminals that derive e in one or more 1 Throughout the paper we identify a gr~ummar rule [ --* with the boolean expression 'l directly derives ~'. steps. Algorithms that construct T for given input, will be referred to as C-paxsers. The time needed for constructing T is at most a cubic function of the input length ~, while it takes an amount of space that is a quadratic function of n. The sentence is successfully parsed, if S E Ton. From T, one can simply deduce an output grammar O, which represents the set of parse trees. Its non-termlnals axe triples < I,i,j >, where I is a non-termlnal of the original bilineax grammar, and i,j are integers between 0 and n. The grammar rules of O axe such that they generate only the sentence that was parsed. The parse trees according to the output grammar are isomorphic to the parse trees generated by the original grammar. The latter parse trees can be obtained from the former by replacing the triple non-terminals by their first element. Matrix elements of T are such that their members cover part of the input. This does not imply that all members axe useful for constructing a possible parse of the input as a whole. In fact, many are useless for this purpose. Depending on the grammar, knowledge of part of T may give restrictions on the possibly useful contents of the rest of T. Making use of these restrictions, one may get more efficient parsers, with the same functionality. As an example, one has the generalized E~rley prediction. It involves functions predlct~ : 2 ~ --* 2N(N is the set of non-terminais), such that one can prove that the useful contents of the Tj~ axe contained in the elements of a matrix @ related to T by",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "C-Parser",
"sec_num": "2"
},
{
"text": "< l,i,# >--. #~ < 3,h,I~2 > fl~ < K,h,/~, > #s = I E T,i AI --. #13[~Kfl3 ^ J G Th~h2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I E ~ij -~ 3J, KEN,i<kt<k2~ks~ka<j(J ~ Tktk~^",
"sec_num": null
},
{
"text": "Soo = S~, O,~ ffi predictj_,(~.o O~,) m T,~, if j > O,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I E ~ij -~ 3J, KEN,i<kt<k2~ks~ka<j(J ~ Tktk~^",
"sec_num": null
},
{
"text": "where O c, called the initial prediction, in some constant set of non-termln~ls that derive (. It follows that T~$ can be calculated from the matrix elements O~t with i < k, l ~ j, i.e. the occurrences of T at the right hand side of the recurrence relation may be replaced by O. Hence 0~j, j > 0, can be calculated from the matrix elements O~t, with ! < j: The algorithm that creates the matrix @ in this way, scanning the input from left to right, is called a restricted C-paxser. The above relation does not determine the diagonal elements of ~ uniquely, and a restricted C-paxser is to find the smal]est solution. Concerning the gain of efficiency, it should be noted that this is very grammax-dependent. For some grammars, restriction of the paxser reduces its complexity, while for others predict functions may even be counter-productive [4] .",
"cite_spans": [
{
"start": 843,
"end": 846,
"text": "[4]",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "I E ~ij -~ 3J, KEN,i<kt<k2~ks~ka<j(J ~ Tktk~^",
"sec_num": null
},
{
"text": "O~j = predict~_~(~ Os~)~ {II~J, xe~t",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I E ~ij -~ 3J, KEN,i<kt<k2~ks~ka<j(J ~ Tktk~^",
"sec_num": null
},
{
"text": "A grammar G is said to be covered by a grammar C(G), if the language generated by both grammars is identical, and if for each sentence the set of parse trees generated by G can be recovered from the set of parse trees generated by C(G). The grammar C(G) is called a cover for G, and we will be interested in covers that axe hilinear, and can thus be parsed by C-paxser. It is rather surprising that at the heart of most parsing algorithms for context-free languages lies a method for deriving a bilineax cover. \u2022 Initial items of the form N~ ---.or rewrite to e:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bilinear covers",
"sec_num": "3"
},
{
"text": "\u2022 For each i one has the final rule/~ --I~.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bilinear covers",
"sec_num": "3"
},
{
"text": "In [4] a similar construction was given, leading to a grammar in canonical two-form for each context-free grammar. Among other things it differs from the above in the appearance of the final rules, which axe indeed superfluous. We have introduced them to make the extension to RTN's, in section 4, more immediate. The description just given, yields a set of production rules consisting of sections P~, that have the following structure:",
"cite_spans": [
{
"start": 3,
"end": 6,
"text": "[4]",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Bilinear covers",
"sec_num": "3"
},
{
"text": "where z~/ E U, {/~i) u E. Note that the start symbol of the cover is/~0. The construction of parse matrices T by C-paxser yields the Eaxley algorithm, without its prediction part. By restricting the parser by the predicto",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pi ---~-,iI211M' ,'fI#-li --I~ z'~/} t.,l{I~ ( --flu {I \u00b0 -* I!},",
"sec_num": null
},
{
"text": "function satisfying v,edicto( W) - ( X, - ^ x, t),",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pi ---~-,iI211M' ,'fI#-li --I~ z'~/} t.,l{I~ ( --flu {I \u00b0 -* I!},",
"sec_num": null
},
{
"text": "the initial prediction 0\u00a2 being the smallest solution of",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pi ---~-,iI211M' ,'fI#-li --I~ z'~/} t.,l{I~ ( --flu {I \u00b0 -* I!},",
"sec_num": null
},
{
"text": "s \u00b0 = v, dicto(S u },",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pi ---~-,iI211M' ,'fI#-li --I~ z'~/} t.,l{I~ ( --flu {I \u00b0 -* I!},",
"sec_num": null
},
{
"text": "one obtains a conventional Earley parser (predict~ -~ U~. {I~ } for k > 0). The cover is such that usually the J predict action speeds up the parser considerably. There are many ways to define covers with dotted rules as non-terminals. For example, from recent work by Kruseman Aretz [6] , we learn a prescription for a bilinear cover for G, which is smaller in size compared to C~(G), at the cost of rules with longer right hand sides. The prescription is as follows (c~, ~, 7, s are sequences of terminals and non-termlnaJs, ~ stands for sequences of terminals only, and A, B, C are non-terminals):",
"cite_spans": [
{
"start": 284,
"end": 287,
"text": "[6]",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Pi ---~-,iI211M' ,'fI#-li --I~ z'~/} t.,l{I~ ( --flu {I \u00b0 -* I!},",
"sec_num": null
},
{
"text": "\u2022 Let I be an item of the form A --* or. Bs, and K is an item B --* */-, then J . \u2022 Let I be an item of the form A ---, 6 .Bc~ or A -* 6., then I --* 6.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pi ---~-,iI211M' ,'fI#-li --I~ z'~/} t.,l{I~ ( --flu {I \u00b0 -* I!},",
"sec_num": null
},
{
"text": "In a similar fashion the items used by Lang [2] in his algorithm for non-deterministic pushdown automata (NPDA) may be interpreted as non-terminals of a hilinear grammar, which we will call the Lang grammar. We adopt restrictions on NPDA's similarly to [2] , the main one being that one or two symbols be pushed on the stack in a singie move, and each stark symbol is removed when it is read. If two symbols &re pushed on the sta~k, the bottom one must be identical to the symbol that is removed in the same transition. Formally we write an NPDA as & 7-tuple (Q, E, r, 6, q0, Co, F), where Q is the set of state symbols, E the input alphabet, r the pnshdown symbols, 6 : Q x (I\" tJ {e}) \u00d7 (E U {\u00a2}) --* 2 Qx((~}uru(rxr)) the transition function, qo E Q the initial state, \u00a20 E 1` the start symbol, and F C_ Q is the set of final states. If the automaton is in state p, and \u00a2~ is the top of the stack, and the current symbol on the input tape is It, then it may make the following eight types of moves: We do not allow transitions such that (r, ~r) ~ 6(p, e, e), or (r, \"yo~) ~ 6(p, ~, e), and assume that the initial state can not be reached from other states. The non-terminals of the Lang grammar are the start symbol 3 and four-tuple entities (Lang's 'items') of the form < q, c~,p, ~ >, where p and q axe states, and cr and stack symbols. The idea is that iff there exists a computation that consumes input symbols zi..zj, starting at state p with a stack ~0 (the leftmost symbol is the From each NPDA one may deduce context-free grammars that generate the same language [5] . The above construction yields such a grammar in bilinear form. It only works for automata, that have transitions like we use above. Lang grammars are rather big, in the rough form given above. Many of the non-terminals do not occur, however, in the derivation of any sentence. They can be removed by a standard procedure [5] . In addition, during parsing, predict functions can be used to limit the number of possible contents of parse matrix elements. The following initial prediction and predict functions render the restricted C-parser functionally equivalent to Lang ",
"cite_spans": [
{
"start": 44,
"end": 47,
"text": "[2]",
"ref_id": "BIBREF1"
},
{
"start": 253,
"end": 256,
"text": "[2]",
"ref_id": "BIBREF1"
},
{
"start": 1575,
"end": 1578,
"text": "[5]",
"ref_id": "BIBREF4"
},
{
"start": 1902,
"end": 1905,
"text": "[5]",
"ref_id": "BIBREF4"
},
{
"start": 2147,
"end": 2151,
"text": "Lang",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Lang grammar",
"sec_num": "3.2"
},
{
"text": "if (r,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Lang grammar",
"sec_num": "3.2"
},
{
"text": "In the preceding section we discussed various ways of deriving bilinear covers. Reversely, one may try to discover what kinds of grammars are covered by certain bllinear grammars. A billnear grammar C~(G), generated from a contextfree grammar by the Earley prescription, has peculiar properties. In general, the sections P~ defined above constitute regular subgrammars, with the ~ as terminals. Alternatively, P~ may be seen as a finite state automaton with states I~. Each rule I~ -l --.//Jz~ corresponds to a transition from I~ to I~ -l labeled by z~. This cotrespondence between regular grammars and finite state automata is in fact a special instance of the correspondence between Lang bilinear grammars and NPDA's.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Extension to RTN's",
"sec_num": "4"
},
{
"text": "The Pi of the above kind are very restricted finite state automata, generating only one string. It is a natural step to remove this restriction and study covers that are the union of general regular subgrammars. Such a grammar will cover a grammar, consisting of rules of the form N~ -. ~, where ~ is a regular expression of terminals and non-terminals. Such grammars go under the names of RTN grammars [8] , or extended contextfree grammars [9] , or regular right part grammars [10] . Without loss of generality we may restrict the format of the fufite state automata, and stipulate that it have one initial \u2022tale I~' and one final state/~, and only the following type of rules:",
"cite_spans": [
{
"start": 403,
"end": 406,
"text": "[8]",
"ref_id": "BIBREF7"
},
{
"start": 442,
"end": 445,
"text": "[9]",
"ref_id": "BIBREF8"
},
{
"start": 479,
"end": 483,
"text": "[10]",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Extension to RTN's",
"sec_num": "4"
},
{
"text": "\u2022 final rules P, -. I~ A covering prescription that turns an RTN into a set of such subgrammars, reduces to C~ if applied to normal context-free grammars, and will be referred to by the same name, although in general the above format does not determine the cover uniquely. For some example definitions of items for RTN's (i.e. the I~), see [1, 9] .",
"cite_spans": [
{
"start": 340,
"end": 343,
"text": "[1,",
"ref_id": "BIBREF0"
},
{
"start": 344,
"end": 346,
"text": "9]",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Extension to RTN's",
"sec_num": "4"
},
{
"text": "A different cover for RTN grammars may be derived from the one discussed in the previous section. So our starting point is that we have a biline&r grammar C\u00a3(G), consisting of regular subgrammars. We (approximately) follow the idea of Tomita, and construct an NPDA from an LR(O)-antomaton, whose states are sets of items. In our case, the items are the non-terminals of C~(G). The full specification of the automaton is extracted from [9] in a straightforward way. Subsequently, the general prescription of chapter 3 yields a bilinear grammar. In this way we arrive at what we would like to call the canonical non-deterministic LR-parser (CNLR parser, for short).",
"cite_spans": [
{
"start": 435,
"end": 438,
"text": "[9]",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The CNLR Cover",
"sec_num": "5"
},
{
"text": "In an increase of non-determinism that can always be avoided by removing the conflicts. One method for doing this has been detailed in [9] , and consist\u2022 of the splitting in parts of the right hand side of grammar rule\u2022 that cause conflicts. Here we need not and will not assume anything about the occurrence of stacking conflict\u2022. Grammars, of which Earley cover\u2022 do not give rise to stacking conflicts, form a proper subset of the set of extended context-free grammars. It could very well be that natural language grammar\u2022, written as RTN's in order to produce 'natural' syntax trees, generally belong to this subset. For an example, see section 6.",
"cite_spans": [
{
"start": 135,
"end": 138,
"text": "[9]",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "LR(0) states",
"sec_num": "5.1"
},
{
"text": "To determine the automaton we specify, in addition to the set of states Q, the set of stack symbols F -- ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The automaton",
"sec_num": "5.2"
},
{
"text": "where $,t,q,p E Q, r E QU{C0}, ~,/~ E r, y E E. A\u2022 was mentioned in section 3.2, this grammar can be reduced by a standard algorithm to contain only useful non-terminals.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "gotol(s,l \u00b0) < t,s,q,~ >-.< s, I2,q,~ >=-t = goto~(\u2022,l'~,) < p,l~,q,~ >--*< s,p,q,# > --reduce(s,I \u00b0) < qo, Co, qo,\u00a2o >\"* ~,",
"sec_num": null
},
{
"text": "If the reduction algorithm of [5] is performed, it turns out that the structure of the above grammar is such that useful non-terminals < p, \u00a2~, q, ~ > satisfy a ~Q=~.otfq ~f~Q=~p=q Furthermore, two non-terminals that differ only in their fourth tuple-element always derive the same strings of terminals. Hence, the fourth element can safely be discarded, as can the second if it is in Q and the first if the second is not in Q. Note that the terminal < q0, q0 > does not appear in this grammar, but will appear in the parse matrix because of the initial prediction 0 c. Of course, when the automaton is fully specified for a particular language, the corresponding CNLR grammar can be reduced still further, see section 6.4.",
"cite_spans": [
{
"start": 30,
"end": 33,
"text": "[5]",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A reduced form",
"sec_num": "5.3.1"
},
{
"text": "Even the grammar in reduced form contains many nonterminals that derive the same set of strings. In particular, all non-terminals that only differ in their second component generate the same language. Thus, the second component only encodes information for the predict functions. The redundancy can be removed by the fol- The function \u00a2 can also be deduced directly from the bare grammar, see section 7.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Final form",
"sec_num": null
},
{
"text": "Each parse tree r according to the original grammar can be obtained from a corresponding parse tree t according to the cover. Each subset of the set of nodes of t is partially ordered by the relation 'is descendant of'. Now consider the set of nodes of t that correspond to nonterminals/~. The 'is descendant of' ordering defines a projected tree that contains, apart from the terminals, only these nodes. The desired parse tree r is now obtained by replacing in the projected tree, each node 1 \u00b0 by a node labeled by N~, the left hand side of grammar rule i of the original grammar.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parse trees",
"sec_num": "5.4"
},
{
"text": "The foregoing was rather technical and we will try to repair this by showing, very explicitly, how the formalism works for a small example grammar. In particular, we will for a small RTN grammar, derive the Earley cover of section 4, and the two covers of sections 5.3.1 and 5.3.2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Example",
"sec_num": "6"
},
{
"text": "The following is a simple grammar for finite subordinate clauses in Dutch. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The grammar",
"sec_num": "6.1"
},
{
"text": "The above grammar is covered by four regular subgrarnm aA's\" ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Earley cover",
"sec_num": "6.2"
},
{
"text": "Given the automaton, the CNLR grammar follows according to section 5.3. After removal of the useless nonterminals we arrive at the following grammar, which is of the format of section 5.3. Either by stripping the above cover, or by directly deducing it ~om the automaton, the bare cover can be obtained. We list it here for completeness. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "CNLR parser",
"sec_num": "6.4"
},
{
"text": "The function ~ has been defined, in section 5, via a grammar reduction algorithm. In this section we wish to show that an alternative method exists, and, moreover, that it can be applied to the class of bilinear tadpole grammars. This class consists of all bilineax grammars without epsilon rules, and with no useless symbols, with non-termlnals (the head) preceding terminals (the tail) at the right hand side of rules.Thus, rules are of the form",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Tadpole Grammars",
"sec_num": "7"
},
{
"text": "A -* a6,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Tadpole Grammars",
"sec_num": "7"
},
{
"text": "where we use the symbol 6 as a variable over possibly empty sequences of terminals, and a denotes a possibly empty sequence of at most two non-terminals. Capital romu letters are used for non-terminals. Note that a CNLR cover is a member of this class of grammars, as are all grammars that are in Chomsky normal form. First we change the grammar a little bit by adding q0 to the set of non-terminals of the grammar, assuming that it was not there yet. Next, we create a new The start symbol of the new grammar, which can be seen as a parametrized version of the tadpole grammar, is defined to be < S, qo >. A non-terminal < B, C > is a useful one, whence C E ~(B) according to the definition of ~, if it occurs in a derivation of the parametrized grammar:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Tadpole Grammars",
"sec_num": "7"
},
{
"text": "< S, qo >---\" ~ < B, C > A,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Tadpole Grammars",
"sec_num": "7"
},
{
"text": "where i\u00a2 is an arbitrary sequence of non-terminals, and A is a sequence of terminals and non-terminals. Then, we conclude that",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Tadpole Grammars",
"sec_num": "7"
},
{
"text": "q0 E ~(B) -< S, q0 >-.'< B, q0 > A C E ~r(B) ^ C <> q0 ---3A,~(< A,C >--'< B,C >/,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Tadpole Grammars",
"sec_num": "7"
},
{
"text": "This definition may be rephrased without reference to the parametrized grammar. Define, for each nonterminal A a set firstnonts(A), such that firstnonts(A) --.. {BIA --\" BA}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "^ < S, qo >--* \" s < C,D >< A,C > A)",
"sec_num": null
},
{
"text": "The predict set o(A) then is obtainabh as",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "^ < S, qo >--* \" s < C,D >< A,C > A)",
"sec_num": null
},
{
"text": "\u2022 (s) = {Cl3.~,v,,(a ~. firstnonts(A)A D --CA6)} u {qolS E firstnonts(S)},",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "^ < S, qo >--* \" s < C,D >< A,C > A)",
"sec_num": null
},
{
"text": "where S is the start symbol. As in section 5.3.2, the initial prediction is given by 0= = {q0}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "^ < S, qo >--* \" s < C,D >< A,C > A)",
"sec_num": null
},
{
"text": "In order to illustrate the amount of freedom that exists for the construction of automata and associated parsers, we shall construct a non-deterministic LL/LRautomaton and the associated cover, along the lines of section 5.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An LL/LR-automaton",
"sec_num": null
},
{
"text": "We change the goto functions, such that they yield sets of states rather that just one state, as follows: ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The automaton",
"sec_num": "8.1"
},
{
"text": "As it is of the tadpole type, the predict mechanism works as explained in section 7. We just mentioned that each LL/LR-state, and hence each non-terminal of the LL/LR-cover, is completely characterized by one non-terminal, or 'item', of the Earley cover. This correspondence between their nonterminals leads to a tight connection between the two covers. Indeed, the cover we obtained from the LL/LRautomaton can be obtained from the cover of section 4, by eliminating the e-rules-I~ ~ --~ e. Of course, the predict functions associated to both covers differ considerably, as it axe the non-terminals deriving e, the items beginning with a dot, that axe the object of prediction in the Earley algorithm, and they axe no longer present in the LL/LR-cover.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "-. s -reduce(s, I\u00b0),",
"sec_num": null
},
{
"text": "We have discussed a number of bilinear covers now, and we could add many more. In fact, the space of bilinear covers for each context-free grammar, or RTN grammar, is huge. The optimal one would be the one that makes C-parser spend the least time on the average sentence. In general, the least time will be more or less equivalent to the smallest content of the parse matrix. Naively, this content would be proportional to the size of the cover. Under this assumption, the smallest cover would be optimal. Note that the number of non-terminals of the CNLR cover is equal to the number of states of the LR-antomaton plus the number of non-terminals of the original grammar. The size of the Earley cover is given by the number of items. In worst case situations the size of the CNLR cover is an exponential function of the size of the original grammar, whereas the size of the Ea~ley cover dearly grows linearly with the size of the original grammar. For many grammars, however, the number of LR(0)-states, may be considerably smaller than the number of items. This seems to be the case for the natural language grammaxs considered by Tomita [3] . His data even suggest that the number of LR(0) states is a sub-linear function of the original grammar size. Note, however, that predict functions may influence the relation between grammar size and average parse matrix content, as some grammars may allow more restrictive predict functions then others. Summarizing, it seems unlikely, that a single parsing approach would be optimal for all grammars. A viable goal of research would be to find methods for determining the optimal cover for a given grammar. Such research should have a solid experimental back-bone. The matter gets still more complicated when the original grammar is an attribute grammar. Attribute evaluation may lead to the rejection of certain parse trees that are correct for the grammar without attributes. Then the ease and efficiency of on-the-fly attribute evaluation becomes important, in order to stop wrong parses as soon as possible. In the Rosetta machine translation system [11, 12] , we use an attributed RTN during the analysis of sentences. The attribute evaluation is bottom-up only, and designed in such a way that the grammar is covered by an attributed Earley cover.",
"cite_spans": [
{
"start": 1140,
"end": 1143,
"text": "[3]",
"ref_id": "BIBREF2"
},
{
"start": 2101,
"end": 2105,
"text": "[11,",
"ref_id": "BIBREF10"
},
{
"start": 2106,
"end": 2109,
"text": "12]",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency",
"sec_num": "9"
},
{
"text": "Other points concerning efficiency that we would like to discuss, are issues of precomputation. In the conventional Earley parser, the calculation of the cover is done dynamically, while parsing a sentence. However, it could just as well be done statically, i.e. before parsing, in order to increase parsing performance. For instance, set operations can be implemented more efficiently if the set elements are known non-terminals, rather than unknown items, although this would depend on the choice of programming language. The procedure of generating bilinear covers from LR-antomata should always be performed statically, because of the amount of computation involved. Tomita has reported [3] , that for a number of grammars, his parsing method turns out to be more eflicient than the Earley ~gorithm. It is not clear, whether his results would still hold if the creation of the cover for the Earley parser were being done statically.",
"cite_spans": [
{
"start": 691,
"end": 694,
"text": "[3]",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency",
"sec_num": "9"
},
{
"text": "Onedmight be inclined to think that if use is made of precomputed sets of items, as in LR-parsers, one is bound to have a parser that is significantly different from and probably faster than Earley's algorithm, which computes these sets at parse time. The question is much more subtle as we showed in this paper. On the one hand, non-deterministic LR-parsing comes down to the use of certain covers for the grammar at hand, just like the Earley algorithm. Reversely, we showed that the Earley cover can, with minor modifications, be obtained from the LL/LR-automaton, which also uses precomputed sets of items.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency",
"sec_num": "9"
},
{
"text": "We studied parsing of general context-free languages, by splitting the process into two parts. Firstly, the grammar is turned into bilinear grammar format, and subsequently a general parser for bilinear grammars is applied. Our view on the relation between parsers and covers is similar to the work on covers of Nijholt [7] for grammars that are deterministically parsable.",
"cite_spans": [
{
"start": 312,
"end": 323,
"text": "Nijholt [7]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "10"
},
{
"text": "We established that the Lung algorithm for simulating pushdown automata, hides a prescription for deriving bilinear covers from automata that satisfy certain constraints. Reversely, the LR-parser construction technique has been presented as a way to derive automata from certain bilinear grammars.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "10"
},
{
"text": "We found that the Earley algorithm is intimately related to an automaton that simulates non-deterministic LL-parsing and, furthermore, that non-deterministic LR-automata provide general parsers for context-free grammars, with the same complexity as the Earley algorithm. It should be noted, however, that there are as many parsers with this property, as there are ways to obtain bilinear covers for a given grammar.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "10"
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "An Efficient Context-Free Parsing Algorithm",
"authors": [
{
"first": "J",
"middle": [],
"last": "Earley",
"suffix": ""
}
],
"year": 1970,
"venue": "Communication8 ACM",
"volume": "13",
"issue": "2",
"pages": "94--102",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Earley, J. 1970. An Efficient Context-Free Parsing Algorithm, Communication8 ACM 13(2):94-102.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Deterministic Techniques for Efficient Non-deterministic Parsers",
"authors": [
{
"first": "B",
"middle": [],
"last": "Lang",
"suffix": ""
}
],
"year": 1974,
"venue": "Springer Lecture Notes in Computer Science",
"volume": "14",
"issue": "",
"pages": "255--269",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lang, B. 1974. Deterministic Techniques for Efficient Non-deterministic Parsers, Springer Lecture Notes in Computer Science 14:255-269.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Efficient Parsing for Natural Language",
"authors": [
{
"first": "M",
"middle": [],
"last": "Tomita",
"suffix": ""
}
],
"year": 1986,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tomita, M. 1986. Efficient Parsing for Natural Lan- guage, Kluwer Academic Publishers.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "An improved context-free recognizer",
"authors": [
{
"first": "S",
"middle": [
"L"
],
"last": "Graham",
"suffix": ""
},
{
"first": "M",
"middle": [
"A"
],
"last": "Harrison",
"suffix": ""
},
{
"first": "W",
"middle": [
"L"
],
"last": "Ruzzo",
"suffix": ""
}
],
"year": 1980,
"venue": "ACM trans. actions on Progr. Languages and Systems",
"volume": "2",
"issue": "",
"pages": "415--462",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Graham, S.L., M.A. Harrison and W.L. Ruzzo 1980. An improved context-free recognizer, ACM trans. actions on Progr. Languages and Systems 2:415- 462.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "The theory of parsing, translation, and compiling",
"authors": [
{
"first": "A",
"middle": [
"V"
],
"last": "Aho",
"suffix": ""
},
{
"first": "J",
"middle": [
"D"
],
"last": "Ullman",
"suffix": ""
}
],
"year": 1972,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Aho, A.V. and J.D. Ullman 1972. The theory of pars- ing, translation, and compiling, Prentice Hall Inc. Englewood Cliffs N.J.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "A new approach to Earley's parsing algorithm",
"authors": [
{
"first": "F",
"middle": [
"E J"
],
"last": "Kruseman Aretz",
"suffix": ""
}
],
"year": 1989,
"venue": "Science of Computer Programming",
"volume": "12",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kruseman Aretz, F.E.J. 1989. A new approach to Earley's parsing algorithm, Science of Computer Programming volume 12..",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Context-free Grammars: Covers, Normal Forms, and Parsing",
"authors": [
{
"first": "A",
"middle": [],
"last": "Nijholt",
"suffix": ""
}
],
"year": 1980,
"venue": "Lecture Notes in Computer Science",
"volume": "93",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T Nijholt, A. 1980. Context-free Grammars: Cov- ers, Normal Forms, and Parsing, Springer Lecture Notes in Computer Science 93.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Transition network grammars for natural language analysis",
"authors": [
{
"first": "W",
"middle": [
"A"
],
"last": "Woods",
"suffix": ""
}
],
"year": 1970,
"venue": "Commun. ACM",
"volume": "13",
"issue": "",
"pages": "591--602",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Woods, W.A. 1970. Transition network grammars for natural language analysis, Commun. ACM 13:591- 602.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Parsing extended LR(k) grammars, Acta",
"authors": [
{
"first": "P",
"middle": [
"W"
],
"last": "Purdom",
"suffix": ""
},
{
"first": "C",
"middle": [
"A"
],
"last": "Brown",
"suffix": ""
}
],
"year": 1981,
"venue": "",
"volume": "15",
"issue": "",
"pages": "115--127",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Purdom, P.W. and C.A. Brown 1981. Parsing ex- tended LR(k) grammars, Acta [n]ormatica 15:115- 127.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Generation of Efficient LALR Parsers for Regular Right Part Grammars",
"authors": [
{
"first": "I",
"middle": [],
"last": "Nagata",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Sama",
"suffix": ""
}
],
"year": 1986,
"venue": "Acta In]ormatica",
"volume": "23",
"issue": "",
"pages": "149--162",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nagata, I and M. Sama 1986. Generation of Efficient LALR Parsers for Regular Right Part Grammars, Acta In]ormatica 23:149-162.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "The Translation Method of Rosetta",
"authors": [
{
"first": "R",
"middle": [],
"last": "Leermakers",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Rons",
"suffix": ""
}
],
"year": 1986,
"venue": "Computers and Translation",
"volume": "1",
"issue": "",
"pages": "169--183",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Leermakers, R. and J. Rons 1986. The Transla- tion Method of Rosetta, Computers and Transla- tion 1:169-183.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Subgrammars, Rule Classes and Control in the Rosetta Translation System",
"authors": [
{
"first": "L",
"middle": [],
"last": "Appelo",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Fellinger",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Landsbergen",
"suffix": ""
}
],
"year": 1987,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Appelo L., C Fellinger and J. Landsbergen 1987. Subgrammars, Rule Classes and Control in the Rosetta Translation System, Proceedings o/ 3rd",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"uris": null,
"type_str": "figure",
"text": "E Tkak4 A I \"* 81JI~2KI~ A ~a = zi+l ..zkt AB2 = Zk3\u00f71..Zk3 A B3 ~-\" 2~k4-~1..Zj) ^Bt = zi+t..zk~ a ~2 = Zk~..zi)",
"num": null
},
"FIGREF1": {
"uris": null,
"type_str": "figure",
"text": "^K G Tk~k, Afll = z~+l..z~ ^fl~ ----z~+~..z~ Afls = z~+~..z# < I, i, j >--fl~ < 3, h, k~ > ~ -I ~ T~j ^ I --fl~ 3#2 ^J E Tk~ka A fll ----zi+~..zk~ A/@2 ----:gk3.1.1 ..Z i < I, i,j >--* fla _= I ~ T~# A I --* fl~ ^ & = zi+~..zj",
"num": null
},
"FIGREF2": {
"uris": null,
"type_str": "figure",
"text": ",,<~<~<~<~o<_~(3 ~ 0~^ K ~. O~s, , AI --fl~Jfl~Kfls Afl~ = z,+~..z~ Afl~ = z~+z..z~ Aria = z~,+z..z~) V3aeN, i<k~<_k~<j( 3 ~ Okxk~ A I \"-~ fll 3~ Aflx = z~+~..zk~ A fl~ ----Zk~..z~) V(! --~ ^ ~ = ~,+~..z,))",
"num": null
},
"FIGREF3": {
"uris": null,
"type_str": "figure",
"text": "--, IK~, where either J is item A --* c~B~. C~ and ~: = ~C~, or J is item A --* ~B~. and s ---6.",
"num": null
},
"FIGREF4": {
"uris": null,
"type_str": "figure",
"text": "e) E 6(p, e, e): gO to state r if (r, e) E 6(p, or, e): pop ~, go to state r if (r, 3\") ~ 6(p, a, e): pop ~, push 3', go to state r if (r, e) ~ 6(p, e, It): shift input tape, go to state r if (r, 3') E 6(p, e, It): push 7, shift tape, go to r if (r, e) ~ 6(p, c~, It): pop ~, shift tape, go to r if (r, 3\") ~ 6(p, \u00a2~, It): pop c~, push % shift tape, go to r if (r, 3\"or) ~ 6(p, ~, y): push % shift tape, go to r",
"num": null
},
"FIGREF5": {
"uris": null,
"type_str": "figure",
"text": "top), and ending in state q with stack ~0, and if the stack fl(o does not re-occur in intermediate configura~ tions, then < q,a,p,~ >---\" z~..zj. The rewrite rules of the La~g grammar are defined as follows (universal quantification over p, q, r, s E Q; ~, ~, 7 E 1`; z E ~, t.J e, It E E is understood): S -*< p,a, qo,\u00a20 >-p E F (final rules) < r,~,s, 7 >--,< q,~,s, 7 >< p,c~,q,/3 > z ----(,', ~) ~ 6(p, ~, ~) < r, 7, q, ~ >--\"< P, ct, q, ~ > z ((,', ~) ~ 6(,,,,, ~, z))V ((,', '0 E 5(p, e, ,~) ^ (~ = 7)) < r, 7,P,a >---, It ((,, ~) ~ 6(p, ~, It))v ((,, ~) ~ ~(p, ~, It)) < q0, ~0, g0, \u00a20 >--* e (initial rule)",
"num": null
},
"FIGREF6": {
"uris": null,
"type_str": "figure",
"text": "'s original algorithm, albeit that Lang considered & class of NPDA's which is slightly different from the class we alluded to above: s \u00b0 = {< q0,\u00a20,q0,\u00a20 >} predictk(L) = ~ if k = 0 else predic~h(L) --{< s,~,q,~ > 13,,~ < \u00a2,~,r, 3\" >~ L} u{Slk ffi n} (n is sentence length).The Tomita parser[3] simulates an NPDA, constructed from a context-free grammar via LR-parsing tw hies. Within our formalism we can implement this idea, and arrive at an Earley-like version of the Tomita parser, which is able to handle general context-free grammars, including cyclic ones.",
"num": null
},
"FIGREF7": {
"uris": null,
"type_str": "figure",
"text": "rules I I --.[~z, where z ~ Um{J\u00b0m} U ~, k <> 0 and j <> M~. \u2022 the initial rule I/M~ --(. For future reference we define define the set I of nonterminals as I = U,${I~}, and its subset/o = U,{/~i }.",
"num": null
},
"FIGREF8": {
"uris": null,
"type_str": "figure",
"text": "order to derive the set Q of LR(0) states, which are subset\u2022 of I, we first need a few definitions. Let \u2022 be an element of 2 I, then closure(s) is the smMlest element of 2 x, such that s c closure(s)^ ((~! ~ ~osure(s)^ (xp -xl~)) x= ~-~ aos.re(s)) Similarly, the sets gotot(s, z), and goto.j(s, z), where z E /o U E, are defined as goto~(s, ffi) = closu,e({~'lII ~ s ^ (I,* --. I!~) ^ j <> M,}) goto~(s, ~) = closure({I?lI, ~' ~ \u2022 ^ (Ip -I~'ffi)})The set Q then is the smallest one that satisfiesaosnre({&~\u00b0}) ~ q^ (~ ~ q * (gaot(s, =) = O V gotot(s, z) ~ q)^Oao2(,, z) = O v go,o2(s, ~) ~ q))The automaton we look for can be constructed in terms of the LR(0) states. In addition to the goto function\u2022, we will need the predicate reduce, defined by ,'edna(s,_:) --3,,((~ --X~') ^Xl' ~ s).A point of interest is the possible existence of \u2022tacking conflicts[9]. These arise if for some s, z both gotol (s, z) and goto2(a, x) are not empty. Stacking conflict\u2022 cause",
"num": null
},
"FIGREF9": {
"uris": null,
"type_str": "figure",
"text": "--QUI\u00b0u {Co}, the initial state q0 = closure({IoM\u00b0}), the final states F ffi {slrednce(s, ~)}~ and the transition function & 6(s, -f, y) = {(t, q'f)l \"f ~/\u00b0A (0 = goto~(s, y) ^ q ffi s) v(~ = gotol(s, y) ^ q = +))} 6(8,-r, \u00a2) --{(t, q)l~ E/\u00b0h ((t = gotot (s, \"f) Aq = \u00a2)V ((t = goto2 (s, 7) A q = s))} u{(~, ~)l'f ~ q ^ reduce(s, ~)} From the automaton, which is of the type discussed in section 3.2, we deduce the bilinear grammar S --< s,~,q0,\u00a20 >= reduce(s,~) < t,r,q,~ >---~< s,r,q,/~ > y = t = gotoz(s,y) < t, s, s, r >--. y --t = goto2(\u2022, y) < t,#,p,~ >-.< q,~,p,~ > < s,/\u00b0, ,q,~ > -t =",
"num": null
},
"FIGREF10": {
"uris": null,
"type_str": "figure",
"text": "The non-termlnals then become pairs < ~, s >, with ~ ~ I' and s ~ Q. For such nonterminals, the predict functions, mentioned in section 2, must be changed: 0 \u00b0 = {< ~o,~o >} pcedia~(L) = 0 if k = 0 else predicts(L) = {< ~, ~ > 13~ < s, q >E L} U {Sit = n} The grammar gets the general form S --*< s, qo >---reduce(s,/~o) < t,q >--*< ~,q > //= t = gotot(s, 9) < t, s >--* y ----t = gotoa(s, y) >= ~ = ~o~o~(,, ~) < ~, q >-<., ~ > __. reau~(s, ~)",
"num": null
},
"FIGREF11": {
"uris": null,
"type_str": "figure",
"text": "lowing means. Define the function \u00a2 : I' -. 2 Q, such that ~(~r) ----{s{ < or, s > is a useful non-terminal of the above grammar}. Then we may simply parse with the 'bare' grammar, the non-terminals of which are the automaton stack symbols F: S --* S ~ reduce(s, ~0) t --. sy --t =.gotoz(s,y) * --P, -~,(~ = goto20, ~,)) I~, -. ~ -reduce(s, I\u00b0), using the predict functions 0 \u00b0 = {qo} predicth(L) = ~ if k = 0 else preaiah(Z,) = {~1~,(\" ~ L^, ~ ~(~))} u {Slk = .}.",
"num": null
},
"FIGREF12": {
"uris": null,
"type_str": "figure",
"text": "* conj NP VP VP --* [NP] {PP} verb [S] PP --* prep NP NP --* det noun {PP} So we have four regular expressions defining No = S, N1 ffi V P, N2 = P P, N3 --N P.",
"num": null
},
"FIGREF13": {
"uris": null,
"type_str": "figure",
"text": "~0 -z~;I~ -I0~z,\u00b0; Zo ~ -I~; Ig -Io`co.j; Io' --x~;g -I~;II -I~Ig;x ~, -I~erb;X~x?~;x~ -I,*~;P, -~?,,erb;\u00a2? -z~z\u00b0;z~ -x~ &; P, -Xb, erb; x~z** .o.; ~ -It ae*; xt -Note that the Mi in this case turn out as M0 = 4, Mz = 5, M~ = 3, M3 = 4. section 5.1 yields the following set of states: qo = {I~}; ql = {I~,I~}; q2 = {~,I[,I~,~}; qa = {I~}; q, --{IoI }; qs ffi {I~,I$}; q* = {I~,I~}; q, = {Xo~, x,=}; qs = {P,,xD;qo = {zL xD; qlO = {R};q-= {R}; \u00a212 = {xLR} The transitions axe grouped into two parts. First we list the function goto~: goto2(\u00a20, ~o,=~) = ~; goto=(\u00a2l, det) ffi \u00a2~; go=o.(q~, P.) ffi qs; OO=O~(q2, ~) ffi ~s; goto2(,2, verb) ffi q.; goto~(~2, prep) = ~; go\u00a2o2(q2, de0 = q~; got~(~, prep) = qs; goto~(qs,prep) = qs; goto~(qr, conj) --ql; goto~(qs, det) = qa; goto~(qs,prep) = qs; goto2(ql=, prep) \"J-qs Likewise, we have the gotot function, which gives the non-stacking transitions for our grammar: gotol (ql , ~) = q'a; gotol (q,, I~ ) = q,; gotol (q~, noun) = q~; gotol (qs, g) ----qs; gotol(qs, verb) = ~,; goto~(qs, ~=) = qs; goto, (~, , Po ) = elo; goto, (es, ~) = q. ; go,o, (e., ~) = el=; go,o, (q,=, g) = e,, The predicate reduce holds for six pairs of states and non-terminals: redu~O,, Po); redu=O,o, ~); redffi~(q,, ~); reduce(q,l , ]~=); reduce(q,, g); reduce(ql=, l~a )",
"num": null
},
"FIGREF14": {
"uris": null,
"type_str": "figure",
"text": "(\u00a21) ffi ~(q2 ffi ~(q.) = [\u00a20, q,] ~r(q3) --~(qg) ---a(q12) ----~(I \u00b0) = [ql, q2, qs] .(q~) = ~(\u00a2s) = #(q,) = ~(q~0) = ~(:) = [q2] ~0s) = ~(q-) = ~(~) = [q2, q~, q~, q~, q12] ~(g) = [q,l",
"num": null
},
"FIGREF15": {
"uris": null,
"type_str": "figure",
"text": "* q4, q9 -* q3noun, q? \"* qsverb ql -* conj, q3 --* det, q7 \"* verb qs \"* prep, q2 \"* qlI~3, q4 \"* q2]~z qn \"* qs~, g12 \"-* qs~, q12 --* q12~Together with the predict functions defined in section 5.3.2, this grammar should provide an efficient parser for our example grammar.",
"num": null
},
"FIGREF16": {
"uris": null,
"type_str": "figure",
"text": "grammar, inspired by the grammar of 5.3.1, with pairs < A, C > as non=terminals. The rules of the new grammar are such that (with implicit universal quantification over all variables, as before) < A, C >-..~ 6 --A -.~ 6 < A,C >.--~< B,C > 6 m__A..-~ B6 < A,C >-~< B,C >< D,B > 8 =_ A-. BD8",
"num": null
},
"FIGREF17": {
"uris": null,
"type_str": "figure",
"text": "go=o,(s, z) ----{dosure({I,~})lZl ~ s ^ (Z~ --ZI=) A j <> M,} goto~O, =) = {ao.ure({z~})lZ, ~' e s A (Z, ~ --Z,~'=)} The set Q is changed accordingly to be the smallest one that satisfies ctos,,re({Xo\"\u00b0}) E Q^ (s E q =~ (go=o,(s, =) = 0 v goto,(s, =) c q)^ (goto2(s, z) m ~ V gotoa(s, z) C q)) Every state in this automaton is defined as a set clos~re({I~ }) and is, as a consequence, completely characterized by the one non-terminal I~. The reason for calling the above an LL/LR-automaton lies in the fact that the states of LR(0) automata for LL(1) grammars have exactly this property. The predicate reduce is defined as in section 5.1. 8.2 The LL/LR-cover The cover associated with the LL/LR-automaton just defined, is a simple variant of the cover of section 5.3.2: S --s -ffi reduce(s, I \u00b0) t -* 8y =--t E gotox(s,g) t -. y -3,0 ~ ao~oz(s, y)) t -sP,, -~ ~ goto, O,z \u00b0) t --I \u00b0 = 3,(t E goto2(s, I\u00b0))",
"num": null
}
}
}
} |