this_Det etc in synopsis (since they are used in tutorial)

This commit is contained in:
aarne
2010-12-23 10:06:05 +00:00
parent 9bf21b0b5e
commit 02e56187d3
3 changed files with 235 additions and 171 deletions

View File

@@ -684,6 +684,15 @@ incomplete resource Constructors = open Grammar in { --%
they_NP : NP -- they
= mkNP they_Pron ;
this_NP : NP -- this
= DetNP (DetQuant this_Quant sgNum) ; --%
that_NP : NP -- that
= DetNP (DetQuant that_Quant sgNum) ; --%
these_NP : NP
= DetNP (DetQuant this_Quant plNum) ; --%
those_NP : NP
= DetNP (DetQuant that_Quant plNum) ; --%
--3 Det, determiners
@@ -734,6 +743,15 @@ incomplete resource Constructors = open Grammar in { --%
= DetQuant IndefArt NumSg ; --%
aPl_Det : Det -- (houses)
= DetQuant IndefArt NumPl ; --%
this_Det : Det
= (DetQuant this_Quant sgNum) ; --%
that_Det : Det
= (DetQuant that_Quant sgNum) ; --%
these_Det : Det
= (DetQuant this_Quant plNum) ; --%
those_Det : Det
= (DetQuant that_Quant plNum) ; --%
--3 Quant, quantifiers
@@ -1593,16 +1611,6 @@ incomplete resource Constructors = open Grammar in { --%
ComplV2A : V2A -> NP -> AP -> VP = \v,np,ap -> ComplSlash (SlashV2A v ap) np ;
ComplV3 : V3 -> NP -> NP -> VP = \v,o,d -> ComplSlash (Slash3V3 v d) o ;
that_NP : NP = DetNP (DetQuant that_Quant sgNum) ;
this_NP : NP = DetNP (DetQuant this_Quant sgNum) ;
those_NP : NP = DetNP (DetQuant that_Quant plNum) ;
these_NP : NP = DetNP (DetQuant this_Quant plNum) ;
that_Det : Det = (DetQuant that_Quant sgNum) ;
this_Det : Det = (DetQuant this_Quant sgNum) ;
those_Det : Det = (DetQuant that_Quant plNum) ;
these_Det : Det = (DetQuant this_Quant plNum) ;
-- new things