File size: 85,129 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 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 | {
"paper_id": "P96-1002",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T09:02:34.930862Z"
},
"title": "A Model-Theoretic Framework for Theories of Syntax",
"authors": [
{
"first": "James",
"middle": [],
"last": "Rogers",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Cognitive Science University of Pennsylvania",
"location": {
"addrLine": "Suite 400C",
"postCode": "3401, 19104",
"settlement": "Walnut Street Philadelphia",
"region": "PA"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "A natural next step in the evolution of constraint-based grammar formalisms from rewriting formalisms is to abstract fully away from the details of the grammar mechanism-to express syntactic theories purely in terms of the properties of the class of structures they license. By focusing on the structural properties of languages rather than on mechanisms for generating or checking structures that exhibit those properties, this model-theoretic approach can offer simpler and significantly clearer expression of theories and can potentially provide a uniform formalization, allowing disparate theories to be compared on the basis of those properties. We discuss L2,p, a monadic second-order logical framework for such an approach to syntax that has the distinctive virtue of being superficially expressive-supporting direct statement of most linguistically significant syntactic properties-but having well-defined strong generative capacity-languages are definable in L2K,p iff they are strongly context-free. We draw examples from the realms of GPSG and GB.",
"pdf_parse": {
"paper_id": "P96-1002",
"_pdf_hash": "",
"abstract": [
{
"text": "A natural next step in the evolution of constraint-based grammar formalisms from rewriting formalisms is to abstract fully away from the details of the grammar mechanism-to express syntactic theories purely in terms of the properties of the class of structures they license. By focusing on the structural properties of languages rather than on mechanisms for generating or checking structures that exhibit those properties, this model-theoretic approach can offer simpler and significantly clearer expression of theories and can potentially provide a uniform formalization, allowing disparate theories to be compared on the basis of those properties. We discuss L2,p, a monadic second-order logical framework for such an approach to syntax that has the distinctive virtue of being superficially expressive-supporting direct statement of most linguistically significant syntactic properties-but having well-defined strong generative capacity-languages are definable in L2K,p iff they are strongly context-free. We draw examples from the realms of GPSG and GB.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Generative grammar and formal language theory share a common origin in a procedural notion of grammars: the grammar formalism provides a general mechanism for recognizing or generating languages while the grammar itself specializes that mechanism for a specific language. At least initially there was hope that this relationship would be informative for linguistics, that by characterizing the natural languages in terms of languagetheoretic complexity one would gain insight into the structural regularities of those languages. Moreover, the fact that language-theoretic complexity classes have dual automata-theoretic characterizations offered the prospect that such results might provide abstract models of the human language faculty, thereby not just identifying these regularities, but actually accounting for them.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Over time, the two disciplines have gradually become estranged, principally due to a realization that the structural properties of languages that characterize natural languages may well not be those that can be distinguished by existing language-theoretic complexity classes. Thus the insights offered by formal language theory might actually be misleading in guiding theories of syntax. As a result, the emphasis in generative grammar has turned from formalisms with restricted generative capacity to those that support more natural expression of the observed regularities of languages. While a variety of distinct approaches have developed, most of them can be characterized as constrain~ based--the formalism (or formal framework) provides a class of structures and a means of precisely stating constraints on their form, the linguistic theory is then expressed as a system of constraints (or principles) that characterize the class of well-formed analyses of the strings in the language. 1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "As the study of the formal properties of classes of structures defined in such a way falls within domain of Model Theory, it's not surprising that treatments of the meaning of these systems of constraints are typically couched in terms of formal logic (Kasper and Rounds, 1986; Moshier and Rounds, 1987; Kasper and Rounds, 1990; Gazdar et al., 1988; Johnson, 1988; Smolka, 1989; Dawar and Vijay-Shanker, 1990; Carpenter, 1992; Keller, 1993; Rogers and Vijay-Shanker, 1994) .",
"cite_spans": [
{
"start": 252,
"end": 277,
"text": "(Kasper and Rounds, 1986;",
"ref_id": "BIBREF15"
},
{
"start": 278,
"end": 303,
"text": "Moshier and Rounds, 1987;",
"ref_id": "BIBREF20"
},
{
"start": 304,
"end": 328,
"text": "Kasper and Rounds, 1990;",
"ref_id": "BIBREF16"
},
{
"start": 329,
"end": 349,
"text": "Gazdar et al., 1988;",
"ref_id": "BIBREF8"
},
{
"start": 350,
"end": 364,
"text": "Johnson, 1988;",
"ref_id": "BIBREF13"
},
{
"start": 365,
"end": 378,
"text": "Smolka, 1989;",
"ref_id": "BIBREF28"
},
{
"start": 379,
"end": 409,
"text": "Dawar and Vijay-Shanker, 1990;",
"ref_id": "BIBREF5"
},
{
"start": 410,
"end": 426,
"text": "Carpenter, 1992;",
"ref_id": "BIBREF3"
},
{
"start": 427,
"end": 440,
"text": "Keller, 1993;",
"ref_id": "BIBREF17"
},
{
"start": 441,
"end": 472,
"text": "Rogers and Vijay-Shanker, 1994)",
"ref_id": "BIBREF27"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "While this provides a model-theoretic interpretation of the systems of constraints produced by these formalisms, those systems are typically built by derivational processes that employ extra-logical mechanisms to combine constraints. More recently, it has become clear that in many cases these mechanisms can be replaced with ordinary logical operations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "(See, for instance:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "1This notion of constraint-based includes not only the obvious formalisms, but the formal framework of GB as well. Johnson (1989) , Stabler, Jr. (1992) , Cornell (1992) , Blackburn, Gardent, and Meyer-Viol (1993) , Blackburn and Meyer-Viol (1994) , Keller (1993) , Rogers (1994) , Kracht (1995) , and, anticipating all of these, Johnson and Postal (1980).) This approach abandons the notions of grammar mechanism and derivation in favor of defining languages as classes of more or less ordinary mathematical structures axiomatized by sets of more or less ordinary logical formulae. A grammatical theory expressed within such a framework is just the set of logical consequences of those axioms. This step completes the detachment of generative grammar from its procedural roots. Grammars, in this approach, are purely declarative definitions of a class of structures, completely independent of mechanisms to generate or check them. While it is unlikely that every theory of syntax with an explicit derivational component can be captured in this way, ~ for those that can the logical re-interpretation frequently offers a simplified statement of the theory and clarifies its consequences.",
"cite_spans": [
{
"start": 115,
"end": 129,
"text": "Johnson (1989)",
"ref_id": "BIBREF14"
},
{
"start": 132,
"end": 151,
"text": "Stabler, Jr. (1992)",
"ref_id": "BIBREF29"
},
{
"start": 154,
"end": 168,
"text": "Cornell (1992)",
"ref_id": "BIBREF4"
},
{
"start": 171,
"end": 212,
"text": "Blackburn, Gardent, and Meyer-Viol (1993)",
"ref_id": "BIBREF0"
},
{
"start": 215,
"end": 246,
"text": "Blackburn and Meyer-Viol (1994)",
"ref_id": "BIBREF1"
},
{
"start": 249,
"end": 262,
"text": "Keller (1993)",
"ref_id": "BIBREF17"
},
{
"start": 265,
"end": 278,
"text": "Rogers (1994)",
"ref_id": "BIBREF22"
},
{
"start": 281,
"end": 294,
"text": "Kracht (1995)",
"ref_id": "BIBREF18"
},
{
"start": 329,
"end": 356,
"text": "Johnson and Postal (1980).)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "But the accompanying loss of language-theoretic complexity results is unfortunate. While such results may not be useful in guiding syntactic theory, they are not irrelevant. The nature of language-theoretic complexity hierarchies is to classify languages on the basis of their structural properties. The languages in a class, for instance, will typically exhibit certain closure properties (e.g., pumping lemmas) and the classes themselves admit normal forms (e.g., representation theorems). While the linguistic significance of individual results of this sort is open to debate, they at least loosely parallel typical linguistic concerns: closure properties state regularities that are exhibited by the languages in a class, normal forms express generalizations about their structure. So while these may not be the right results, they are not entirely the wrong kind of results. Moreover, since these classifications are based on structural properties and the structural properties of natural language can be studied more or less directly, there is a reasonable expectation of finding empirical evidence falsifying a hypothesis about languagetheoretic complexity of natural languages if such evidence exists.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Finally, the fact that these complexity classes have automata-theoretic characterizations means that results concerning the complexity of natural languages will have implications for the nature of the human language faculty. These automata-theoretic characterizations determine, along one axis, the types of resources required to generate or recognize the lan-guages in a class. The regular languages, for instance, can be characterized by finite-state (string) automata--these languages can be processed using a fixed amount of memory. The context-sensitive languages, on the other had, can be characterized by linear-bounded automata--they can be processed using an amount of memory proportional to the length of the input. The context-free languages are probably best characterized by finite-state tree automata--these correspond to recognition by a collection of processes, each with a fixed amount of memory, where the number of processes is linear in the length of the input and all communication between processes is completed at the time they are spawned. As a result, while these results do not necessarily offer abstract models of the human language faculty (since the complexity results do not claim to characterize the human languages, just to classify them), they do offer lower bounds on certain abstract properties of that faculty. In this way, generative grammar in concert with formal language theory offers insight into a deep aspect of human cognition--syntactic processing--on the basis of observable behavior--the structural properties of human languages.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper we discuss an approach to defining theories of syntax based on L 2 (Rogers, 1994) , a K,P monadic second-order language that has well-defined generative capacity: sets of finite trees are definable within L 2 iff they are strongly context-free K,P in a particular sense. While originally introduced as a means of establishing language-theoretic complexity results for constraint-based theories, this language has much to recommend it as a general framework for theories of syntax in its own right. Being a monadic second-order language it can capture the (pure) modal languages of much of the existing model-theoretic syntax literature directly; having a signature based on the traditional linguistic relations of domination, immediate domination, linear precedence, etc. it can express most linguistic principles transparently; and having a clear characterization in terms of generative capacity, it serves to re-establish the close connection between generative grammar and formal language theory that was lost in the move away from phrase-structure grammars. Thus, with this framework we get both the advantages of the model-theoretic approach with respect to naturalness and clarity in expressing linguistic principles and the advantages of the grammarbased approach with respect to language-theoretic complexity results.",
"cite_spans": [
{
"start": 81,
"end": 95,
"text": "(Rogers, 1994)",
"ref_id": "BIBREF22"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We look, in particular, at the definitions of a single aspect of each of GPSG and GB. The first of these, Feature Specification Defaults in GPSG, are widely assumed to have an inherently dynamic character. In addition to being purely declarative, our reformalization is considerably simplified wrt the definition in Gasdar et al. (1985) , 3 and does not share its misleading dynamic flavor. 4 We offer this as an example of how re-interpretations of this sort can inform the original theory. In the second example we sketch a definition of chains in GB. This, again, captures a presumably dynamic aspect of the original theory in a static way. Here, though, the main significance of the definition is that it forms a component of a fullscale treatment of a GB theory of English S-and D-Structure within L 2",
"cite_spans": [
{
"start": 316,
"end": 336,
"text": "Gasdar et al. (1985)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "This full definition estab-",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "K,P\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "lishes that the theory we capture licenses a strongly context-free language. More importantly, by examining the limitations of this definition of chains, and in particular the way it fails for examples of noncontext-free constructions, we develop a characterization of the context-free languages that is quite natural in the realm of GB. This suggests that the apparent mismatch between formal language theory and natural languages may well have more to do with the unnaturalness of the traditional diagnostics than a lack of relevance of the underlying structural properties. Finally, while GB and GPSG are fundamentally distinct, even antagonistic, approaches to syntax, their translation into the model-theoretic terms of L 2 allows us to explore the similarities between",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "K,P",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "the theories they express as well as to delineate actual distinctions between them. We look briefly at two of these issues. Together these examples are chosen to illustrate the main strengths of the model-theoretic approach, at least as embodied in L2K,p, as a framework for studying theories of syntax: a focus on structural properties themselves, rather than on mechanisms for specifying them or for generating or checking structures that exhibit them, and a language that is expressive enough to state most linguistically significant properties in a natural way, but which is restricted enough to have well-defined strong generative capacity. The predicates in P can be understood both as picking out particular subsets of the tree and as (non-exclusive) labels or features decorating the tree. Models for the language are labeled tree do-3We will refer to Gazdar et al. (1985) as GKP&S 4We should note that the definition of FSDs in GKP&S is, in fact, declarative although this is obscured by the fact that it is couched in terms of an algorithm for checking models.",
"cite_spans": [
{
"start": 860,
"end": 880,
"text": "Gazdar et al. (1985)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "mains (Gorn, 1967) with the natural interpretation of the binary predicates. In Rogers (1994) we have shown that this language is equivalent in descriptive power to SwS--the monadic second-order theory of the complete infinitely branching tree--in the sense that sets of trees are definable in SwS iff they are definable in L 2",
"cite_spans": [
{
"start": 6,
"end": 18,
"text": "(Gorn, 1967)",
"ref_id": "BIBREF9"
},
{
"start": 80,
"end": 93,
"text": "Rogers (1994)",
"ref_id": "BIBREF22"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "This places it within a hi-",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "K,P\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "erarchy of results relating language-theoretic complexity classes to the descriptive complexity of their models: the sets of strings definable in S1S are exactly the regular sets (Biichi, 1960) , the sets of finite trees definable in SnS, for finite n, are the recognizable sets (roughly the sets of derivation trees of CFGs) (Doner, 1970) , and, it can be shown, the sets of finite trees definable in SwS are those generated by generalized CFGs in which regular ,expressions may occur on the rhs of rewrite rules (Rogers, 1996b) . 5 Consequently, languages are definable in L2K,p iff they are strongly context-free in the mildly generalized sense of GPSG grammars.",
"cite_spans": [
{
"start": 179,
"end": 193,
"text": "(Biichi, 1960)",
"ref_id": "BIBREF2"
},
{
"start": 326,
"end": 339,
"text": "(Doner, 1970)",
"ref_id": "BIBREF6"
},
{
"start": 514,
"end": 529,
"text": "(Rogers, 1996b)",
"ref_id": "BIBREF25"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In restricting ourselves to the language of L 2 K,P we are restricting ourselves to reasoning in terms of just the predicates of its signature. We can expand this by defining new predicates, even higher-order predicates that express, for instance, properties of or relations between sets, and in doing so we can use monadic predicates and individual constants freely since we can interpret these as existentially bound variables. But the fundamental restriction of L 2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "is that all predicates other than monadic first-order predicates must be explicitly defined, that is, their definitions must resolve, via syntactic substitution, 2 into formulae involving only the signature of LK, P.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "K,P",
"sec_num": null
},
{
"text": "We now turn to our first application--the definition of Feature Specification Defaults (FSDs) in GPSG. 6 Since GPSG is presumed to license (roughly) context-free languages, we are not concerned here with establishing language-theoretic complexity but rather with clarifying the linguistic theory expressed by GPSG. FSDs specify conditions on feature values that must hold at a node in a licensed tree unless they are overridden by some other component of the grammar; in particular, unless they are incompatible with either a feature specified by the ID rule licensing the node (inherited features) or a feature required by one of the agreement principles--the Foot Feature Principle (FFP), Head Feature Convention (HFC), or Control Agreement Principle (CAP). It is the fact that the default holds 5There is reason to believe that this hierarchy can be extended to encompass, at least, a variety of mildly context-sensitive languages as well.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "6A more complete treatment of GPSG in L 2 I\u00a2.,P can be found in Rogers (1996c) . just in case it is incompatible with these other components that gives FSDs their dynamic flavor. Note, though, in contrast to typical applications of default logics, a GPSG grammar is not an evolving theory. The exceptions to the defaults are fully determined when the grammar is written. If we ignore for the moment the effect of the agreement principles, the defaults are roughly the converse of the ID rules: a non-default feature occurs iff it is licensed by an ID rule.",
"cite_spans": [
{
"start": 64,
"end": 78,
"text": "Rogers (1996c)",
"ref_id": "BIBREF26"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "It is easy to capture ID rules in L 2 For instance The agreement principles require pairs of nodes occurring in certain configurations in local trees to agree on certain classes of features. Thus these principles do not introduce features into the trees, but rather propagate features from one node to another, possibly in many steps. Consequently, these principles cannot override FSDs by themselves; rather every violation of a default must be licensed by an inherited feature somewhere in the tree. In order to account for this propagation of features, the definition of FSDs in GKP&S is based on identifying pairs of nodes that co-vary wrt the relevant features in all possible extensions of the given tree. As a resuit, although the treatment in GKP&S is actually declarative, this fact is far from obvious.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "Again, it is not difficult to define the configurations of local trees in which nodes are required to agree by FFP, CAP, or HFC in L 2 Let the predi-",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "K,P\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "cate Propagatey(z, y) hold for a pair of nodes z and y iff they are required to agree on f by one of these principles (and are, thus, in the same local tree). Note that Propagate is symmetric. Following the terminology of GKP&S, we can identify the set of nodes that are prohibited from taking feature f by the combination of the ID rules, FFP, CAP, and HFC as the set of nodes that are privileged wrt f.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "This includes all nodes that are not Free for f as well 7We will not elaborate here on the encoding of categories in L 2 K,P, nor on non-finite ID schema like the iterating co-ordination schema. These present no significant problems.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "as any node connected to such a node by a sequence of Propagate/ links. We, in essence, define this inductively. P' (X) is true of a set iff it includes all ] nodes not Free for f and is closed wrt Propagate/. PrivSet] (X) is true of the smallest such set.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "P; (x) - (Vx)[-Frees (x) X(x)] ^ (Vx)[(3y)[X(y) A Propagate] (x, y)] ---* X(x)] PrivSetl(X) = P)(X) A (VY)[P) (Y) --~ Subset(X, Y)].",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "There are two things to note about this definition. First, in any tree there is a unique set satisfying PrivSet/(X) and this contains exactly those nodes not Free for f or connected to such a node by Propagate]. Second, while this is a first-order inductive property, the definition is a second-order explicit definition. In fact, the second-order quantification of L 2 allows us to capture any monadic One can define Privileged_,/(x) which holds whenever x is required to take the feature f along similar lines.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "These, then, let us capture FSDs. For the default [-INV], for instance, we get: The key thing to note about this treatment of FSDs is its simplicity relative to the treatment of GKP&S. The second-order quantification allows us to reason directly in terms of the sequence of nodes extending from the privileged node to the local tree that actually licenses the privilege. The immediate benefit is the fact that it is clear that the property of satisfying a set of FSDs is a static property of labeled trees and does not depend on the particular strategy employed in checking the tree for compliance.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "(\u00a5x)[-~Privileged[_ INV](X) \"\"+ [--INV](x)].",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "SWe could, of course, skip the definition of PrivSet/ and define Privilegedy(x) as (VX)[P'(X) ---* Z(x)], but we prefer to emphasize the inductive nature of the definition.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Specification Defaults in GPSG",
"sec_num": "3"
},
{
"text": "The key issue in capturing GB theories within L 2 K,P is the fact that the mechanism of free-indexation is provably non-definable. Thus definitions of principles that necessarily employ free-indexation have no direct interpretation in L 2 (hardly surprising,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Chains in GB",
"sec_num": "4"
},
{
"text": "K,P",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Chains in GB",
"sec_num": "4"
},
{
"text": "as we expect GB to be capable of expressing noncontext-free languages). In many cases, though, references to indices can be eliminated in favor of the underlying structural relationships they express. 9",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Chains in GB",
"sec_num": "4"
},
{
"text": "The most prominent example is the definition of the chains formed by move-a. The fundamental problem here is identifying each trace with its antecedent without referencing their index. Accounts of the licensing of traces that, in many cases of movement, replace co-indexation with government relations have been offered by both Rizzi (1990) and Manzini (1992) . The key element of these accounts, from our point of view, is that the antecedent of a trace must be the closest antecedent-governor of the appropriate type. These relationships are easy to capture in L 2 For A-movement, for instance,",
"cite_spans": [
{
"start": 328,
"end": 340,
"text": "Rizzi (1990)",
"ref_id": "BIBREF21"
},
{
"start": 345,
"end": 359,
"text": "Manzini (1992)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Chains in GB",
"sec_num": "4"
},
{
"text": "K,P\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Chains in GB",
"sec_num": "4"
},
{
"text": "we have:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Chains in GB",
"sec_num": "4"
},
{
"text": "A-Antecedent-Governs(x, y) -~A-pos(x) A C-Commands(x, y) A F.Eq(x, y) A --x is a potential antecedent in an A-position -~(3z)[Intervening-Barrier(z, x, y)] A --no barrier intervenes -~(Bz)[Spec(z) A-~A-pos(z) A C-Commands(z, x) A Intervenes(z, x, y)] --minimality is respected",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Chains in GB",
"sec_num": "4"
},
{
"text": "where F.Eq(x, y) is a conjunction of biconditionals that assures that x and y agree on the appropriate features and the other predicates are are standard GB notions that are definable in L 2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Chains in GB",
"sec_num": "4"
},
{
"text": "Antecedent-government, in Rizzi's and Manzini's accounts, is the key relationship between adjacent members of chains which are identified by nonreferential indices, but plays no role in the definition of chains which are assigned a referential index3 \u00b0 Manzini argues, however, that referential chains cannot overlap, and thus we will never need to distinguish multiple referential chains in any single context. Since we can interpret any bounded number of indices simply as distinct labels, there is no difficulty in identifying the members of referential chains in L 2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "K,P\"",
"sec_num": null
},
{
"text": "On these and similar grounds we can extend K,P\" these accounts to identify adjacent members of referential chains, and, at least in the case of English, 9More detailed expositions of the interpretation 2 of GB in LK,p can be found in Rogers (1996a) , Rogers (1995) , and Rogers (1994) . 1\u00b0This accounts for subject/object asymmetries.",
"cite_spans": [
{
"start": 234,
"end": 248,
"text": "Rogers (1996a)",
"ref_id": "BIBREF24"
},
{
"start": 251,
"end": 264,
"text": "Rogers (1995)",
"ref_id": "BIBREF23"
},
{
"start": 271,
"end": 284,
"text": "Rogers (1994)",
"ref_id": "BIBREF22"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "K,P\"",
"sec_num": null
},
{
"text": "of chains of head movement and of rightward movement. This gives us five mutually exclusive relations which we can combine into a single link relation that must hold between every trace and its antecedent:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "K,P\"",
"sec_num": null
},
{
"text": "Link(x,y) -A-Link(z, y) V A-Ref-Link(x, y) V A---Ref-Link(x, y) V X\u00b0-Link(x, y) V Right-Link(x, y).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "K,P\"",
"sec_num": null
},
{
"text": "The idea now is to define chains as sequences of nodes that are linearly ordered by Link, but before we can do this there is still one issue to resolve. While minimality ensures that every trace must have a unique antecedent, we may yet admit a single antecedent that licenses multiple traces. To rule out this possibility, we require chains to be closed wrt the link relation, i.e., every chain must include every node that is related by Link to any node already in the chain. Our definition, then, is in essence the definition, in GB terms, of a discrete linear order with endpoints, augmented with this closure property. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "K,P\"",
"sec_num": null
},
{
"text": "--X is closed wrt the Link relation Note that every node will be a member of exactly one (possibly trivial) chain.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "X(y)]",
"sec_num": null
},
{
"text": "The requirement that chains be closed wrt Link means that chains cannot overlap unless they are of distinct types. This definition works for English because it is possible, in English, to resolve chains into boundedly many types in such a way that no two chains of the same type ever overlap. In fact, it fails only in cases, like head-raising in Dutch, where there are potentially unboundedly many chains that may overlap a single point in the tree. Thus, this gives us a property separating GB theories of movement that license strongly context-free languages from those that potentially don't--if we can establish a fixed bound on the number of chains that can overlap, then the definition we sketch here will suffice to capture the theory in L 2 and, consequently, the K,P theory licenses only strongly context-free languages.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "X(y)]",
"sec_num": null
},
{
"text": "This is a reasonably natural diagnostic for contextfreeness in GB and is close to common intuitions of what is difficult about head-raising constructions; it gives those intuitions theoretical substance and provides a reasonably clear strategy for establishing context-freeness.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "X(y)]",
"sec_num": null
},
{
"text": "this distinction is; one particularly interesting question is whether it has empirical consequences. It is only from the model-theoretic perspective that the question even arises.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "X(y)]",
"sec_num": null
},
{
"text": "Having interpretations both of GPSG and of a GB account of English in L 2 provides a certain K,P amount of insight into the distinctions between these approaches. For example, while the explanations of filler-gap relationships in GB and GPSG are quite dramatically dissimilar, when one focuses on the structures these accounts license one finds some surprising parallels. In the light of our interpretation of antecedent-government, one can understand the role of minimality in l~izzi's and Manzini's accounts as eliminating ambiguity from the sequence of relations connecting the gap with its filler. In GPSG this connection is made by the sequence of agreement relationships dictated by the Foot Feature Principle. So while both theories accomplish agreement between filler and gap through marking a sequence of elements falling between them, the GB account marks as few as possible while the GPSG account marks every node bf the spine of the tree spanning them. In both cases, the complexity of the set of licensed structures can be limited to be strongly context-free iff the number of relationships that must be distinguished in a given context can be bounded. One finds a strong contrast, on the other hand, in the way in which GB and GPSG encode language universals. In GB it is presumed that all principles are universal with the theory being specialized to specific languages by a small set of finitely varying parameters. These principles are simply properties of trees. In terms of models, one can understand GB to define a universal language--the set of all analyses that can occur in human languages. The principles then distinguish particular sub-languages--the head-final or the pro-drop languages, for instance. Each realized human language is just the intersection of the languages selected by the settings of its parameters. In GPSG, in contrast, many universals are, in essence, closure properties that must be exhibited by human languages--if the language includes trees in which a particular configuration occurs then it includes variants of those trees in which certain related configurations occur. Both the ECPO principle and the metarules can be understood in this way. Thus while universals in GB are properties of trees, in GPSG they tend to be properties of sets of trees. This makes a significant difference in capturing these theories model-theoretically; in the GB case one is defining sets of models, in the GPSG case one is defining sets of sets of models. It is not at all clear what the linguistic significance of",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion 5 A Comparison and a Contrast",
"sec_num": "6"
},
{
"text": "We have illustrated a general formal framework for expressing theories of syntax based on axiomatizing classes of models in L 2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion 5 A Comparison and a Contrast",
"sec_num": "6"
},
{
"text": "This approach has a K,P* number of strengths. First, as should be clear from our brief explorations of aspects of GPSG and GB~ re-formalizations of existing theories within L 2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion 5 A Comparison and a Contrast",
"sec_num": "6"
},
{
"text": "K,P",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion 5 A Comparison and a Contrast",
"sec_num": "6"
},
{
"text": "can offer a clarifying perspective on those theories, and, in particular, on the consequences of individual components of those theories. Secondly, the framework is purely declarative and focuses on those aspects of language that are more or less directly observable--their structural properties. It allows us to reason about the consequences of a theory without hypothesizing a specific mechanism implementing it. The abstract properties of the mechanisms that might implement those theories, however, are not beyond our reach. The key virtue of descriptive complexity results like the characterizations of language-theoretic complexity classes discussed here and the more typical characterizations of computational complexity classes (Gurevich, 1988; Immerman, 1989 ) is that they allow us to determine the complexity of checking properties independently of how that checking is implemented. Thus we can use such descriptive complexity results to draw conclusions about those abstract properties of such mechanisms that are actually inferable from their observable behavior. Finally, by providing a uniform representation for a variety of linguistic theories, it offers a framework for comparing their consequences. Ultimately it has the potential to reduce distinctions between the mechanisms underlying those theories to distinctions between the properties of the sets of structures they license. In this way one might hope to illuminate the empirical consequences of these distinctions, should any, in fact, exist.",
"cite_spans": [
{
"start": 736,
"end": 752,
"text": "(Gurevich, 1988;",
"ref_id": "BIBREF10"
},
{
"start": 753,
"end": 767,
"text": "Immerman, 1989",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion 5 A Comparison and a Contrast",
"sec_num": "6"
},
{
"text": "2Whether there are theories that cannot be captured, at least without explicitly encoding the derivations, is an open question of considerable theoretical interest, as is the question of what empirical consequences such an essential dynamic character might have.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Talking about trees",
"authors": [
{
"first": "Patrick",
"middle": [],
"last": "Blackburn",
"suffix": ""
},
{
"first": "Claire",
"middle": [],
"last": "Gardent",
"suffix": ""
},
{
"first": "Wilfried",
"middle": [],
"last": "Meyer-Viol",
"suffix": ""
}
],
"year": 1993,
"venue": "European Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "21--29",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Blackburn, Patrick, Claire Gardent, and Wilfried Meyer-Viol. 1993. Talking about trees. In EACL 93, pages 21-29. European Association for Com- putational Linguistics.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Linguistics, logic, and finite trees",
"authors": [
{
"first": "Patrick",
"middle": [],
"last": "Blackburn",
"suffix": ""
},
{
"first": "Wilfried",
"middle": [],
"last": "Meyer-Viol",
"suffix": ""
}
],
"year": 1994,
"venue": "Bulletin of the IGPL",
"volume": "2",
"issue": "1",
"pages": "3--29",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Blackburn, Patrick and Wilfried Meyer-Viol. 1994. Linguistics, logic, and finite trees. Bulletin of the IGPL, 2(1):3-29, March.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Weak second-order arithmetic and finite automata",
"authors": [
{
"first": "J",
"middle": [
"R"
],
"last": "Biichi",
"suffix": ""
}
],
"year": 1960,
"venue": "Logik und Grundlagen der Mathematik",
"volume": "6",
"issue": "",
"pages": "66--92",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Biichi, J. R. 1960. Weak second-order arithmetic and finite automata. Zeitschrift fiir malhemalis- che Logik und Grundlagen der Mathematik, 6:66- 92.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "The Logic of Typed Feature Structures; with Applications to Unification Grammars, Logic Programs and Constraint Resolution. Number 32 in Cambridge Tracts in Theoretical Computer Science",
"authors": [
{
"first": "Bob",
"middle": [],
"last": "Carpenter",
"suffix": ""
}
],
"year": 1992,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Carpenter, Bob. 1992. The Logic of Typed Fea- ture Structures; with Applications to Unification Grammars, Logic Programs and Constraint Reso- lution. Number 32 in Cambridge Tracts in The- oretical Computer Science. Cambridge University Press.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Description Theory, Licensing Theory, and Principle-Based Grammars and Parsers",
"authors": [
{
"first": "Thomas",
"middle": [],
"last": "Cornell",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Longacre",
"suffix": ""
}
],
"year": 1992,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Cornell, Thomas Longacre. 1992. Description Theory, Licensing Theory, and Principle-Based Grammars and Parsers. Ph.D. thesis, University of California Los Angeles.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "An interpretation of negation in feature structure descriptions",
"authors": [
{
"first": "Anuj",
"middle": [],
"last": "Dawar",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Vijay-Shanker",
"suffix": ""
}
],
"year": 1990,
"venue": "Computational Linguistics",
"volume": "16",
"issue": "1",
"pages": "11--21",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dawar, Anuj and K. Vijay-Shanker. 1990. An inter- pretation of negation in feature structure descrip- tions. Computational Linguistics, 16(1):11-21.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Tree acceptors and some of their applications",
"authors": [
{
"first": "John",
"middle": [],
"last": "Doner",
"suffix": ""
}
],
"year": 1970,
"venue": "Journal of Computer and System Sciences",
"volume": "4",
"issue": "",
"pages": "406--451",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Doner, John. 1970. Tree acceptors and some of their applications. Journal of Computer and System Sciences, 4:406-451.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Generalized Phrase Structure Grammar",
"authors": [
{
"first": "Gerald",
"middle": [],
"last": "Gazdar",
"suffix": ""
},
{
"first": "Ewan",
"middle": [],
"last": "Klein",
"suffix": ""
},
{
"first": "Geoffrey",
"middle": [],
"last": "Pullum",
"suffix": ""
},
{
"first": "Ivan",
"middle": [],
"last": "Sag",
"suffix": ""
}
],
"year": 1985,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Gazdar, Gerald, Ewan Klein, Geoffrey Pullum, and Ivan Sag. 1985. Generalized Phrase Structure Grammar. Harvard University Press.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Category structures",
"authors": [
{
"first": "Gerald",
"middle": [],
"last": "Gazdar",
"suffix": ""
},
{
"first": "Geoffrey",
"middle": [],
"last": "Pullum",
"suffix": ""
},
{
"first": "Robert",
"middle": [],
"last": "Carpenter",
"suffix": ""
},
{
"first": "Ewan",
"middle": [],
"last": "Klein",
"suffix": ""
},
{
"first": "T",
"middle": [
"E"
],
"last": "Hukari",
"suffix": ""
},
{
"first": "R",
"middle": [
"D"
],
"last": "Levine",
"suffix": ""
}
],
"year": 1988,
"venue": "Computational Linguistics",
"volume": "14",
"issue": "",
"pages": "1--19",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Gazdar, Gerald, Geoffrey Pullum, Robert Carpen- ter, Ewan Klein, T. E. Hukari, and R. D. Levine. 1988. Category structures. Computational Lin- guistics, 14:1-19.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Explicit definitions and linguistic dominoes",
"authors": [
{
"first": "Saul",
"middle": [],
"last": "Gorn",
"suffix": ""
}
],
"year": 1965,
"venue": "Systems and Computer Science, Proceedings of the Conference",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Gorn, Saul. 1967. Explicit definitions and linguistic dominoes. In John F. Hart and Satoru Takasu, editors, Systems and Computer Science, Proceed- ings of the Conference held at Univ. of Western Ontario, 1965. Univ. of Toronto Press.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Logic and the challenge of computer science",
"authors": [
{
"first": "Yuri",
"middle": [],
"last": "Gurevich",
"suffix": ""
}
],
"year": 1988,
"venue": "Current Trends in Theoretical Computer Science",
"volume": "",
"issue": "",
"pages": "1--57",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Gurevich, Yuri. 1988. Logic and the challenge of computer science. In E. BSrger, editor, Current Trends in Theoretical Computer Science. Com- puter Science Press, chapter 1, pages 1-57.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Descriptive and computational complexity",
"authors": [
{
"first": "Neil",
"middle": [],
"last": "Immerman",
"suffix": ""
}
],
"year": 1989,
"venue": "Proceedings of Symposia in Applied Mathematics",
"volume": "",
"issue": "",
"pages": "75--91",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Immerman, Neil. 1989. Descriptive and compu- tational complexity. In Proceedings of Symposia in Applied Mathematics, pages 75-91. American Mathematical Society.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Are Pair Grammar",
"authors": [
{
"first": "David",
"middle": [
"E"
],
"last": "Johnson",
"suffix": ""
},
{
"first": "Paul",
"middle": [
"M"
],
"last": "Postal",
"suffix": ""
}
],
"year": 1980,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Johnson, David E. and Paul M. Postal. 1980. Are Pair Grammar. Princeton University Press, Princeton, New Jersey.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Attribute-Value Logic and the Theory of Grammar",
"authors": [
{
"first": "Mark",
"middle": [],
"last": "Johnson",
"suffix": ""
}
],
"year": 1988,
"venue": "CSLI Lecture Notes. Center for the Study of Language and Information",
"volume": "16",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Johnson, Mark. 1988. Attribute-Value Logic and the Theory of Grammar. Number 16 in CSLI Lecture Notes. Center for the Study of Language and In- formation, Stanford, CA.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "The use of knowledge of language",
"authors": [
{
"first": "Mark",
"middle": [],
"last": "Johnson",
"suffix": ""
}
],
"year": 1989,
"venue": "Journal of Psycholinguistic Research",
"volume": "18",
"issue": "1",
"pages": "105--128",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Johnson, Mark. 1989. The use of knowledge of language. Journal of Psycholinguistic Research, 18(1):105-128.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "A logical semantics for feature structures",
"authors": [
{
"first": "Robert",
"middle": [
"T"
],
"last": "Kasper",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "William",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Rounds",
"suffix": ""
}
],
"year": 1986,
"venue": "Proceedings of the 2~th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kasper, Robert T. and William C. Rounds. 1986. A logical semantics for feature structures. In Pro- ceedings of the 2~th Annual Meeting of the Asso- ciation for Computational Linguistics.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "The logic of unification in grammar",
"authors": [
{
"first": "Robert",
"middle": [
"T"
],
"last": "Kasper",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "William",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Rounds",
"suffix": ""
}
],
"year": 1990,
"venue": "Linguistics and Philosophy",
"volume": "13",
"issue": "",
"pages": "35--58",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kasper, Robert T. and William C. Rounds. 1990. The logic of unification in grammar. Linguistics and Philosophy, 13:35-58.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Feature Logics, Infinitary Descriptions and Grammar",
"authors": [
{
"first": "Bill",
"middle": [],
"last": "Keller",
"suffix": ""
}
],
"year": 1993,
"venue": "CSLI Lecture Notes. Center for the Study of Language and Information",
"volume": "44",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Keller, Bill. 1993. Feature Logics, Infinitary De- scriptions and Grammar. Number 44 in CSLI Lecture Notes. Center for the Study of Language and Information.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Syntactic codes and grammar refinement",
"authors": [
{
"first": "Marcus",
"middle": [],
"last": "Kracht",
"suffix": ""
}
],
"year": 1995,
"venue": "Journal of Logic, Language, and Information",
"volume": "4",
"issue": "",
"pages": "41--60",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kracht, Marcus. 1995. Syntactic codes and gram- mar refinement. Journal of Logic, Language, and Information, 4:41-60.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Locality: A Theory and Some of Its Empirical Consequences",
"authors": [
{
"first": "Maria",
"middle": [],
"last": "Manzini",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Rita",
"suffix": ""
}
],
"year": 1992,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Manzini, Maria Rita. 1992. Locality: A Theory and Some of Its Empirical Consequences. MIT Press, Cambridge, Ma.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "A logic for partially specified data structures",
"authors": [
{
"first": "M",
"middle": [],
"last": "Moshier",
"suffix": ""
},
{
"first": "William",
"middle": [
"C"
],
"last": "Drew",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Rounds",
"suffix": ""
}
],
"year": 1987,
"venue": "ACM Symposium on the Principles of Programming Languages",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Moshier, M. Drew and William C. Rounds. 1987. A logic for partially specified data structures. In ACM Symposium on the Principles of Program- ming Languages.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Relativized Minimality",
"authors": [
{
"first": "Luigi",
"middle": [],
"last": "Rizzi",
"suffix": ""
}
],
"year": 1990,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rizzi, Luigi. 1990. Relativized Minimality. MIT Press.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Studies in the Logic of Trees with Applications to Grammar Formalisms",
"authors": [
{
"first": "James",
"middle": [],
"last": "Rogers",
"suffix": ""
}
],
"year": 1994,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rogers, James. 1994. Studies in the Logic of Trees with Applications to Grammar Formalisms. Ph.D. dissertation, Univ. of Delaware.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "On descriptive complexity, language complexity, and GB",
"authors": [
{
"first": "James",
"middle": [],
"last": "Rogers",
"suffix": ""
}
],
"year": 1995,
"venue": "Specifying Syntactic Structures",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rogers, James. 1995. On descriptive complexity, language complexity, and GB. In Patrick Black- burn and Maarten de Rijke, editors, Specifying Syntactic Structures. In Press. Also available as IRCS Technical Report 95-14. cmp-lg/9505041.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "A Descriptive Approach to Language-Theoretic Complexity. Studies in Logic, Language, and Information",
"authors": [
{
"first": "James",
"middle": [],
"last": "Rogers",
"suffix": ""
}
],
"year": 1996,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rogers, James. 1996a. A Descriptive Approach to Language-Theoretic Complexity. Studies in Logic, Language, and Information. CSLI Publications. To appear.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "The descriptive complexity of local, recognizable, and generalized recognizable sets",
"authors": [
{
"first": "James",
"middle": [],
"last": "Rogers",
"suffix": ""
}
],
"year": 1996,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rogers, James. 1996b. The descriptive complexity of local, recognizable, and generalized recogniz- able sets. Technical report, IRCS, Univ. of Penn- sylvania. In Preparation.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Grammarless phrasestructure grammar",
"authors": [
{
"first": "James",
"middle": [],
"last": "Rogers",
"suffix": ""
}
],
"year": 1996,
"venue": "Under Review",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rogers, James. 1996c. Grammarless phrase- structure grammar. Under Review.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "Obtaining trees from their descriptions: An application to tree-adjoining grammars",
"authors": [
{
"first": "James",
"middle": [],
"last": "Rogers",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Vijay-Shanker",
"suffix": ""
}
],
"year": 1994,
"venue": "Computational Intelligence",
"volume": "10",
"issue": "",
"pages": "401--421",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rogers, James and K. Vijay-Shanker. 1994. Obtain- ing trees from their descriptions: An application to tree-adjoining grammars. Computational Intel- ligence, 10:401-421.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "A feature logic with subsorts",
"authors": [
{
"first": "Gert",
"middle": [],
"last": "Smolka",
"suffix": ""
}
],
"year": 1989,
"venue": "LILOG Report",
"volume": "33",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Smolka, Gert. 1989. A feature logic with subsorts. LILOG Report 33, IBM Germany, Stuttgart.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "The Logical Approach to Syntax",
"authors": [
{
"first": "Jr",
"middle": [],
"last": "Stabler",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Edward",
"suffix": ""
}
],
"year": 1992,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Stabler, Jr., Edward P. 1992. The Logical Approach to Syntax. Bradford.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"type_str": "figure",
"uris": null,
"text": "is the monadic second-order language over the signature including a set of individual constants (K), a set of monadic predicates (P), and binary predicates for immediate domination (,~), domination (,~*), linear precedence (-~) and equality (..~).",
"num": null
},
"FIGREF1": {
"type_str": "figure",
"uris": null,
"text": ") A (SUBCAT, 5)(Yl) A NP(y2) A NP(y3), where Children(z, Yl, Y~, Y3) holds iff the set of nodes that are children of x are just the Yi and VP, (SUBCAT, 5), etc. are all members of p.7 A sequence of nodes will satisfy ID5 iff they form a local tree that, in the terminology of GKP&S, is induced by the corresponding ID rule. Using such encodings we can define a predicate Free/(x) which is true at a node x iff the feature f is compatible with the inherited features of x.",
"num": null
},
"FIGREF2": {
"type_str": "figure",
"uris": null,
"text": "inductively or implicitly definable property explicitly. Armed with this definition, we can identify individuals that are privileged wrt f simply as the members of PrivSetl.s Privileged] (x) = (3X)[PrivSety (X) A X(z)].",
"num": null
},
"FIGREF3": {
"type_str": "figure",
"uris": null,
"text": "For [BAR0] D,,~ [PAS] (which says that [Bar 0] nodes are, by default, not marked passive), we get: (Vz)[ ([BAR 0](x) A ~Privileged_,[pAs](X)) -~[PAS](x)].",
"num": null
},
"FIGREF4": {
"type_str": "figure",
"uris": null,
"text": "Chain(X) --(3!x)[X(x) A Target(x)] A --X contains exactly one Target (3!x)[X(x) A Base(x)] A --and one Base (Vx)[X(x) A -~Warget(x) ---* (3!y)[Z(y) A Link(y,x)]] A --All non-Target have a unique antecedent in X (Vx)[X(x) A-~Base(x) --~ (3!y)[X(y) A Link(x, y)]] A--All non-Base have a unique successor in X (Vx, y)[X(x) A (Link(x, y) V Link(y, x)) ---*",
"num": null
}
}
}
} |