Swadesh: added MassN category and made some nouns MassN instead of N. Removed some unused instantiations from Bronzeage??? modules. Swadesh: left and right are now Ord instead of A. Bronzeage: all pronouns as NP.

This commit is contained in:
bringert
2006-02-28 18:49:04 +00:00
parent f3f141b842
commit cb18bc2557
20 changed files with 102 additions and 61 deletions

View File

@@ -1,7 +1,7 @@
abstract Bronzeage = Cat, Swadesh ** {
cat
Sent ;
Sent ; MassCN ;
fun
PhrPos : Sent -> Phr ;
@@ -12,6 +12,7 @@ abstract Bronzeage = Cat, Swadesh ** {
SentV : V -> NP -> Sent ;
SentV2 : V2 -> NP -> NP -> Sent ;
SentV2Mass : V2 -> NP -> MassCN -> Sent ;
SentV3 : V3 -> NP -> NP -> NP -> Sent ;
SentA : A -> NP -> Sent ;
SentNP : NP -> NP -> Sent ;
@@ -22,10 +23,14 @@ abstract Bronzeage = Cat, Swadesh ** {
ImpV : V -> Imp ;
ImpV2 : V2 -> NP -> Imp ;
UsePron : Pron -> NP ;
DetCN : Det -> CN -> NP ;
NumCN : Num -> CN -> NP ;
UseN : N -> CN ;
ModCN : A -> CN -> CN ;
UseMassN : MassN -> MassCN ;
ModMass : A -> MassCN -> MassCN ;
}