summaryrefslogtreecommitdiff
path: root/next-lib/src/telugu/CatTel.gf
blob: 6413b68466ed01cdf59c08188561efbbc8caa32f (plain)
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
concrete CatTel of Cat = CommonX ** open ResTel, Prelude in {

  flags optimize=all_subs ;

  lincat
----
------ Tensed/Untensed
----
----    S  = {s : Str} ;
----    QS = {s : QForm => Str} ;
----    RS = {s : Agr => Str ; c : Case} ; -- c for it clefts
----    SSlash = {s : Str ; c2 : Str} ;
----
------ Sentence
----
--    Cl = ResTel.Clause ;
----    ClSlash = {
----      s : ResTel.Tense => Anteriority => CPolarity => Order => Str ;
----      c2 : Str
----      } ;
----    Imp = {s : CPolarity => ImpForm => Str} ;
----
------ Question
----
----    QCl = {s : ResTel.Tense => Anteriority => CPolarity => QForm => Str} ;
----    IP = {s : Case => Str ; n : Number} ;
----    IComp = {s : Str} ;    
----    IDet = {s : Str ; n : Number} ;
----    IQuant = {s : Number => Str} ;
----
------ Relative
----
----    RCl = {
----      s : ResTel.Tense => Anteriority => CPolarity => Agr => Str ; 
----      c : Case
----      } ;
----    RP = {s : RCase => Str ; a : RAgr} ;
----
------ Verb
----
--    VP = ResTel.VPH ;
--    VPSlash = ResTel.VPHSlash ;
----    Comp = {s : Agr => Str} ; 
----
------ Adjective
----
--    AP = ResTel.Adjective ;
----
------ Noun
----
    CN = ResTel.Noun ;
--    NP = ResTel.NP ;
--    Pron = {s : PronCase => Str ; a : Agr} ;
--    Det = {s : Gender => Case => Str ; n : Number} ;
----    Predet, Ord = {s : Str} ;
--    Num  = {s : Str ; n : Number} ;
----    Card = {s : Str; n : Number} ;
--    Quant = {s : Number => Gender => Case => Str} ;
--    Art = {s : Str} ;
----
------ Numeral
----
----    Numeral = {s : CardOrd => Str ; n : Number} ;
----    Digits  = {s : CardOrd => Str ; n : Number ; tail : DTail} ;
----
------ Structural
----
----    Conj = {s1,s2 : Str ; n : Number} ;
-------b    Conj = {s : Str ; n : Number} ;
-------b    DConj = {s1,s2 : Str ; n : Number} ;
----    Subj = {s : Str} ;
----    Prep = {s : Str} ;
----
------ Open lexical classes, e.g. Lexicon
----
--    V, VS, VQ, VA = Verb ; -- = {s : VForm => Str} ;
--    V2, V2A, V2Q, V2S = Verb ** {c2 : Compl} ;
----    V3 = Verb ** {c2, c3 : Str} ;
----    VV = {s : VVForm => Str ; isAux : Bool} ;
----    V2V = Verb ** {c2 : Str ; isAux : Bool} ;
----
--    A = ResTel.Adjective ; --- {s : Gender => Number => Case => Str} ;
----    A2 = {s : AForm => Str ; c2 : Str} ;
----
    N = ResTel.Noun ; --{s : Number => Case => Str ; g : Gender} ;
----    N2 = {s : Number => Case => Str ; g : Gender} ** {c2 : Str} ;
----    N3 = {s : Number => Case => Str ; g : Gender} ** {c2,c3 : Str} ;
--    PN = {s : Case => Str ; g : Gender} ;
----
}