refinementNepali-11-06-20

This commit is contained in:
virk.shafqat
2011-06-20 11:24:22 +00:00
parent 1e4d3c12aa
commit 4d32b16244
32 changed files with 1137 additions and 1296 deletions

View File

@@ -12,6 +12,7 @@ concrete ConjunctionNep of Conjunction =
ConjNP conj ss = conjunctDistrTable NPCase conj ss ** {
a = conjAgr (agrP3 Masc conj.n) ss.a ;
t = ss.t ;
} ;
ConjAP conj ss = conjunctDistrTable2 Number Gender conj ss ;
@@ -25,9 +26,9 @@ concrete ConjunctionNep of Conjunction =
BaseAdv x y = twoSS x y ;
ConsAdv = consrSS comma ;
-- ConsAdv xs x = consrTable Gender comma xs x ;
BaseNP x y = twoTable NPCase x y ** {a = conjAgr x.a y.a ; isPron = andB x.isPron y.isPron} ;
BaseNP x y = twoTable NPCase x y ** {a = conjAgr x.a y.a ; t = x.t} ;
BaseRS x y = twoTable Agr x y ** {c = x.c};
ConsNP xs x = consrTable NPCase comma xs x ** {a = conjAgr xs.a x.a } ;
ConsNP xs x = consrTable NPCase comma xs x ** {a = conjAgr xs.a x.a ; t = xs.t } ;
ConsRS xs x = consrTable Agr comma xs x ** { c = xs.c};
BaseAP x y = twoTable2 Number Gender x y ;
ConsAP xs x = consrTable2 Number Gender comma xs x ;
@@ -35,7 +36,7 @@ concrete ConjunctionNep of Conjunction =
lincat
[S] = {s1,s2 : Str} ;
[Adv] = {s1,s2 : Str} ;
[NP] = {s1,s2 : NPCase => Str ; a : Agr } ;
[NP] = {s1,s2 : NPCase => Str ; a : Agr ; t : NType} ;
[AP] = {s1,s2 : Number => Gender => Str} ;
[RS] = {s1,s2 : Agr => Str ; c : Case};