added this_Quant

This commit is contained in:
Krasimir Angelov
2024-12-05 21:57:03 +01:00
parent 7b7752c308
commit 4e034425b9
4 changed files with 82 additions and 8 deletions
+4 -4
View File
@@ -4,14 +4,14 @@ concrete NounSqi of Noun = CatSqi ** open MorphoSqi, ResSqi in {
lin
DetCN det cn = {
s = \\c => det.s ++ cn.s ! det.spec ! c ! det.n ;
s = \\c => det.s ! c ! cn.g ++ cn.s ! det.spec ! c ! det.n ;
a = agrgP3 cn.g det.n
} ;
UsePron p = p ;
DetQuant quant num = {
s = quant.s ++ num.s ;
s = \\c,g => quant.s ! c ! g ! num.n ++ num.s ;
n = num.n ;
spec = quant.spec
} ;
@@ -20,12 +20,12 @@ concrete NounSqi of Noun = CatSqi ** open MorphoSqi, ResSqi in {
NumPl = {s = []; n = Pl} ;
DefArt = {
s = [] ;
s = \\c,g,n => [] ;
spec = Def
} ;
IndefArt = {
s = "një" ;
s = \\c,g => table Number ["një"; []] ;
spec = Indef
} ;