-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapertium-mar.mar.rlx
195 lines (152 loc) · 3.13 KB
/
apertium-mar.mar.rlx
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
DELIMITERS = "<.>" "<!>" "<?>" "<...>" "<¶>" ;
SOFT-DELIMITERS = "<,>" ;
SUBREADINGS = LTR ;
SETS
LIST Noun = n ;
LIST Obl = obl ;
LIST Post = post ;
LIST Adj = adj ;
LIST Adv = adv ;
LIST Stem = stem ;
LIST Vaux = vaux ;
LIST Verb = vblex ;
LIST Vblex = vblex ;
LIST Vbser = vbser ;
LIST Det = det ;
LIST Conj = cnjcoo ;
LIST ConjAdv = cnjadv;
LIST Prn = prn ;
LIST Gen = gen ;
SET DetPrn = Det OR Prn ;
SET DetAdjGen = Det OR Adj OR Gen ;
SECTION
#Det if succeeded by N or Adj
SELECT Det IF
(0 DetPrn)
(1 Noun) ;
SELECT Det IF
(0 DetPrn)
(1 Adj)
(2 Noun) ;
#Otherwise, choose Prn
SELECT Prn IF
(0 DetPrn) ;
# 'ti', 'tyachi', 'kali', etc.: fem sg vs. neuter pl
LIST Femsg = (f sg) ;
LIST NounFemsg = (n f sg) ;
LIST Ntpl = (nt pl) ;
LIST NounNtpl = (n nt pl) ;
SET _FemsgNtpl = Femsg OR Ntpl ;
SET FemsgNtpl = _FemsgNtpl + DetAdjGen ;
SELECT Femsg IF
(0 FemsgNtpl)
(1 NounFemsg) ;
SELECT Femsg IF
(0 FemsgNtpl)
(1 Adj)
(2 NounFemsg) ;
SELECT Ntpl IF
(0 FemsgNtpl)
(1 NounNtpl) ;
SELECT Ntpl IF
(0 FemsgNtpl)
(1 Adj)
(2 NounNtpl) ;
SELECT SUB:1 Femsg IF
(0/1 FemsgNtpl)
(1 NounFemsg) ;
SELECT SUB:1 Femsg IF
(0/1 FemsgNtpl)
(1 Adj)
(2 NounFemsg) ;
SELECT SUB:1 Ntpl IF
(0/1 FemsgNtpl)
(1 NounNtpl) ;
SELECT SUB:1 Ntpl IF
(0/1 FemsgNtpl)
(1 Adj)
(2 NounNtpl) ;
# 'te', 'tyache', 'kale', etc.: neuter sg vs. masc pl
LIST Ntsg = (nt sg) ;
LIST NounNtsg = (n nt sg) ;
LIST Mpl = (m pl) ;
LIST NounMpl = (n m pl) ;
SET _NtsgMpl = Ntsg OR Mpl ;
SET NtsgMpl = _NtsgMpl + DetAdjGen ;
SELECT Ntsg IF
(0 NtsgMpl)
(1 NounNtsg) ;
SELECT Ntsg IF
(0 NtsgMpl)
(1 Adj)
(2 NounNtsg) ;
SELECT Mpl IF
(0 NtsgMpl)
(1 NounMpl) ;
SELECT Mpl IF
(0 NtsgMpl)
(1 Adj)
(2 NounMpl) ;
SELECT SUB:1 Ntsg IF
(0/1 NtsgMpl)
(1 NounNtsg) ;
SELECT SUB:1 Ntsg IF
(0/1 NtsgMpl)
(1 Adj)
(2 NounNtsg) ;
SELECT SUB:1 Mpl IF
(0/1 NtsgMpl)
(1 NounMpl) ;
SELECT SUB:1 Mpl IF
(0/1 NtsgMpl)
(1 Adj)
(2 NounMpl) ;
#'tya', 'tyachya', 'kalya', etc.: fem nom pl vs. obl
LIST FemplNom = (f pl nom) ;
LIST NounFemplNom = (n f pl nom) ;
LIST Sgsp = sg sp ;
SET SgObl = (mfn obl) + Sgsp ;
LIST NounSgObl = (n sg obl) ;
LIST Plsp = pl sp ;
SET PlObl = (mfn obl) + Plsp ;
LIST NounPlObl = (n pl obl) ;
LIST Sgplsp = sg pl sp ;
LIST NounObl = (n obl) ;
SET MfnObl = (mfn obl) + Sgplsp ;
SET _FemplnomMfnobl = FemplNom OR MfnObl ;
SET FemplnomMfnobl = _FemplnomMfnobl + DetAdjGen ;
SELECT FemplNom IF
(0 FemplnomMfnobl)
(1 NounFemplNom) ;
SELECT PlObl IF
(0 FemplnomMfnobl)
(1 NounPlObl) ;
SELECT SgObl IF
(0 FemplnomMfnobl)
(1 NounSgObl) ;
SELECT FemplNom IF
(0 FemplnomMfnobl)
(1 Adj)
(2 NounFemplNom) ;
SELECT PlObl IF
(0 FemplnomMfnobl)
(1 Adj)
(2 NounPlObl) ;
SELECT SgObl IF
(0 FemplnomMfnobl)
(1 Adj)
(2 NounSgObl) ;
SELECT SUB:1 FemplNom IF
(0/1 FemplnomMfnobl)
(1 NounFemplNom) ;
SELECT SUB:1 MfnObl IF
(0/1 FemplnomMfnobl)
(1 NounObl) ;
SELECT SUB:1 FemplNom IF
(0/1 FemplnomMfnobl)
(1 Adj)
(2 NounFemplNom) ;
SELECT SUB:1 MfnObl IF
(0/1 FemplnomMfnobl)
(1 Adj)
(2 NounObl) ;