1
0
forked from GitHub/gf-core

nounverbadjmorphoandsuffixmodule

This commit is contained in:
e1560697
2010-02-15 17:22:10 +00:00
parent ba3b57bff9
commit 2a7fbf43e1
7 changed files with 1009 additions and 240 deletions

View File

@@ -7,14 +7,28 @@ concrete CatTur of Cat = CommonX ** open ResTur, Prelude in {
-- Noun
CN = {s : Number => Case => Str} ;
NP = {s : Case => Str ; a : Agr} ;
Pron = ResTur.Pron ;
Det = {s : Str; n : Number} ;
Num = {s : Str; n : Number} ;
Card = {s : Str} ;
Ord = {s : Str} ;
Quant = {s : Str} ;
Prep = {s : Str} ;
Numeral = {s : CardOrd => Str ; n : Number} ;
Digits = {s : CardOrd => Str ; n : Number; tail : DTail} ;
-- Open lexical classes, e.g. Lexicon
V, VS, VQ, VA = Verb ;
V2, V2Q, V2V, V2A, V2S = Verb ** {c : Case; p : Prep} ;
V3 = Verb ** {c1 : Case; p1 : Prep; c2 : Case; p2 : Prep} ;
A = Noun ;
A2 = Noun ** {c : Case; p : Prep} ;
N = Noun ;
N2 = Noun ;
}
N2 = Noun ** {c : Case} ;
N3 = Noun ** {c1 : Case; c2 : Case} ;
PN = Noun ;
}