refinementsNep-11-06-27

This commit is contained in:
virk.shafqat
2011-06-27 14:55:51 +00:00
parent 4659511ccf
commit 50676e94b0
21 changed files with 113 additions and 71 deletions
+6 -3
View File
@@ -1,6 +1,7 @@
concrete NounNep of Noun = CatNep ** open ResNep, Prelude in {
flags optimize = all_subs ;
flags coding=utf8 ;
lin
@@ -47,7 +48,7 @@ concrete NounNep of Noun = CatNep ** open ResNep, Prelude in {
} ;
DetNP det = {
s = \\c => det2NP det c ; ---- case
s = \\c => det2NP det c ; -- case
a = agrP3 Masc Sg ;
t = NonLiving
} ;
@@ -154,8 +155,10 @@ concrete NounNep of Noun = CatNep ** open ResNep, Prelude in {
} ;
AdvCN cn ad = {s = \\n,c => cn.s ! n ! c ++ ad.s ; g = cn.g ; t = cn.t ; h = cn.h} ;
SentCN cn sc = {s = \\n,c => cn.s ! n ! c ++ sc.s ; g = cn.g ; t = cn.t ; h = cn.h} ;
--Prelude.glue
SentCN cn sc = {s = \\n,c => sc.s ++ "लाइ" ++ cn.s ! n ! c ; g = cn.g ; t = cn.t ; h = cn.h} ;
-- Changed to fix 'reason to sleep' Bug
-- SentCN cn sc = {s = \\n,c => cn.s ! n ! c ++ sc.s ; g = cn.g ; t = cn.t ; h = cn.h} ;
ApposCN cn np = {s = \\n,c => cn.s ! n ! Nom ++ np.s ! NPC c ; g = cn.g ; t = cn.t ; h = cn.h} ;