plural articles in ResourceDemo

This commit is contained in:
aarne
2012-05-28 12:51:08 +00:00
parent a3a491d8fc
commit 806d9f4127
2 changed files with 3 additions and 1 deletions

View File

@@ -127,7 +127,7 @@ fun
ConjS : Conj -> S -> S -> S ;
ConjAP : Conj -> AP -> AP -> AP ;
ConjNP : Conj -> NP -> NP -> NP ;
a_Det, the_Det : Det ;
a_Det, the_Det, aPl_Det, thePl_Det : Det ;
this_Det, these_Det : Det ;
that_Det, those_Det : Det ;
possDet : Pron -> Det ;

View File

@@ -131,6 +131,8 @@ lin
ConjNP co x y = mkNP co x y ;
a_Det = mkDet a_Quant ;
the_Det = mkDet the_Quant ;
aPl_Det = mkDet a_Quant plNum ;
thePl_Det = mkDet the_Quant plNum ;
this_Det = S.this_Det ;
these_Det = S.these_Det ;
that_Det = S.that_Det ;